Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | * Copyright (c) 2002 The FFmpeg Project | ||
3 | * | ||
4 | * This file is part of FFmpeg. | ||
5 | * | ||
6 | * FFmpeg is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU Lesser General Public | ||
8 | * License as published by the Free Software Foundation; either | ||
9 | * version 2.1 of the License, or (at your option) any later version. | ||
10 | * | ||
11 | * FFmpeg is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
14 | * Lesser General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU Lesser General Public | ||
17 | * License along with FFmpeg; if not, write to the Free Software | ||
18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
19 | */ | ||
20 | |||
21 | #include "avcodec.h" | ||
22 | #include "idctdsp.h" | ||
23 | #include "mpegvideo.h" | ||
24 | #include "msmpeg4_vc1_data.h" | ||
25 | #include "wmv2.h" | ||
26 | |||
27 | |||
28 | 16 | av_cold void ff_wmv2_common_init(MpegEncContext *s) | |
29 | { | ||
30 | 16 | WMV2Context *const w = s->private_ctx; | |
31 | |||
32 | 16 | ff_blockdsp_init(&s->bdsp); | |
33 | 16 | ff_wmv2dsp_init(&w->wdsp); | |
34 | 16 | s->idsp.perm_type = w->wdsp.idct_perm; | |
35 | 16 | ff_init_scantable_permutation(s->idsp.idct_permutation, | |
36 | 16 | w->wdsp.idct_perm); | |
37 | 16 | ff_init_scantable(s->idsp.idct_permutation, &s->intra_scantable, | |
38 | ff_wmv1_scantable[1]); | ||
39 | 16 | ff_init_scantable(s->idsp.idct_permutation, &s->inter_scantable, | |
40 | ff_wmv1_scantable[0]); | ||
41 | 16 | ff_permute_scantable(s->permutated_intra_h_scantable, ff_wmv1_scantable[2], | |
42 | 16 | s->idsp.idct_permutation); | |
43 | 16 | ff_permute_scantable(s->permutated_intra_v_scantable, ff_wmv1_scantable[3], | |
44 | 16 | s->idsp.idct_permutation); | |
45 | 16 | s->idsp.idct_put = w->wdsp.idct_put; | |
46 | 16 | s->idsp.idct_add = w->wdsp.idct_add; | |
47 | 16 | s->idsp.idct = NULL; | |
48 | 16 | } | |
49 | |||
50 | 80493 | void ff_mspel_motion(MpegEncContext *s, uint8_t *dest_y, | |
51 | uint8_t *dest_cb, uint8_t *dest_cr, | ||
52 | uint8_t *const *ref_picture, | ||
53 | const op_pixels_func (*pix_op)[4], | ||
54 | int motion_x, int motion_y, int h) | ||
55 | { | ||
56 | 80493 | WMV2Context *const w = s->private_ctx; | |
57 | const uint8_t *ptr; | ||
58 | int dxy, mx, my, src_x, src_y, v_edge_pos; | ||
59 | ptrdiff_t offset, linesize, uvlinesize; | ||
60 | 80493 | int emu = 0; | |
61 | |||
62 | 80493 | dxy = ((motion_y & 1) << 1) | (motion_x & 1); | |
63 | 80493 | dxy = 2 * dxy + w->hshift; | |
64 | 80493 | src_x = s->mb_x * 16 + (motion_x >> 1); | |
65 | 80493 | src_y = s->mb_y * 16 + (motion_y >> 1); | |
66 | |||
67 | /* WARNING: do no forget half pels */ | ||
68 | 80493 | v_edge_pos = s->v_edge_pos; | |
69 | 80493 | src_x = av_clip(src_x, -16, s->width); | |
70 | 80493 | src_y = av_clip(src_y, -16, s->height); | |
71 | |||
72 |
3/4✓ Branch 0 taken 80492 times.
✓ Branch 1 taken 1 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 80492 times.
|
80493 | if (src_x <= -16 || src_x >= s->width) |
73 | 1 | dxy &= ~3; | |
74 |
3/4✓ Branch 0 taken 80493 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
✓ Branch 3 taken 80492 times.
|
80493 | if (src_y <= -16 || src_y >= s->height) |
75 | 1 | dxy &= ~4; | |
76 | |||
77 | 80493 | linesize = s->linesize; | |
78 | 80493 | uvlinesize = s->uvlinesize; | |
79 | 80493 | ptr = ref_picture[0] + (src_y * linesize) + src_x; | |
80 | |||
81 |
6/6✓ Branch 0 taken 76543 times.
✓ Branch 1 taken 3950 times.
✓ Branch 2 taken 71431 times.
✓ Branch 3 taken 5112 times.
✓ Branch 4 taken 67720 times.
✓ Branch 5 taken 3711 times.
|
80493 | if (src_x < 1 || src_y < 1 || src_x + 17 >= s->h_edge_pos || |
82 |
2/2✓ Branch 0 taken 4837 times.
✓ Branch 1 taken 62883 times.
|
67720 | src_y + h + 1 >= v_edge_pos) { |
83 | 17610 | s->vdsp.emulated_edge_mc(s->sc.edge_emu_buffer, ptr - 1 - s->linesize, | |
84 | s->linesize, s->linesize, 19, 19, | ||
85 | src_x - 1, src_y - 1, | ||
86 | s->h_edge_pos, s->v_edge_pos); | ||
87 | 17610 | ptr = s->sc.edge_emu_buffer + 1 + s->linesize; | |
88 | 17610 | emu = 1; | |
89 | } | ||
90 | |||
91 | 80493 | w->wdsp.put_mspel_pixels_tab[dxy](dest_y, ptr, linesize); | |
92 | 80493 | w->wdsp.put_mspel_pixels_tab[dxy](dest_y + 8, ptr + 8, linesize); | |
93 | 80493 | w->wdsp.put_mspel_pixels_tab[dxy](dest_y + 8 * linesize, ptr + 8 * linesize, linesize); | |
94 | 80493 | w->wdsp.put_mspel_pixels_tab[dxy](dest_y + 8 + 8 * linesize, ptr + 8 + 8 * linesize, linesize); | |
95 | |||
96 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 80493 times.
|
80493 | if (s->avctx->flags & AV_CODEC_FLAG_GRAY) |
97 | ✗ | return; | |
98 | |||
99 | 80493 | dxy = 0; | |
100 |
2/2✓ Branch 0 taken 22071 times.
✓ Branch 1 taken 58422 times.
|
80493 | if ((motion_x & 3) != 0) |
101 | 22071 | dxy |= 1; | |
102 |
2/2✓ Branch 0 taken 11804 times.
✓ Branch 1 taken 68689 times.
|
80493 | if ((motion_y & 3) != 0) |
103 | 11804 | dxy |= 2; | |
104 | 80493 | mx = motion_x >> 2; | |
105 | 80493 | my = motion_y >> 2; | |
106 | |||
107 | 80493 | src_x = s->mb_x * 8 + mx; | |
108 | 80493 | src_y = s->mb_y * 8 + my; | |
109 | 80493 | src_x = av_clip(src_x, -8, s->width >> 1); | |
110 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 80493 times.
|
80493 | if (src_x == (s->width >> 1)) |
111 | ✗ | dxy &= ~1; | |
112 | 80493 | src_y = av_clip(src_y, -8, s->height >> 1); | |
113 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 80492 times.
|
80493 | if (src_y == (s->height >> 1)) |
114 | 1 | dxy &= ~2; | |
115 | 80493 | offset = (src_y * uvlinesize) + src_x; | |
116 | 80493 | ptr = ref_picture[1] + offset; | |
117 |
2/2✓ Branch 0 taken 17610 times.
✓ Branch 1 taken 62883 times.
|
80493 | if (emu) { |
118 | 17610 | s->vdsp.emulated_edge_mc(s->sc.edge_emu_buffer, ptr, | |
119 | s->uvlinesize, s->uvlinesize, | ||
120 | 9, 9, | ||
121 | src_x, src_y, | ||
122 | 17610 | s->h_edge_pos >> 1, s->v_edge_pos >> 1); | |
123 | 17610 | ptr = s->sc.edge_emu_buffer; | |
124 | } | ||
125 | 80493 | pix_op[1][dxy](dest_cb, ptr, uvlinesize, h >> 1); | |
126 | |||
127 | 80493 | ptr = ref_picture[2] + offset; | |
128 |
2/2✓ Branch 0 taken 17610 times.
✓ Branch 1 taken 62883 times.
|
80493 | if (emu) { |
129 | 17610 | s->vdsp.emulated_edge_mc(s->sc.edge_emu_buffer, ptr, | |
130 | s->uvlinesize, s->uvlinesize, | ||
131 | 9, 9, | ||
132 | src_x, src_y, | ||
133 | 17610 | s->h_edge_pos >> 1, s->v_edge_pos >> 1); | |
134 | 17610 | ptr = s->sc.edge_emu_buffer; | |
135 | } | ||
136 | 80493 | pix_op[1][dxy](dest_cr, ptr, uvlinesize, h >> 1); | |
137 | } | ||
138 |