Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | * MSMPEG4 encoder backend | ||
3 | * Copyright (c) 2001 Fabrice Bellard | ||
4 | * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at> | ||
5 | * | ||
6 | * msmpeg4v1 & v2 stuff by Michael Niedermayer <michaelni@gmx.at> | ||
7 | * | ||
8 | * This file is part of FFmpeg. | ||
9 | * | ||
10 | * FFmpeg is free software; you can redistribute it and/or | ||
11 | * modify it under the terms of the GNU Lesser General Public | ||
12 | * License as published by the Free Software Foundation; either | ||
13 | * version 2.1 of the License, or (at your option) any later version. | ||
14 | * | ||
15 | * FFmpeg is distributed in the hope that it will be useful, | ||
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
18 | * Lesser General Public License for more details. | ||
19 | * | ||
20 | * You should have received a copy of the GNU Lesser General Public | ||
21 | * License along with FFmpeg; if not, write to the Free Software | ||
22 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
23 | */ | ||
24 | |||
25 | /** | ||
26 | * @file | ||
27 | * MSMPEG4 encoder backend | ||
28 | */ | ||
29 | |||
30 | #include <stdint.h> | ||
31 | #include <string.h> | ||
32 | |||
33 | #include "libavutil/attributes.h" | ||
34 | #include "libavutil/avutil.h" | ||
35 | #include "libavutil/thread.h" | ||
36 | #include "codec_internal.h" | ||
37 | #include "mpegvideo.h" | ||
38 | #include "mpegvideoenc.h" | ||
39 | #include "h263.h" | ||
40 | #include "h263data.h" | ||
41 | #include "mpeg4video.h" | ||
42 | #include "msmpeg4.h" | ||
43 | #include "msmpeg4data.h" | ||
44 | #include "msmpeg4_vc1_data.h" | ||
45 | #include "msmpeg4enc.h" | ||
46 | #include "put_bits.h" | ||
47 | #include "rl.h" | ||
48 | |||
49 | static uint8_t rl_length[NB_RL_TABLES][MAX_LEVEL+1][MAX_RUN+1][2]; | ||
50 | |||
51 | /* build the table which associate a (x,y) motion vector to a vlc */ | ||
52 | 34 | static av_cold void init_mv_table(MVTable *tab, uint16_t table_mv_index[4096]) | |
53 | { | ||
54 | int i, x, y; | ||
55 | |||
56 | 34 | tab->table_mv_index = table_mv_index; | |
57 | |||
58 | /* mark all entries as not used */ | ||
59 |
2/2✓ Branch 0 taken 139264 times.
✓ Branch 1 taken 34 times.
|
139298 | for(i=0;i<4096;i++) |
60 | 139264 | tab->table_mv_index[i] = MSMPEG4_MV_TABLES_NB_ELEMS; | |
61 | |||
62 |
2/2✓ Branch 0 taken 37366 times.
✓ Branch 1 taken 34 times.
|
37400 | for (i = 0; i < MSMPEG4_MV_TABLES_NB_ELEMS; i++) { |
63 | 37366 | x = tab->table_mvx[i]; | |
64 | 37366 | y = tab->table_mvy[i]; | |
65 | 37366 | tab->table_mv_index[(x << 6) | y] = i; | |
66 | } | ||
67 | 34 | } | |
68 | |||
69 | 1048 | void ff_msmpeg4_code012(PutBitContext *pb, int n) | |
70 | { | ||
71 |
2/2✓ Branch 0 taken 587 times.
✓ Branch 1 taken 461 times.
|
1048 | if (n == 0) { |
72 | 587 | put_bits(pb, 1, 0); | |
73 | } else { | ||
74 |
2/2✓ Branch 0 taken 367 times.
✓ Branch 1 taken 94 times.
|
461 | put_bits(pb, 2, 2 | (n >= 2)); |
75 | } | ||
76 | 1048 | } | |
77 | |||
78 | 848640 | static int get_size_of_code(const RLTable *rl, int last, int run, | |
79 | int level, int intra) | ||
80 | { | ||
81 | 848640 | int size=0; | |
82 | int code; | ||
83 | 848640 | int run_diff= intra ? 0 : 1; | |
84 | |||
85 | 848640 | code = get_rl_index(rl, last, run, level); | |
86 | 848640 | size+= rl->table_vlc[code][1]; | |
87 |
2/2✓ Branch 0 taken 834411 times.
✓ Branch 1 taken 14229 times.
|
848640 | if (code == rl->n) { |
88 | int level1, run1; | ||
89 | |||
90 | 834411 | level1 = level - rl->max_level[last][run]; | |
91 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 834411 times.
|
834411 | if (level1 < 1) |
92 | ✗ | goto esc2; | |
93 | 834411 | code = get_rl_index(rl, last, run, level1); | |
94 |
2/2✓ Branch 0 taken 820182 times.
✓ Branch 1 taken 14229 times.
|
834411 | if (code == rl->n) { |
95 | 820182 | esc2: | |
96 | 820182 | size++; | |
97 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 820182 times.
|
820182 | if (level > MAX_LEVEL) |
98 | ✗ | goto esc3; | |
99 | 820182 | run1 = run - rl->max_run[last][level] - run_diff; | |
100 |
2/2✓ Branch 0 taken 8092 times.
✓ Branch 1 taken 812090 times.
|
820182 | if (run1 < 0) |
101 | 8092 | goto esc3; | |
102 | 812090 | code = get_rl_index(rl, last, run1, level); | |
103 |
2/2✓ Branch 0 taken 805188 times.
✓ Branch 1 taken 6902 times.
|
812090 | if (code == rl->n) { |
104 | 805188 | esc3: | |
105 | /* third escape */ | ||
106 | 813280 | size+=1+1+6+8; | |
107 | } else { | ||
108 | /* second escape */ | ||
109 | 6902 | size+= 1+1+ rl->table_vlc[code][1]; | |
110 | } | ||
111 | } else { | ||
112 | /* first escape */ | ||
113 | 14229 | size+= 1+1+ rl->table_vlc[code][1]; | |
114 | } | ||
115 | } else { | ||
116 | 14229 | size++; | |
117 | } | ||
118 | 848640 | return size; | |
119 | } | ||
120 | |||
121 | 17 | static av_cold void msmpeg4_encode_init_static(void) | |
122 | { | ||
123 | static uint16_t mv_index_tables[2][4096]; | ||
124 | 17 | init_mv_table(&ff_mv_tables[0], mv_index_tables[0]); | |
125 | 17 | init_mv_table(&ff_mv_tables[1], mv_index_tables[1]); | |
126 | |||
127 |
2/2✓ Branch 0 taken 102 times.
✓ Branch 1 taken 17 times.
|
119 | for (int i = 0; i < NB_RL_TABLES; i++) { |
128 |
2/2✓ Branch 0 taken 6528 times.
✓ Branch 1 taken 102 times.
|
6630 | for (int level = 1; level <= MAX_LEVEL; level++) { |
129 |
2/2✓ Branch 0 taken 424320 times.
✓ Branch 1 taken 6528 times.
|
430848 | for (int run = 0; run <= MAX_RUN; run++) { |
130 |
2/2✓ Branch 0 taken 848640 times.
✓ Branch 1 taken 424320 times.
|
1272960 | for (int last = 0; last < 2; last++) { |
131 | 848640 | rl_length[i][level][run][last] = get_size_of_code(&ff_rl_table[i], last, run, level, 0); | |
132 | } | ||
133 | } | ||
134 | } | ||
135 | } | ||
136 | 17 | } | |
137 | |||
138 | 17 | av_cold void ff_msmpeg4_encode_init(MpegEncContext *s) | |
139 | { | ||
140 | static AVOnce init_static_once = AV_ONCE_INIT; | ||
141 | |||
142 | 17 | ff_msmpeg4_common_init(s); | |
143 |
2/2✓ Branch 0 taken 8 times.
✓ Branch 1 taken 9 times.
|
17 | if (s->msmpeg4_version >= MSMP4_WMV1) { |
144 | 8 | s->min_qcoeff = -255; | |
145 | 8 | s->max_qcoeff = 255; | |
146 | } | ||
147 | |||
148 | /* init various encoding tables */ | ||
149 | 17 | ff_thread_once(&init_static_once, msmpeg4_encode_init_static); | |
150 | 17 | } | |
151 | |||
152 | 625 | static void find_best_tables(MSMPEG4EncContext *ms) | |
153 | { | ||
154 | 625 | MpegEncContext *const s = &ms->s; | |
155 | int i; | ||
156 | 625 | int best = 0, best_size = INT_MAX; | |
157 | 625 | int chroma_best = 0, best_chroma_size = INT_MAX; | |
158 | |||
159 |
2/2✓ Branch 0 taken 1875 times.
✓ Branch 1 taken 625 times.
|
2500 | for(i=0; i<3; i++){ |
160 | int level; | ||
161 | 1875 | int chroma_size=0; | |
162 | 1875 | int size=0; | |
163 | |||
164 |
2/2✓ Branch 0 taken 1250 times.
✓ Branch 1 taken 625 times.
|
1875 | if(i>0){// ;) |
165 | 1250 | size++; | |
166 | 1250 | chroma_size++; | |
167 | } | ||
168 |
2/2✓ Branch 0 taken 121875 times.
✓ Branch 1 taken 1875 times.
|
123750 | for(level=0; level<=MAX_LEVEL; level++){ |
169 | int run; | ||
170 |
1/2✓ Branch 0 taken 255678 times.
✗ Branch 1 not taken.
|
255678 | for(run=0; run<=MAX_RUN; run++){ |
171 | int last; | ||
172 | 255678 | const int last_size= size + chroma_size; | |
173 |
2/2✓ Branch 0 taken 511356 times.
✓ Branch 1 taken 255678 times.
|
767034 | for(last=0; last<2; last++){ |
174 | 511356 | int inter_count = ms->ac_stats[0][0][level][run][last] + ms->ac_stats[0][1][level][run][last]; | |
175 | 511356 | int intra_luma_count = ms->ac_stats[1][0][level][run][last]; | |
176 | 511356 | int intra_chroma_count= ms->ac_stats[1][1][level][run][last]; | |
177 | |||
178 |
2/2✓ Branch 0 taken 31794 times.
✓ Branch 1 taken 479562 times.
|
511356 | if(s->pict_type==AV_PICTURE_TYPE_I){ |
179 | 31794 | size += intra_luma_count *rl_length[i ][level][run][last]; | |
180 | 31794 | chroma_size+= intra_chroma_count*rl_length[i+3][level][run][last]; | |
181 | }else{ | ||
182 | 479562 | size+= intra_luma_count *rl_length[i ][level][run][last] | |
183 | 479562 | +intra_chroma_count*rl_length[i+3][level][run][last] | |
184 | 479562 | +inter_count *rl_length[i+3][level][run][last]; | |
185 | } | ||
186 | } | ||
187 |
2/2✓ Branch 0 taken 121875 times.
✓ Branch 1 taken 133803 times.
|
255678 | if(last_size == size+chroma_size) break; |
188 | } | ||
189 | } | ||
190 |
2/2✓ Branch 0 taken 1435 times.
✓ Branch 1 taken 440 times.
|
1875 | if(size<best_size){ |
191 | 1435 | best_size= size; | |
192 | 1435 | best= i; | |
193 | } | ||
194 |
2/2✓ Branch 0 taken 667 times.
✓ Branch 1 taken 1208 times.
|
1875 | if(chroma_size<best_chroma_size){ |
195 | 667 | best_chroma_size= chroma_size; | |
196 | 667 | chroma_best= i; | |
197 | } | ||
198 | } | ||
199 | |||
200 |
2/2✓ Branch 0 taken 562 times.
✓ Branch 1 taken 63 times.
|
625 | if(s->pict_type==AV_PICTURE_TYPE_P) chroma_best= best; |
201 | |||
202 | 625 | memset(ms->ac_stats, 0, sizeof(ms->ac_stats)); | |
203 | |||
204 | 625 | s->rl_table_index = best; | |
205 | 625 | s->rl_chroma_table_index= chroma_best; | |
206 | |||
207 |
2/2✓ Branch 0 taken 125 times.
✓ Branch 1 taken 500 times.
|
625 | if(s->pict_type != s->last_non_b_pict_type){ |
208 | 125 | s->rl_table_index= 2; | |
209 |
2/2✓ Branch 0 taken 63 times.
✓ Branch 1 taken 62 times.
|
125 | if(s->pict_type==AV_PICTURE_TYPE_I) |
210 | 63 | s->rl_chroma_table_index= 1; | |
211 | else | ||
212 | 62 | s->rl_chroma_table_index= 2; | |
213 | } | ||
214 | |||
215 | 625 | } | |
216 | |||
217 | /* write MSMPEG4 compatible frame header */ | ||
218 | 625 | void ff_msmpeg4_encode_picture_header(MpegEncContext * s) | |
219 | { | ||
220 | 625 | MSMPEG4EncContext *const ms = (MSMPEG4EncContext*)s; | |
221 | |||
222 | 625 | find_best_tables(ms); | |
223 | |||
224 | 625 | align_put_bits(&s->pb); | |
225 | 625 | put_bits(&s->pb, 2, s->pict_type - 1); | |
226 | |||
227 | 625 | put_bits(&s->pb, 5, s->qscale); | |
228 |
2/2✓ Branch 0 taken 200 times.
✓ Branch 1 taken 425 times.
|
625 | if (s->msmpeg4_version <= MSMP4_V2) { |
229 | 200 | s->rl_table_index = 2; | |
230 | 200 | s->rl_chroma_table_index = 2; | |
231 | } | ||
232 | |||
233 | 625 | s->dc_table_index = 1; | |
234 | 625 | s->mv_table_index = 1; /* only if P-frame */ | |
235 | 625 | s->use_skip_mb_code = 1; /* only if P-frame */ | |
236 | 625 | s->per_mb_rl_table = 0; | |
237 |
2/2✓ Branch 0 taken 200 times.
✓ Branch 1 taken 425 times.
|
625 | if (s->msmpeg4_version == MSMP4_WMV1) |
238 |
3/6✓ Branch 0 taken 50 times.
✓ Branch 1 taken 150 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 50 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
|
200 | s->inter_intra_pred= (s->width*s->height < 320*240 && s->bit_rate<=II_BITRATE && s->pict_type==AV_PICTURE_TYPE_P); |
239 | ff_dlog(s, "%d %"PRId64" %d %d %d\n", s->pict_type, s->bit_rate, | ||
240 | s->inter_intra_pred, s->width, s->height); | ||
241 | |||
242 |
2/2✓ Branch 0 taken 63 times.
✓ Branch 1 taken 562 times.
|
625 | if (s->pict_type == AV_PICTURE_TYPE_I) { |
243 | 63 | s->slice_height= s->mb_height/1; | |
244 | 63 | put_bits(&s->pb, 5, 0x16 + s->mb_height/s->slice_height); | |
245 | |||
246 |
2/2✓ Branch 0 taken 20 times.
✓ Branch 1 taken 43 times.
|
63 | if (s->msmpeg4_version == MSMP4_WMV1) { |
247 | 20 | ff_msmpeg4_encode_ext_header(s); | |
248 |
1/2✓ Branch 0 taken 20 times.
✗ Branch 1 not taken.
|
20 | if(s->bit_rate>MBAC_BITRATE) |
249 | 20 | put_bits(&s->pb, 1, s->per_mb_rl_table); | |
250 | } | ||
251 | |||
252 |
2/2✓ Branch 0 taken 43 times.
✓ Branch 1 taken 20 times.
|
63 | if (s->msmpeg4_version > MSMP4_V2) { |
253 |
1/2✓ Branch 0 taken 43 times.
✗ Branch 1 not taken.
|
43 | if(!s->per_mb_rl_table){ |
254 | 43 | ff_msmpeg4_code012(&s->pb, s->rl_chroma_table_index); | |
255 | 43 | ff_msmpeg4_code012(&s->pb, s->rl_table_index); | |
256 | } | ||
257 | |||
258 | 43 | put_bits(&s->pb, 1, s->dc_table_index); | |
259 | } | ||
260 | } else { | ||
261 | 562 | put_bits(&s->pb, 1, s->use_skip_mb_code); | |
262 | |||
263 |
3/4✓ Branch 0 taken 180 times.
✓ Branch 1 taken 382 times.
✓ Branch 2 taken 180 times.
✗ Branch 3 not taken.
|
562 | if (s->msmpeg4_version == MSMP4_WMV1 && s->bit_rate > MBAC_BITRATE) |
264 | 180 | put_bits(&s->pb, 1, s->per_mb_rl_table); | |
265 | |||
266 |
2/2✓ Branch 0 taken 382 times.
✓ Branch 1 taken 180 times.
|
562 | if (s->msmpeg4_version > MSMP4_V2) { |
267 |
1/2✓ Branch 0 taken 382 times.
✗ Branch 1 not taken.
|
382 | if(!s->per_mb_rl_table) |
268 | 382 | ff_msmpeg4_code012(&s->pb, s->rl_table_index); | |
269 | |||
270 | 382 | put_bits(&s->pb, 1, s->dc_table_index); | |
271 | |||
272 | 382 | put_bits(&s->pb, 1, s->mv_table_index); | |
273 | } | ||
274 | } | ||
275 | |||
276 | 625 | s->esc3_level_length= 0; | |
277 | 625 | s->esc3_run_length= 0; | |
278 | 625 | } | |
279 | |||
280 | 63 | void ff_msmpeg4_encode_ext_header(MpegEncContext * s) | |
281 | { | ||
282 | unsigned fps; | ||
283 | |||
284 |
2/4✓ Branch 0 taken 63 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 63 times.
✗ Branch 3 not taken.
|
63 | if (s->avctx->framerate.num > 0 && s->avctx->framerate.den > 0) |
285 | 63 | fps = s->avctx->framerate.num / s->avctx->framerate.den; | |
286 | else { | ||
287 | FF_DISABLE_DEPRECATION_WARNINGS | ||
288 | ✗ | fps = s->avctx->time_base.den / s->avctx->time_base.num | |
289 | #if FF_API_TICKS_PER_FRAME | ||
290 | ✗ | / FFMAX(s->avctx->ticks_per_frame, 1) | |
291 | #endif | ||
292 | ; | ||
293 | FF_ENABLE_DEPRECATION_WARNINGS | ||
294 | } | ||
295 | |||
296 | 63 | put_bits(&s->pb, 5, FFMIN(fps, 31)); //yes 29.97 -> 29 | |
297 | |||
298 |
1/2✓ Branch 0 taken 63 times.
✗ Branch 1 not taken.
|
63 | put_bits(&s->pb, 11, FFMIN(s->bit_rate / 1024, 2047)); |
299 | |||
300 |
2/2✓ Branch 0 taken 43 times.
✓ Branch 1 taken 20 times.
|
63 | if (s->msmpeg4_version >= MSMP4_V3) |
301 | 43 | put_bits(&s->pb, 1, s->flipflop_rounding); | |
302 | else | ||
303 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 20 times.
|
20 | av_assert0(!s->flipflop_rounding); |
304 | 63 | } | |
305 | |||
306 | 161363 | void ff_msmpeg4_encode_motion(MpegEncContext * s, | |
307 | int mx, int my) | ||
308 | { | ||
309 | int code; | ||
310 | MVTable *mv; | ||
311 | |||
312 | /* modulo encoding */ | ||
313 | /* WARNING : you cannot reach all the MVs even with the modulo | ||
314 | encoding. This is a somewhat strange compromise they took !!! */ | ||
315 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 161363 times.
|
161363 | if (mx <= -64) |
316 | ✗ | mx += 64; | |
317 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 161363 times.
|
161363 | else if (mx >= 64) |
318 | ✗ | mx -= 64; | |
319 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 161363 times.
|
161363 | if (my <= -64) |
320 | ✗ | my += 64; | |
321 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 161363 times.
|
161363 | else if (my >= 64) |
322 | ✗ | my -= 64; | |
323 | |||
324 | 161363 | mx += 32; | |
325 | 161363 | my += 32; | |
326 | 161363 | mv = &ff_mv_tables[s->mv_table_index]; | |
327 | |||
328 | 161363 | code = mv->table_mv_index[(mx << 6) | my]; | |
329 | 161363 | put_bits(&s->pb, | |
330 | 161363 | mv->table_mv_bits[code], | |
331 | 161363 | mv->table_mv_code[code]); | |
332 |
2/2✓ Branch 0 taken 859 times.
✓ Branch 1 taken 160504 times.
|
161363 | if (code == MSMPEG4_MV_TABLES_NB_ELEMS) { |
333 | /* escape : code literally */ | ||
334 | 859 | put_bits(&s->pb, 6, mx); | |
335 | 859 | put_bits(&s->pb, 6, my); | |
336 | } | ||
337 | 161363 | } | |
338 | |||
339 | 249300 | void ff_msmpeg4_handle_slices(MpegEncContext *s){ | |
340 |
2/2✓ Branch 0 taken 11850 times.
✓ Branch 1 taken 237450 times.
|
249300 | if (s->mb_x == 0) { |
341 |
3/4✓ Branch 0 taken 11850 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 825 times.
✓ Branch 3 taken 11025 times.
|
11850 | if (s->slice_height && (s->mb_y % s->slice_height) == 0) { |
342 |
2/2✓ Branch 0 taken 425 times.
✓ Branch 1 taken 400 times.
|
825 | if (s->msmpeg4_version < MSMP4_WMV1) { |
343 | 425 | ff_mpeg4_clean_buffers(s); | |
344 | } | ||
345 | 825 | s->first_slice_line = 1; | |
346 | } else { | ||
347 | 11025 | s->first_slice_line = 0; | |
348 | } | ||
349 | } | ||
350 | 249300 | } | |
351 | |||
352 | 102006 | static void msmpeg4v2_encode_motion(MpegEncContext * s, int val) | |
353 | { | ||
354 | int range, bit_size, sign, code, bits; | ||
355 | |||
356 |
2/2✓ Branch 0 taken 52036 times.
✓ Branch 1 taken 49970 times.
|
102006 | if (val == 0) { |
357 | /* zero vector */ | ||
358 | 52036 | code = 0; | |
359 | 52036 | put_bits(&s->pb, ff_mvtab[code][1], ff_mvtab[code][0]); | |
360 | } else { | ||
361 | 49970 | bit_size = s->f_code - 1; | |
362 | 49970 | range = 1 << bit_size; | |
363 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 49970 times.
|
49970 | if (val <= -64) |
364 | ✗ | val += 64; | |
365 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 49970 times.
|
49970 | else if (val >= 64) |
366 | ✗ | val -= 64; | |
367 | |||
368 |
2/2✓ Branch 0 taken 31351 times.
✓ Branch 1 taken 18619 times.
|
49970 | if (val >= 0) { |
369 | 31351 | sign = 0; | |
370 | } else { | ||
371 | 18619 | val = -val; | |
372 | 18619 | sign = 1; | |
373 | } | ||
374 | 49970 | val--; | |
375 | 49970 | code = (val >> bit_size) + 1; | |
376 | 49970 | bits = val & (range - 1); | |
377 | |||
378 | 49970 | put_bits(&s->pb, ff_mvtab[code][1] + 1, (ff_mvtab[code][0] << 1) | sign); | |
379 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 49970 times.
|
49970 | if (bit_size > 0) { |
380 | ✗ | put_bits(&s->pb, bit_size, bits); | |
381 | } | ||
382 | } | ||
383 | 102006 | } | |
384 | |||
385 | 189450 | void ff_msmpeg4_encode_mb(MpegEncContext * s, | |
386 | int16_t block[6][64], | ||
387 | int motion_x, int motion_y) | ||
388 | { | ||
389 | int cbp, coded_cbp, i; | ||
390 | int pred_x, pred_y; | ||
391 | |||
392 | 189450 | ff_msmpeg4_handle_slices(s); | |
393 | |||
394 |
2/2✓ Branch 0 taken 162914 times.
✓ Branch 1 taken 26536 times.
|
189450 | if (!s->mb_intra) { |
395 | /* compute cbp */ | ||
396 | 162914 | cbp = 0; | |
397 |
2/2✓ Branch 0 taken 977484 times.
✓ Branch 1 taken 162914 times.
|
1140398 | for (i = 0; i < 6; i++) { |
398 |
2/2✓ Branch 0 taken 354169 times.
✓ Branch 1 taken 623315 times.
|
977484 | if (s->block_last_index[i] >= 0) |
399 | 354169 | cbp |= 1 << (5 - i); | |
400 | } | ||
401 |
3/4✓ Branch 0 taken 162914 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 2259 times.
✓ Branch 3 taken 160655 times.
|
162914 | if (s->use_skip_mb_code && (cbp | motion_x | motion_y) == 0) { |
402 | /* skip macroblock */ | ||
403 | 2259 | put_bits(&s->pb, 1, 1); | |
404 | 2259 | s->last_bits++; | |
405 | 2259 | s->misc_bits++; | |
406 | |||
407 | 2259 | return; | |
408 | } | ||
409 |
1/2✓ Branch 0 taken 160655 times.
✗ Branch 1 not taken.
|
160655 | if (s->use_skip_mb_code) |
410 | 160655 | put_bits(&s->pb, 1, 0); /* mb coded */ | |
411 | |||
412 |
2/2✓ Branch 0 taken 51003 times.
✓ Branch 1 taken 109652 times.
|
160655 | if (s->msmpeg4_version <= MSMP4_V2) { |
413 | 51003 | put_bits(&s->pb, | |
414 | 51003 | ff_v2_mb_type[cbp&3][1], | |
415 | 51003 | ff_v2_mb_type[cbp&3][0]); | |
416 |
2/2✓ Branch 0 taken 40593 times.
✓ Branch 1 taken 10410 times.
|
51003 | if((cbp&3) != 3) coded_cbp= cbp ^ 0x3C; |
417 | 10410 | else coded_cbp= cbp; | |
418 | |||
419 | 51003 | put_bits(&s->pb, | |
420 | 51003 | ff_h263_cbpy_tab[coded_cbp>>2][1], | |
421 | 51003 | ff_h263_cbpy_tab[coded_cbp>>2][0]); | |
422 | |||
423 | 51003 | s->misc_bits += get_bits_diff(s); | |
424 | |||
425 | 51003 | ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y); | |
426 | 51003 | msmpeg4v2_encode_motion(s, motion_x - pred_x); | |
427 | 51003 | msmpeg4v2_encode_motion(s, motion_y - pred_y); | |
428 | }else{ | ||
429 | 109652 | put_bits(&s->pb, | |
430 | 109652 | ff_table_mb_non_intra[cbp + 64][1], | |
431 | 109652 | ff_table_mb_non_intra[cbp + 64][0]); | |
432 | |||
433 | 109652 | s->misc_bits += get_bits_diff(s); | |
434 | |||
435 | /* motion vector */ | ||
436 | 109652 | ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y); | |
437 | 109652 | ff_msmpeg4_encode_motion(s, motion_x - pred_x, | |
438 | motion_y - pred_y); | ||
439 | } | ||
440 | |||
441 | 160655 | s->mv_bits += get_bits_diff(s); | |
442 | |||
443 |
2/2✓ Branch 0 taken 963930 times.
✓ Branch 1 taken 160655 times.
|
1124585 | for (i = 0; i < 6; i++) { |
444 | 963930 | ff_msmpeg4_encode_block(s, block[i], i); | |
445 | } | ||
446 | 160655 | s->p_tex_bits += get_bits_diff(s); | |
447 | } else { | ||
448 | /* compute cbp */ | ||
449 | 26536 | cbp = 0; | |
450 |
2/2✓ Branch 0 taken 159216 times.
✓ Branch 1 taken 26536 times.
|
185752 | for (int i = 0; i < 6; i++) { |
451 | 159216 | int val = (s->block_last_index[i] >= 1); | |
452 | 159216 | cbp |= val << (5 - i); | |
453 | } | ||
454 |
2/2✓ Branch 0 taken 8142 times.
✓ Branch 1 taken 18394 times.
|
26536 | if (s->msmpeg4_version <= MSMP4_V2) { |
455 |
2/2✓ Branch 0 taken 5985 times.
✓ Branch 1 taken 2157 times.
|
8142 | if (s->pict_type == AV_PICTURE_TYPE_I) { |
456 | 5985 | put_bits(&s->pb, | |
457 | 5985 | ff_v2_intra_cbpc[cbp&3][1], ff_v2_intra_cbpc[cbp&3][0]); | |
458 | } else { | ||
459 |
1/2✓ Branch 0 taken 2157 times.
✗ Branch 1 not taken.
|
2157 | if (s->use_skip_mb_code) |
460 | 2157 | put_bits(&s->pb, 1, 0); /* mb coded */ | |
461 | 2157 | put_bits(&s->pb, | |
462 | 2157 | ff_v2_mb_type[(cbp&3) + 4][1], | |
463 | 2157 | ff_v2_mb_type[(cbp&3) + 4][0]); | |
464 | } | ||
465 | 8142 | put_bits(&s->pb, 1, 0); /* no AC prediction yet */ | |
466 | 8142 | put_bits(&s->pb, | |
467 | 8142 | ff_h263_cbpy_tab[cbp>>2][1], | |
468 | 8142 | ff_h263_cbpy_tab[cbp>>2][0]); | |
469 | }else{ | ||
470 |
2/2✓ Branch 0 taken 13158 times.
✓ Branch 1 taken 5236 times.
|
18394 | if (s->pict_type == AV_PICTURE_TYPE_I) { |
471 | /* compute coded_cbp; the 0x3 corresponds to chroma cbp; | ||
472 | * luma coded_cbp are set in the loop below */ | ||
473 | 13158 | coded_cbp = cbp & 0x3; | |
474 |
2/2✓ Branch 0 taken 52632 times.
✓ Branch 1 taken 13158 times.
|
65790 | for (int i = 0; i < 4; i++) { |
475 | uint8_t *coded_block; | ||
476 | 52632 | int pred = ff_msmpeg4_coded_block_pred(s, i, &coded_block); | |
477 | 52632 | int val = (s->block_last_index[i] >= 1); | |
478 | 52632 | *coded_block = val; | |
479 | 52632 | val ^= pred; | |
480 | 52632 | coded_cbp |= val << (5 - i); | |
481 | } | ||
482 | |||
483 | 13158 | put_bits(&s->pb, | |
484 | 13158 | ff_msmp4_mb_i_table[coded_cbp][1], ff_msmp4_mb_i_table[coded_cbp][0]); | |
485 | } else { | ||
486 |
1/2✓ Branch 0 taken 5236 times.
✗ Branch 1 not taken.
|
5236 | if (s->use_skip_mb_code) |
487 | 5236 | put_bits(&s->pb, 1, 0); /* mb coded */ | |
488 | 5236 | put_bits(&s->pb, | |
489 | 5236 | ff_table_mb_non_intra[cbp][1], | |
490 | 5236 | ff_table_mb_non_intra[cbp][0]); | |
491 | } | ||
492 | 18394 | put_bits(&s->pb, 1, 0); /* no AC prediction yet */ | |
493 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 18394 times.
|
18394 | if(s->inter_intra_pred){ |
494 | ✗ | s->h263_aic_dir=0; | |
495 | ✗ | put_bits(&s->pb, ff_table_inter_intra[s->h263_aic_dir][1], ff_table_inter_intra[s->h263_aic_dir][0]); | |
496 | } | ||
497 | } | ||
498 | 26536 | s->misc_bits += get_bits_diff(s); | |
499 | |||
500 |
2/2✓ Branch 0 taken 159216 times.
✓ Branch 1 taken 26536 times.
|
185752 | for (i = 0; i < 6; i++) { |
501 | 159216 | ff_msmpeg4_encode_block(s, block[i], i); | |
502 | } | ||
503 | 26536 | s->i_tex_bits += get_bits_diff(s); | |
504 | 26536 | s->i_count++; | |
505 | } | ||
506 | } | ||
507 | |||
508 | 208050 | static void msmpeg4_encode_dc(MpegEncContext * s, int level, int n, int *dir_ptr) | |
509 | { | ||
510 | int sign, code; | ||
511 | int pred; | ||
512 | |||
513 | int16_t *dc_val; | ||
514 | 208050 | pred = ff_msmpeg4_pred_dc(s, n, &dc_val, dir_ptr); | |
515 | |||
516 | /* update predictor */ | ||
517 |
2/2✓ Branch 0 taken 138700 times.
✓ Branch 1 taken 69350 times.
|
208050 | if (n < 4) { |
518 | 138700 | *dc_val = level * s->y_dc_scale; | |
519 | } else { | ||
520 | 69350 | *dc_val = level * s->c_dc_scale; | |
521 | } | ||
522 | |||
523 | /* do the prediction */ | ||
524 | 208050 | level -= pred; | |
525 | |||
526 |
2/2✓ Branch 0 taken 48852 times.
✓ Branch 1 taken 159198 times.
|
208050 | if (s->msmpeg4_version <= MSMP4_V2) { |
527 |
2/2✓ Branch 0 taken 32568 times.
✓ Branch 1 taken 16284 times.
|
48852 | if (n < 4) { |
528 | 32568 | put_bits(&s->pb, | |
529 | 32568 | ff_v2_dc_lum_table[level + 256][1], | |
530 | 32568 | ff_v2_dc_lum_table[level + 256][0]); | |
531 | }else{ | ||
532 | 16284 | put_bits(&s->pb, | |
533 | 16284 | ff_v2_dc_chroma_table[level + 256][1], | |
534 | 16284 | ff_v2_dc_chroma_table[level + 256][0]); | |
535 | } | ||
536 | }else{ | ||
537 | 159198 | sign = 0; | |
538 |
2/2✓ Branch 0 taken 69483 times.
✓ Branch 1 taken 89715 times.
|
159198 | if (level < 0) { |
539 | 69483 | level = -level; | |
540 | 69483 | sign = 1; | |
541 | } | ||
542 | 159198 | code = level; | |
543 |
2/2✓ Branch 0 taken 46 times.
✓ Branch 1 taken 159152 times.
|
159198 | if (code > DC_MAX) |
544 | 46 | code = DC_MAX; | |
545 | |||
546 | 159198 | put_bits(&s->pb, ff_msmp4_dc_tables[s->dc_table_index][n >= 4][code][1], | |
547 | 159198 | ff_msmp4_dc_tables[s->dc_table_index][n >= 4][code][0]); | |
548 | |||
549 |
2/2✓ Branch 0 taken 46 times.
✓ Branch 1 taken 159152 times.
|
159198 | if (code == DC_MAX) |
550 | 46 | put_bits(&s->pb, 8, level); | |
551 | |||
552 |
2/2✓ Branch 0 taken 144586 times.
✓ Branch 1 taken 14612 times.
|
159198 | if (level != 0) { |
553 | 144586 | put_bits(&s->pb, 1, sign); | |
554 | } | ||
555 | } | ||
556 | 208050 | } | |
557 | |||
558 | /* Encoding of a block; very similar to MPEG-4 except for a different | ||
559 | * escape coding (same as H.263) and more VLC tables. */ | ||
560 | 1482246 | void ff_msmpeg4_encode_block(MpegEncContext * s, int16_t * block, int n) | |
561 | { | ||
562 | 1482246 | MSMPEG4EncContext *const ms = (MSMPEG4EncContext*)s; | |
563 | int level, run, last, i, j, last_index; | ||
564 | int last_non_zero, sign, slevel; | ||
565 | int code, run_diff, dc_pred_dir; | ||
566 | const RLTable *rl; | ||
567 | const uint8_t *scantable; | ||
568 | |||
569 |
2/2✓ Branch 0 taken 208050 times.
✓ Branch 1 taken 1274196 times.
|
1482246 | if (s->mb_intra) { |
570 | 208050 | msmpeg4_encode_dc(s, block[0], n, &dc_pred_dir); | |
571 | 208050 | i = 1; | |
572 |
2/2✓ Branch 0 taken 138700 times.
✓ Branch 1 taken 69350 times.
|
208050 | if (n < 4) { |
573 | 138700 | rl = &ff_rl_table[s->rl_table_index]; | |
574 | } else { | ||
575 | 69350 | rl = &ff_rl_table[3 + s->rl_chroma_table_index]; | |
576 | } | ||
577 | 208050 | run_diff = s->msmpeg4_version >= MSMP4_WMV1; | |
578 | 208050 | scantable= s->intra_scantable.permutated; | |
579 | } else { | ||
580 | 1274196 | i = 0; | |
581 | 1274196 | rl = &ff_rl_table[3 + s->rl_table_index]; | |
582 | 1274196 | run_diff = s->msmpeg4_version > MSMP4_V2; | |
583 | 1274196 | scantable= s->inter_scantable.permutated; | |
584 | } | ||
585 | |||
586 | /* recalculate block_last_index for M$ wmv1 */ | ||
587 |
4/4✓ Branch 0 taken 713544 times.
✓ Branch 1 taken 768702 times.
✓ Branch 2 taken 277524 times.
✓ Branch 3 taken 436020 times.
|
1482246 | if (s->msmpeg4_version >= MSMP4_WMV1 && s->block_last_index[n] > 0) { |
588 |
1/2✓ Branch 0 taken 9923648 times.
✗ Branch 1 not taken.
|
9923648 | for(last_index=63; last_index>=0; last_index--){ |
589 |
2/2✓ Branch 0 taken 277524 times.
✓ Branch 1 taken 9646124 times.
|
9923648 | if(block[scantable[last_index]]) break; |
590 | } | ||
591 | 277524 | s->block_last_index[n]= last_index; | |
592 | }else | ||
593 | 1204722 | last_index = s->block_last_index[n]; | |
594 | /* AC coefs */ | ||
595 | 1482246 | last_non_zero = i - 1; | |
596 |
2/2✓ Branch 0 taken 17431821 times.
✓ Branch 1 taken 1482246 times.
|
18914067 | for (; i <= last_index; i++) { |
597 | 17431821 | j = scantable[i]; | |
598 | 17431821 | level = block[j]; | |
599 |
2/2✓ Branch 0 taken 4396756 times.
✓ Branch 1 taken 13035065 times.
|
17431821 | if (level) { |
600 | 4396756 | run = i - last_non_zero - 1; | |
601 | 4396756 | last = (i == last_index); | |
602 | 4396756 | sign = 0; | |
603 | 4396756 | slevel = level; | |
604 |
2/2✓ Branch 0 taken 2195832 times.
✓ Branch 1 taken 2200924 times.
|
4396756 | if (level < 0) { |
605 | 2195832 | sign = 1; | |
606 | 2195832 | level = -level; | |
607 | } | ||
608 | |||
609 |
2/4✓ Branch 0 taken 4396756 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 4396756 times.
✗ Branch 3 not taken.
|
4396756 | if(level<=MAX_LEVEL && run<=MAX_RUN){ |
610 | 4396756 | ms->ac_stats[s->mb_intra][n>3][level][run][last]++; | |
611 | } | ||
612 | |||
613 | 4396756 | ms->ac_stats[s->mb_intra][n > 3][40][63][0]++; //esc3 like | |
614 | |||
615 | 4396756 | code = get_rl_index(rl, last, run, level); | |
616 | 4396756 | put_bits(&s->pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
617 |
2/2✓ Branch 0 taken 136660 times.
✓ Branch 1 taken 4260096 times.
|
4396756 | if (code == rl->n) { |
618 | int level1, run1; | ||
619 | |||
620 | 136660 | level1 = level - rl->max_level[last][run]; | |
621 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 136660 times.
|
136660 | if (level1 < 1) |
622 | ✗ | goto esc2; | |
623 | 136660 | code = get_rl_index(rl, last, run, level1); | |
624 |
2/2✓ Branch 0 taken 74016 times.
✓ Branch 1 taken 62644 times.
|
136660 | if (code == rl->n) { |
625 | 74016 | esc2: | |
626 | 74016 | put_bits(&s->pb, 1, 0); | |
627 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 74016 times.
|
74016 | if (level > MAX_LEVEL) |
628 | ✗ | goto esc3; | |
629 | 74016 | run1 = run - rl->max_run[last][level] - run_diff; | |
630 |
2/2✓ Branch 0 taken 403 times.
✓ Branch 1 taken 73613 times.
|
74016 | if (run1 < 0) |
631 | 403 | goto esc3; | |
632 | 73613 | code = get_rl_index(rl, last, run1+1, level); | |
633 |
4/4✓ Branch 0 taken 19303 times.
✓ Branch 1 taken 54310 times.
✓ Branch 2 taken 5317 times.
✓ Branch 3 taken 13986 times.
|
73613 | if (s->msmpeg4_version == MSMP4_WMV1 && code == rl->n) |
634 | 5317 | goto esc3; | |
635 | 68296 | code = get_rl_index(rl, last, run1, level); | |
636 |
2/2✓ Branch 0 taken 13568 times.
✓ Branch 1 taken 54728 times.
|
68296 | if (code == rl->n) { |
637 | 13568 | esc3: | |
638 | /* third escape */ | ||
639 | 19288 | put_bits(&s->pb, 1, 0); | |
640 | 19288 | put_bits(&s->pb, 1, last); | |
641 |
2/2✓ Branch 0 taken 6445 times.
✓ Branch 1 taken 12843 times.
|
19288 | if (s->msmpeg4_version >= MSMP4_WMV1) { |
642 |
2/2✓ Branch 0 taken 280 times.
✓ Branch 1 taken 6165 times.
|
6445 | if(s->esc3_level_length==0){ |
643 | 280 | s->esc3_level_length=8; | |
644 | 280 | s->esc3_run_length= 6; | |
645 | //ESCLVLSZ + ESCRUNSZ | ||
646 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 280 times.
|
280 | if(s->qscale<8) |
647 | ✗ | put_bits(&s->pb, 6, 3); | |
648 | else | ||
649 | 280 | put_bits(&s->pb, 8, 3); | |
650 | } | ||
651 | 6445 | put_bits(&s->pb, s->esc3_run_length, run); | |
652 | 6445 | put_bits(&s->pb, 1, sign); | |
653 | 6445 | put_bits(&s->pb, s->esc3_level_length, level); | |
654 | }else{ | ||
655 | 12843 | put_bits(&s->pb, 6, run); | |
656 | 12843 | put_sbits(&s->pb, 8, slevel); | |
657 | } | ||
658 | } else { | ||
659 | /* second escape */ | ||
660 | 54728 | put_bits(&s->pb, 1, 1); | |
661 | 54728 | put_bits(&s->pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
662 | 54728 | put_bits(&s->pb, 1, sign); | |
663 | } | ||
664 | } else { | ||
665 | /* first escape */ | ||
666 | 62644 | put_bits(&s->pb, 1, 1); | |
667 | 62644 | put_bits(&s->pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
668 | 62644 | put_bits(&s->pb, 1, sign); | |
669 | } | ||
670 | } else { | ||
671 | 4260096 | put_bits(&s->pb, 1, sign); | |
672 | } | ||
673 | 4396756 | last_non_zero = i; | |
674 | } | ||
675 | } | ||
676 | 1482246 | } | |
677 | |||
678 | const FFCodec ff_msmpeg4v2_encoder = { | ||
679 | .p.name = "msmpeg4v2", | ||
680 | CODEC_LONG_NAME("MPEG-4 part 2 Microsoft variant version 2"), | ||
681 | .p.type = AVMEDIA_TYPE_VIDEO, | ||
682 | .p.id = AV_CODEC_ID_MSMPEG4V2, | ||
683 | .p.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE }, | ||
684 | .color_ranges = AVCOL_RANGE_MPEG, | ||
685 | .p.priv_class = &ff_mpv_enc_class, | ||
686 | .p.capabilities = AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE, | ||
687 | .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, | ||
688 | .priv_data_size = sizeof(MSMPEG4EncContext), | ||
689 | .init = ff_mpv_encode_init, | ||
690 | FF_CODEC_ENCODE_CB(ff_mpv_encode_picture), | ||
691 | .close = ff_mpv_encode_end, | ||
692 | }; | ||
693 | |||
694 | const FFCodec ff_msmpeg4v3_encoder = { | ||
695 | .p.name = "msmpeg4", | ||
696 | CODEC_LONG_NAME("MPEG-4 part 2 Microsoft variant version 3"), | ||
697 | .p.type = AVMEDIA_TYPE_VIDEO, | ||
698 | .p.id = AV_CODEC_ID_MSMPEG4V3, | ||
699 | .p.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE }, | ||
700 | .color_ranges = AVCOL_RANGE_MPEG, | ||
701 | .p.priv_class = &ff_mpv_enc_class, | ||
702 | .p.capabilities = AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE, | ||
703 | .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, | ||
704 | .priv_data_size = sizeof(MSMPEG4EncContext), | ||
705 | .init = ff_mpv_encode_init, | ||
706 | FF_CODEC_ENCODE_CB(ff_mpv_encode_picture), | ||
707 | .close = ff_mpv_encode_end, | ||
708 | }; | ||
709 | |||
710 | const FFCodec ff_wmv1_encoder = { | ||
711 | .p.name = "wmv1", | ||
712 | CODEC_LONG_NAME("Windows Media Video 7"), | ||
713 | .p.type = AVMEDIA_TYPE_VIDEO, | ||
714 | .p.id = AV_CODEC_ID_WMV1, | ||
715 | .p.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE }, | ||
716 | .color_ranges = AVCOL_RANGE_MPEG, | ||
717 | .p.priv_class = &ff_mpv_enc_class, | ||
718 | .p.capabilities = AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE, | ||
719 | .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, | ||
720 | .priv_data_size = sizeof(MSMPEG4EncContext), | ||
721 | .init = ff_mpv_encode_init, | ||
722 | FF_CODEC_ENCODE_CB(ff_mpv_encode_picture), | ||
723 | .close = ff_mpv_encode_end, | ||
724 | }; | ||
725 |