Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | * MPEG-4 decoder / encoder common code | ||
3 | * Copyright (c) 2000,2001 Fabrice Bellard | ||
4 | * Copyright (c) 2002-2010 Michael Niedermayer <michaelni@gmx.at> | ||
5 | * | ||
6 | * This file is part of FFmpeg. | ||
7 | * | ||
8 | * FFmpeg is free software; you can redistribute it and/or | ||
9 | * modify it under the terms of the GNU Lesser General Public | ||
10 | * License as published by the Free Software Foundation; either | ||
11 | * version 2.1 of the License, or (at your option) any later version. | ||
12 | * | ||
13 | * FFmpeg is distributed in the hope that it will be useful, | ||
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
16 | * Lesser General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU Lesser General Public | ||
19 | * License along with FFmpeg; if not, write to the Free Software | ||
20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
21 | */ | ||
22 | |||
23 | #include "libavutil/thread.h" | ||
24 | |||
25 | #include "mpegutils.h" | ||
26 | #include "mpegvideo.h" | ||
27 | #include "mpeg4video.h" | ||
28 | #include "mpeg4data.h" | ||
29 | |||
30 | 166 | static av_cold void mpeg4_init_rl_intra(void) | |
31 | { | ||
32 | static uint8_t mpeg4_rl_intra_table[2][2 * MAX_RUN + MAX_LEVEL + 3]; | ||
33 | 166 | ff_rl_init(&ff_mpeg4_rl_intra, mpeg4_rl_intra_table); | |
34 | 166 | } | |
35 | |||
36 | 166 | av_cold void ff_mpeg4_init_rl_intra(void) | |
37 | { | ||
38 | static AVOnce init_static_once = AV_ONCE_INIT; | ||
39 | 166 | ff_thread_once(&init_static_once, mpeg4_init_rl_intra); | |
40 | 166 | } | |
41 | |||
42 | 11368 | int ff_mpeg4_get_video_packet_prefix_length(MpegEncContext *s) | |
43 | { | ||
44 |
3/4✓ Branch 0 taken 1445 times.
✓ Branch 1 taken 3818 times.
✓ Branch 2 taken 6105 times.
✗ Branch 3 not taken.
|
11368 | switch (s->pict_type) { |
45 | 1445 | case AV_PICTURE_TYPE_I: | |
46 | 1445 | return 16; | |
47 | 3818 | case AV_PICTURE_TYPE_P: | |
48 | case AV_PICTURE_TYPE_S: | ||
49 | 3818 | return s->f_code + 15; | |
50 | 6105 | case AV_PICTURE_TYPE_B: | |
51 | 6105 | return FFMAX3(s->f_code, s->b_code, 2) + 15; | |
52 | ✗ | default: | |
53 | ✗ | return -1; | |
54 | } | ||
55 | } | ||
56 | |||
57 | 7684 | void ff_mpeg4_clean_buffers(MpegEncContext *s) | |
58 | { | ||
59 | int c_wrap, c_xy, l_wrap, l_xy; | ||
60 | |||
61 | 7684 | l_wrap = s->b8_stride; | |
62 | 7684 | l_xy = (2 * s->mb_y - 1) * l_wrap + s->mb_x * 2 - 1; | |
63 | 7684 | c_wrap = s->mb_stride; | |
64 | 7684 | c_xy = (s->mb_y - 1) * c_wrap + s->mb_x - 1; | |
65 | |||
66 | /* clean AC */ | ||
67 | 7684 | memset(s->ac_val[0] + l_xy, 0, (l_wrap * 2 + 1) * 16 * sizeof(int16_t)); | |
68 | 7684 | memset(s->ac_val[1] + c_xy, 0, (c_wrap + 1) * 16 * sizeof(int16_t)); | |
69 | 7684 | memset(s->ac_val[2] + c_xy, 0, (c_wrap + 1) * 16 * sizeof(int16_t)); | |
70 | |||
71 | /* clean MV */ | ||
72 | // we can't clear the MVs as they might be needed by a B-frame | ||
73 | 7684 | s->last_mv[0][0][0] = | |
74 | 7684 | s->last_mv[0][0][1] = | |
75 | 7684 | s->last_mv[1][0][0] = | |
76 | 7684 | s->last_mv[1][0][1] = 0; | |
77 | 7684 | } | |
78 | |||
79 | #define tab_size ((signed)FF_ARRAY_ELEMS(s->direct_scale_mv[0])) | ||
80 | #define tab_bias (tab_size / 2) | ||
81 | |||
82 | // used by MPEG-4 and rv10 decoder | ||
83 | 2240 | void ff_mpeg4_init_direct_mv(MpegEncContext *s) | |
84 | { | ||
85 | int i; | ||
86 |
2/2✓ Branch 0 taken 143360 times.
✓ Branch 1 taken 2240 times.
|
145600 | for (i = 0; i < tab_size; i++) { |
87 | 143360 | s->direct_scale_mv[0][i] = (i - tab_bias) * s->pb_time / s->pp_time; | |
88 | 143360 | s->direct_scale_mv[1][i] = (i - tab_bias) * (s->pb_time - s->pp_time) / | |
89 | 143360 | s->pp_time; | |
90 | } | ||
91 | 2240 | } | |
92 | |||
93 | 588105 | static inline void ff_mpeg4_set_one_direct_mv(MpegEncContext *s, int mx, | |
94 | int my, int i) | ||
95 | { | ||
96 | 588105 | int xy = s->block_index[i]; | |
97 | 588105 | uint16_t time_pp = s->pp_time; | |
98 | 588105 | uint16_t time_pb = s->pb_time; | |
99 | int p_mx, p_my; | ||
100 | |||
101 | 588105 | p_mx = s->next_pic.motion_val[0][xy][0]; | |
102 |
2/2✓ Branch 0 taken 567184 times.
✓ Branch 1 taken 20921 times.
|
588105 | if ((unsigned)(p_mx + tab_bias) < tab_size) { |
103 | 567184 | s->mv[0][i][0] = s->direct_scale_mv[0][p_mx + tab_bias] + mx; | |
104 | 567184 | s->mv[1][i][0] = mx ? s->mv[0][i][0] - p_mx | |
105 |
2/2✓ Branch 0 taken 152234 times.
✓ Branch 1 taken 414950 times.
|
567184 | : s->direct_scale_mv[1][p_mx + tab_bias]; |
106 | } else { | ||
107 | 20921 | s->mv[0][i][0] = p_mx * time_pb / time_pp + mx; | |
108 | 20921 | s->mv[1][i][0] = mx ? s->mv[0][i][0] - p_mx | |
109 |
2/2✓ Branch 0 taken 13158 times.
✓ Branch 1 taken 7763 times.
|
20921 | : p_mx * (time_pb - time_pp) / time_pp; |
110 | } | ||
111 | 588105 | p_my = s->next_pic.motion_val[0][xy][1]; | |
112 |
2/2✓ Branch 0 taken 567945 times.
✓ Branch 1 taken 20160 times.
|
588105 | if ((unsigned)(p_my + tab_bias) < tab_size) { |
113 | 567945 | s->mv[0][i][1] = s->direct_scale_mv[0][p_my + tab_bias] + my; | |
114 | 567945 | s->mv[1][i][1] = my ? s->mv[0][i][1] - p_my | |
115 |
2/2✓ Branch 0 taken 148081 times.
✓ Branch 1 taken 419864 times.
|
567945 | : s->direct_scale_mv[1][p_my + tab_bias]; |
116 | } else { | ||
117 | 20160 | s->mv[0][i][1] = p_my * time_pb / time_pp + my; | |
118 | 20160 | s->mv[1][i][1] = my ? s->mv[0][i][1] - p_my | |
119 |
2/2✓ Branch 0 taken 9974 times.
✓ Branch 1 taken 10186 times.
|
20160 | : p_my * (time_pb - time_pp) / time_pp; |
120 | } | ||
121 | 588105 | } | |
122 | |||
123 | #undef tab_size | ||
124 | #undef tab_bias | ||
125 | |||
126 | /** | ||
127 | * @return the mb_type | ||
128 | */ | ||
129 | 303498 | int ff_mpeg4_set_direct_mv(MpegEncContext *s, int mx, int my) | |
130 | { | ||
131 | 303498 | const int mb_index = s->mb_x + s->mb_y * s->mb_stride; | |
132 | 303498 | const int colocated_mb_type = s->next_pic.mb_type[mb_index]; | |
133 | uint16_t time_pp; | ||
134 | uint16_t time_pb; | ||
135 | int i; | ||
136 | |||
137 | // FIXME avoid divides | ||
138 | // try special case with shifts for 1 and 3 B-frames? | ||
139 | |||
140 |
2/2✓ Branch 0 taken 94869 times.
✓ Branch 1 taken 208629 times.
|
303498 | if (IS_8X8(colocated_mb_type)) { |
141 | 94869 | s->mv_type = MV_TYPE_8X8; | |
142 |
2/2✓ Branch 0 taken 379476 times.
✓ Branch 1 taken 94869 times.
|
474345 | for (i = 0; i < 4; i++) |
143 | 379476 | ff_mpeg4_set_one_direct_mv(s, mx, my, i); | |
144 | 94869 | return MB_TYPE_DIRECT2 | MB_TYPE_8x8 | MB_TYPE_BIDIR_MV; | |
145 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 208629 times.
|
208629 | } else if (IS_INTERLACED(colocated_mb_type)) { |
146 | ✗ | s->mv_type = MV_TYPE_FIELD; | |
147 | ✗ | for (i = 0; i < 2; i++) { | |
148 | ✗ | int field_select = s->next_pic.ref_index[0][4 * mb_index + 2 * i]; | |
149 | ✗ | s->field_select[0][i] = field_select; | |
150 | ✗ | s->field_select[1][i] = i; | |
151 | ✗ | if (s->top_field_first) { | |
152 | ✗ | time_pp = s->pp_field_time - field_select + i; | |
153 | ✗ | time_pb = s->pb_field_time - field_select + i; | |
154 | } else { | ||
155 | ✗ | time_pp = s->pp_field_time + field_select - i; | |
156 | ✗ | time_pb = s->pb_field_time + field_select - i; | |
157 | } | ||
158 | ✗ | s->mv[0][i][0] = s->p_field_mv_table[i][0][mb_index][0] * | |
159 | ✗ | time_pb / time_pp + mx; | |
160 | ✗ | s->mv[0][i][1] = s->p_field_mv_table[i][0][mb_index][1] * | |
161 | ✗ | time_pb / time_pp + my; | |
162 | ✗ | s->mv[1][i][0] = mx ? s->mv[0][i][0] - | |
163 | ✗ | s->p_field_mv_table[i][0][mb_index][0] | |
164 | ✗ | : s->p_field_mv_table[i][0][mb_index][0] * | |
165 | ✗ | (time_pb - time_pp) / time_pp; | |
166 | ✗ | s->mv[1][i][1] = my ? s->mv[0][i][1] - | |
167 | ✗ | s->p_field_mv_table[i][0][mb_index][1] | |
168 | ✗ | : s->p_field_mv_table[i][0][mb_index][1] * | |
169 | ✗ | (time_pb - time_pp) / time_pp; | |
170 | } | ||
171 | ✗ | return MB_TYPE_DIRECT2 | MB_TYPE_16x8 | | |
172 | MB_TYPE_BIDIR_MV | MB_TYPE_INTERLACED; | ||
173 | } else { | ||
174 | 208629 | ff_mpeg4_set_one_direct_mv(s, mx, my, 0); | |
175 | 208629 | s->mv[0][1][0] = | |
176 | 208629 | s->mv[0][2][0] = | |
177 | 208629 | s->mv[0][3][0] = s->mv[0][0][0]; | |
178 | 208629 | s->mv[0][1][1] = | |
179 | 208629 | s->mv[0][2][1] = | |
180 | 208629 | s->mv[0][3][1] = s->mv[0][0][1]; | |
181 | 208629 | s->mv[1][1][0] = | |
182 | 208629 | s->mv[1][2][0] = | |
183 | 208629 | s->mv[1][3][0] = s->mv[1][0][0]; | |
184 | 208629 | s->mv[1][1][1] = | |
185 | 208629 | s->mv[1][2][1] = | |
186 | 208629 | s->mv[1][3][1] = s->mv[1][0][1]; | |
187 |
1/2✓ Branch 0 taken 208629 times.
✗ Branch 1 not taken.
|
208629 | if ((s->avctx->workaround_bugs & FF_BUG_DIRECT_BLOCKSIZE) || |
188 |
2/2✓ Branch 0 taken 179471 times.
✓ Branch 1 taken 29158 times.
|
208629 | !s->quarter_sample) |
189 | 179471 | s->mv_type = MV_TYPE_16X16; | |
190 | else | ||
191 | 29158 | s->mv_type = MV_TYPE_8X8; | |
192 | // Note see prev line | ||
193 | 208629 | return MB_TYPE_DIRECT2 | MB_TYPE_16x16 | MB_TYPE_BIDIR_MV; | |
194 | } | ||
195 | } | ||
196 |