FFmpeg
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
mpeg4videoenc.c
Go to the documentation of this file.
1 /*
2  * MPEG-4 encoder
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/attributes.h"
24 #include "libavutil/log.h"
25 #include "libavutil/mem.h"
26 #include "libavutil/opt.h"
27 #include "libavutil/thread.h"
28 #include "codec_internal.h"
29 #include "mpegvideo.h"
30 #include "h263.h"
31 #include "h263enc.h"
32 #include "mpeg4video.h"
33 #include "mpeg4videodata.h"
34 #include "mpeg4videodefs.h"
35 #include "mpeg4videoenc.h"
36 #include "mpegvideoenc.h"
37 #include "profiles.h"
38 #include "version.h"
39 
40 /**
41  * Minimal fcode that a motion vector component would need.
42  */
43 static uint8_t fcode_tab[MAX_MV*2+1];
44 
45 /* The uni_DCtab_* tables below contain unified bits+length tables to encode DC
46  * differences in MPEG-4. Unified in the sense that the specification specifies
47  * this encoding in several steps. */
48 static uint8_t uni_DCtab_lum_len[512];
49 static uint8_t uni_DCtab_chrom_len[512];
50 static uint16_t uni_DCtab_lum_bits[512];
51 static uint16_t uni_DCtab_chrom_bits[512];
52 
53 /* Unified encoding tables for run length encoding of coefficients.
54  * Unified in the sense that the specification specifies the encoding in several steps. */
55 static uint32_t uni_mpeg4_intra_rl_bits[64 * 64 * 2 * 2];
56 static uint8_t uni_mpeg4_intra_rl_len[64 * 64 * 2 * 2];
57 static uint32_t uni_mpeg4_inter_rl_bits[64 * 64 * 2 * 2];
58 static uint8_t uni_mpeg4_inter_rl_len[64 * 64 * 2 * 2];
59 
60 //#define UNI_MPEG4_ENC_INDEX(last, run, level) ((last) * 128 + (run) * 256 + (level))
61 //#define UNI_MPEG4_ENC_INDEX(last, run, level) ((last) * 128 * 64 + (run) + (level) * 64)
62 #define UNI_MPEG4_ENC_INDEX(last, run, level) ((last) * 128 * 64 + (run) * 128 + (level))
63 
64 /* MPEG-4
65  * inter
66  * max level: 24/6
67  * max run: 53/63
68  *
69  * intra
70  * max level: 53/16
71  * max run: 29/41
72  */
73 
74 typedef struct Mpeg4EncContext {
76  /// number of bits to represent the fractional part of time
79 
81 {
82  return (Mpeg4EncContext*)m;
83 }
84 
85 /**
86  * Return the number of bits that encoding the 8x8 block in block would need.
87  * @param[in] block_last_index last index in scantable order that refers to a non zero element in block.
88  */
89 static inline int get_block_rate(MPVEncContext *const s, int16_t block[64],
90  int block_last_index, const uint8_t scantable[64])
91 {
92  int last = 0;
93  int j;
94  int rate = 0;
95 
96  for (j = 1; j <= block_last_index; j++) {
97  const int index = scantable[j];
98  int level = block[index];
99  if (level) {
100  level += 64;
101  if ((level & (~127)) == 0) {
102  if (j < block_last_index)
103  rate += s->intra_ac_vlc_length[UNI_AC_ENC_INDEX(j - last - 1, level)];
104  else
105  rate += s->intra_ac_vlc_last_length[UNI_AC_ENC_INDEX(j - last - 1, level)];
106  } else
107  rate += s->ac_esc_length;
108 
109  last = j;
110  }
111  }
112 
113  return rate;
114 }
115 
116 /**
117  * Restore the ac coefficients in block that have been changed by decide_ac_pred().
118  * This function also restores s->c.block_last_index.
119  * @param[in,out] block MB coefficients, these will be restored
120  * @param[in] dir ac prediction direction for each 8x8 block
121  * @param[out] st scantable for each 8x8 block
122  * @param[in] zigzag_last_index index referring to the last non zero coefficient in zigzag order
123  */
124 static inline void restore_ac_coeffs(MPVEncContext *const s, int16_t block[6][64],
125  const int dir[6], const uint8_t *st[6],
126  const int zigzag_last_index[6])
127 {
128  int i, n;
129  memcpy(s->c.block_last_index, zigzag_last_index, sizeof(int) * 6);
130 
131  for (n = 0; n < 6; n++) {
132  int16_t *ac_val = &s->c.ac_val[0][0][0] + s->c.block_index[n] * 16;
133 
134  st[n] = s->c.intra_scantable.permutated;
135  if (dir[n]) {
136  /* top prediction */
137  for (i = 1; i < 8; i++)
138  block[n][s->c.idsp.idct_permutation[i]] = ac_val[i + 8];
139  } else {
140  /* left prediction */
141  for (i = 1; i < 8; i++)
142  block[n][s->c.idsp.idct_permutation[i << 3]] = ac_val[i];
143  }
144  }
145 }
146 
147 /**
148  * Return the optimal value (0 or 1) for the ac_pred element for the given MB in MPEG-4.
149  * This function will also update s->c.block_last_index and s->c.ac_val.
150  * @param[in,out] block MB coefficients, these will be updated if 1 is returned
151  * @param[in] dir ac prediction direction for each 8x8 block
152  * @param[out] st scantable for each 8x8 block
153  * @param[out] zigzag_last_index index referring to the last non zero coefficient in zigzag order
154  */
155 static inline int decide_ac_pred(MPVEncContext *const s, int16_t block[6][64],
156  const int dir[6], const uint8_t *st[6],
157  int zigzag_last_index[6])
158 {
159  int score = 0;
160  int i, n;
161  const int8_t *const qscale_table = s->c.cur_pic.qscale_table;
162 
163  memcpy(zigzag_last_index, s->c.block_last_index, sizeof(int) * 6);
164 
165  for (n = 0; n < 6; n++) {
166  int16_t *ac_val, *ac_val1;
167 
168  score -= get_block_rate(s, block[n], s->c.block_last_index[n],
169  s->c.intra_scantable.permutated);
170 
171  ac_val = &s->c.ac_val[0][0][0] + s->c.block_index[n] * 16;
172  ac_val1 = ac_val;
173  if (dir[n]) {
174  const int xy = s->c.mb_x + s->c.mb_y * s->c.mb_stride - s->c.mb_stride;
175  /* top prediction */
176  ac_val -= s->c.block_wrap[n] * 16;
177  if (s->c.mb_y == 0 || s->c.qscale == qscale_table[xy] || n == 2 || n == 3) {
178  /* same qscale */
179  for (i = 1; i < 8; i++) {
180  const int level = block[n][s->c.idsp.idct_permutation[i]];
181  block[n][s->c.idsp.idct_permutation[i]] = level - ac_val[i + 8];
182  ac_val1[i] = block[n][s->c.idsp.idct_permutation[i << 3]];
183  ac_val1[i + 8] = level;
184  }
185  } else {
186  /* different qscale, we must rescale */
187  for (i = 1; i < 8; i++) {
188  const int level = block[n][s->c.idsp.idct_permutation[i]];
189  block[n][s->c.idsp.idct_permutation[i]] = level - ROUNDED_DIV(ac_val[i + 8] * qscale_table[xy], s->c.qscale);
190  ac_val1[i] = block[n][s->c.idsp.idct_permutation[i << 3]];
191  ac_val1[i + 8] = level;
192  }
193  }
194  st[n] = s->c.permutated_intra_h_scantable;
195  } else {
196  const int xy = s->c.mb_x - 1 + s->c.mb_y * s->c.mb_stride;
197  /* left prediction */
198  ac_val -= 16;
199  if (s->c.mb_x == 0 || s->c.qscale == qscale_table[xy] || n == 1 || n == 3) {
200  /* same qscale */
201  for (i = 1; i < 8; i++) {
202  const int level = block[n][s->c.idsp.idct_permutation[i << 3]];
203  block[n][s->c.idsp.idct_permutation[i << 3]] = level - ac_val[i];
204  ac_val1[i] = level;
205  ac_val1[i + 8] = block[n][s->c.idsp.idct_permutation[i]];
206  }
207  } else {
208  /* different qscale, we must rescale */
209  for (i = 1; i < 8; i++) {
210  const int level = block[n][s->c.idsp.idct_permutation[i << 3]];
211  block[n][s->c.idsp.idct_permutation[i << 3]] = level - ROUNDED_DIV(ac_val[i] * qscale_table[xy], s->c.qscale);
212  ac_val1[i] = level;
213  ac_val1[i + 8] = block[n][s->c.idsp.idct_permutation[i]];
214  }
215  }
216  st[n] = s->c.permutated_intra_v_scantable;
217  }
218 
219  for (i = 63; i > 0; i--) // FIXME optimize
220  if (block[n][st[n][i]])
221  break;
222  s->c.block_last_index[n] = i;
223 
224  score += get_block_rate(s, block[n], s->c.block_last_index[n], st[n]);
225  }
226 
227  if (score < 0) {
228  return 1;
229  } else {
230  restore_ac_coeffs(s, block, dir, st, zigzag_last_index);
231  return 0;
232  }
233 }
234 
235 /**
236  * modify mb_type & qscale so that encoding is actually possible in MPEG-4
237  */
239 {
240  int8_t *const qscale_table = s->c.cur_pic.qscale_table;
241 
243 
244  if (s->c.pict_type == AV_PICTURE_TYPE_B) {
245  int odd = 0;
246  /* ok, come on, this isn't funny anymore, there's more code for
247  * handling this MPEG-4 mess than for the actual adaptive quantization */
248 
249  for (int i = 0; i < s->c.mb_num; i++) {
250  int mb_xy = s->c.mb_index2xy[i];
251  odd += qscale_table[mb_xy] & 1;
252  }
253 
254  if (2 * odd > s->c.mb_num)
255  odd = 1;
256  else
257  odd = 0;
258 
259  for (int i = 0; i < s->c.mb_num; i++) {
260  int mb_xy = s->c.mb_index2xy[i];
261  if ((qscale_table[mb_xy] & 1) != odd)
262  qscale_table[mb_xy]++;
263  if (qscale_table[mb_xy] > 31)
264  qscale_table[mb_xy] = 31;
265  }
266 
267  for (int i = 1; i < s->c.mb_num; i++) {
268  int mb_xy = s->c.mb_index2xy[i];
269  if (qscale_table[mb_xy] != qscale_table[s->c.mb_index2xy[i - 1]] &&
270  (s->mb_type[mb_xy] & CANDIDATE_MB_TYPE_DIRECT)) {
271  s->mb_type[mb_xy] |= CANDIDATE_MB_TYPE_BIDIR;
272  }
273  }
274  }
275 }
276 
277 /**
278  * Encode the dc value.
279  * @param n block index (0-3 are luma, 4-5 are chroma)
280  */
281 static inline void mpeg4_encode_dc(PutBitContext *s, int level, int n)
282 {
283  /* DC will overflow if level is outside the [-255,255] range. */
284  level += 256;
285  if (n < 4) {
286  /* luminance */
288  } else {
289  /* chrominance */
291  }
292 }
293 
294 static inline int mpeg4_get_dc_length(int level, int n)
295 {
296  if (n < 4)
297  return uni_DCtab_lum_len[level + 256];
298  else
299  return uni_DCtab_chrom_len[level + 256];
300 }
301 
302 /**
303  * Encode an 8x8 block.
304  * @param n block index (0-3 are luma, 4-5 are chroma)
305  */
306 static inline void mpeg4_encode_block(const MPVEncContext *const s,
307  const int16_t *block, int n, int intra_dc,
308  const uint8_t *scan_table, PutBitContext *dc_pb,
309  PutBitContext *ac_pb)
310 {
311  int i, last_non_zero;
312  const uint32_t *bits_tab;
313  const uint8_t *len_tab;
314  const int last_index = s->c.block_last_index[n];
315 
316  if (s->c.mb_intra) { // Note gcc (3.2.1 at least) will optimize this away
317  /* MPEG-4 based DC predictor */
318  mpeg4_encode_dc(dc_pb, intra_dc, n);
319  if (last_index < 1)
320  return;
321  i = 1;
322  bits_tab = uni_mpeg4_intra_rl_bits;
323  len_tab = uni_mpeg4_intra_rl_len;
324  } else {
325  if (last_index < 0)
326  return;
327  i = 0;
328  bits_tab = uni_mpeg4_inter_rl_bits;
329  len_tab = uni_mpeg4_inter_rl_len;
330  }
331 
332  /* AC coefs */
333  last_non_zero = i - 1;
334  for (; i < last_index; i++) {
335  int level = block[scan_table[i]];
336  if (level) {
337  int run = i - last_non_zero - 1;
338  level += 64;
339  if ((level & (~127)) == 0) {
340  const int index = UNI_MPEG4_ENC_INDEX(0, run, level);
341  put_bits(ac_pb, len_tab[index], bits_tab[index]);
342  } else { // ESC3
343  put_bits(ac_pb,
344  7 + 2 + 1 + 6 + 1 + 12 + 1,
345  (3 << 23) + (3 << 21) + (0 << 20) + (run << 14) +
346  (1 << 13) + (((level - 64) & 0xfff) << 1) + 1);
347  }
348  last_non_zero = i;
349  }
350  }
351  /* if (i <= last_index) */ {
352  int level = block[scan_table[i]];
353  int run = i - last_non_zero - 1;
354  level += 64;
355  if ((level & (~127)) == 0) {
356  const int index = UNI_MPEG4_ENC_INDEX(1, run, level);
357  put_bits(ac_pb, len_tab[index], bits_tab[index]);
358  } else { // ESC3
359  put_bits(ac_pb,
360  7 + 2 + 1 + 6 + 1 + 12 + 1,
361  (3 << 23) + (3 << 21) + (1 << 20) + (run << 14) +
362  (1 << 13) + (((level - 64) & 0xfff) << 1) + 1);
363  }
364  }
365 }
366 
368  const int16_t *block, int n,
369  int intra_dc, const uint8_t *scan_table)
370 {
371  int i, last_non_zero;
372  const uint8_t *len_tab;
373  const int last_index = s->c.block_last_index[n];
374  int len = 0;
375 
376  if (s->c.mb_intra) { // Note gcc (3.2.1 at least) will optimize this away
377  /* MPEG-4 based DC predictor */
378  len += mpeg4_get_dc_length(intra_dc, n);
379  if (last_index < 1)
380  return len;
381  i = 1;
382  len_tab = uni_mpeg4_intra_rl_len;
383  } else {
384  if (last_index < 0)
385  return 0;
386  i = 0;
387  len_tab = uni_mpeg4_inter_rl_len;
388  }
389 
390  /* AC coefs */
391  last_non_zero = i - 1;
392  for (; i < last_index; i++) {
393  int level = block[scan_table[i]];
394  if (level) {
395  int run = i - last_non_zero - 1;
396  level += 64;
397  if ((level & (~127)) == 0) {
398  const int index = UNI_MPEG4_ENC_INDEX(0, run, level);
399  len += len_tab[index];
400  } else { // ESC3
401  len += 7 + 2 + 1 + 6 + 1 + 12 + 1;
402  }
403  last_non_zero = i;
404  }
405  }
406  /* if (i <= last_index) */ {
407  int level = block[scan_table[i]];
408  int run = i - last_non_zero - 1;
409  level += 64;
410  if ((level & (~127)) == 0) {
411  const int index = UNI_MPEG4_ENC_INDEX(1, run, level);
412  len += len_tab[index];
413  } else { // ESC3
414  len += 7 + 2 + 1 + 6 + 1 + 12 + 1;
415  }
416  }
417 
418  return len;
419 }
420 
421 static inline void mpeg4_encode_blocks(MPVEncContext *const s,
422  const int16_t block[6][64],
423  const int intra_dc[6],
424  const uint8_t * const *scan_table,
425  PutBitContext *dc_pb,
426  PutBitContext *ac_pb)
427 {
428  int i;
429 
430  if (scan_table) {
431  if (s->c.avctx->flags2 & AV_CODEC_FLAG2_NO_OUTPUT) {
432  for (i = 0; i < 6; i++)
433  skip_put_bits(&s->pb,
435  intra_dc[i], scan_table[i]));
436  } else {
437  /* encode each block */
438  for (i = 0; i < 6; i++)
440  intra_dc[i], scan_table[i], dc_pb, ac_pb);
441  }
442  } else {
443  if (s->c.avctx->flags2 & AV_CODEC_FLAG2_NO_OUTPUT) {
444  for (i = 0; i < 6; i++)
445  skip_put_bits(&s->pb,
447  s->c.intra_scantable.permutated));
448  } else {
449  /* encode each block */
450  for (i = 0; i < 6; i++)
451  mpeg4_encode_block(s, block[i], i, 0,
452  s->c.intra_scantable.permutated, dc_pb, ac_pb);
453  }
454  }
455 }
456 
457 static inline int get_b_cbp(MPVEncContext *const s, int16_t block[6][64],
458  int motion_x, int motion_y, int mb_type)
459 {
460  int cbp = 0, i;
461 
462  if (s->mpv_flags & FF_MPV_FLAG_CBP_RD) {
463  int score = 0;
464  const int lambda = s->lambda2 >> (FF_LAMBDA_SHIFT - 6);
465 
466  for (i = 0; i < 6; i++) {
467  if (s->coded_score[i] < 0) {
468  score += s->coded_score[i];
469  cbp |= 1 << (5 - i);
470  }
471  }
472 
473  if (cbp) {
474  int zero_score = -6;
475  if ((motion_x | motion_y | s->dquant | mb_type) == 0)
476  zero_score -= 4; // 2 * MV + mb_type + cbp bit
477 
478  zero_score *= lambda;
479  if (zero_score <= score)
480  cbp = 0;
481  }
482 
483  for (i = 0; i < 6; i++) {
484  if (s->c.block_last_index[i] >= 0 && ((cbp >> (5 - i)) & 1) == 0) {
485  s->c.block_last_index[i] = -1;
486  s->c.bdsp.clear_block(s->c.block[i]);
487  }
488  }
489  } else {
490  for (i = 0; i < 6; i++) {
491  if (s->c.block_last_index[i] >= 0)
492  cbp |= 1 << (5 - i);
493  }
494  }
495  return cbp;
496 }
497 
498 // FIXME this is duplicated to h263.c
499 static const int dquant_code[5] = { 1, 0, 9, 2, 3 };
500 
501 static void mpeg4_encode_mb(MPVEncContext *const s, int16_t block[][64],
502  int motion_x, int motion_y)
503 {
504  int cbpc, cbpy, pred_x, pred_y;
505  PutBitContext *const pb2 = s->c.data_partitioning ? &s->pb2 : &s->pb;
506  PutBitContext *const tex_pb = s->c.data_partitioning && s->c.pict_type != AV_PICTURE_TYPE_B ? &s->tex_pb : &s->pb;
507  PutBitContext *const dc_pb = s->c.data_partitioning && s->c.pict_type != AV_PICTURE_TYPE_I ? &s->pb2 : &s->pb;
508  const int interleaved_stats = (s->c.avctx->flags & AV_CODEC_FLAG_PASS1) && !s->c.data_partitioning ? 1 : 0;
509 
510  if (!s->c.mb_intra) {
511  int i, cbp;
512 
513  if (s->c.pict_type == AV_PICTURE_TYPE_B) {
514  /* convert from mv_dir to type */
515  static const int mb_type_table[8] = { -1, 3, 2, 1, -1, -1, -1, 0 };
516  int mb_type = mb_type_table[s->c.mv_dir];
517 
518  if (s->c.mb_x == 0) {
519  for (i = 0; i < 2; i++)
520  s->c.last_mv[i][0][0] =
521  s->c.last_mv[i][0][1] =
522  s->c.last_mv[i][1][0] =
523  s->c.last_mv[i][1][1] = 0;
524  }
525 
526  av_assert2(s->dquant >= -2 && s->dquant <= 2);
527  av_assert2((s->dquant & 1) == 0);
528  av_assert2(mb_type >= 0);
529 
530  /* nothing to do if this MB was skipped in the next P-frame */
531  if (s->c.next_pic.mbskip_table[s->c.mb_y * s->c.mb_stride + s->c.mb_x]) { // FIXME avoid DCT & ...
532  s->c.mv[0][0][0] =
533  s->c.mv[0][0][1] =
534  s->c.mv[1][0][0] =
535  s->c.mv[1][0][1] = 0;
536  s->c.mv_dir = MV_DIR_FORWARD; // doesn't matter
537  s->c.qscale -= s->dquant;
538 // s->c.mb_skipped = 1;
539 
540  return;
541  }
542 
543  cbp = get_b_cbp(s, block, motion_x, motion_y, mb_type);
544 
545  if ((cbp | motion_x | motion_y | mb_type) == 0) {
546  /* direct MB with MV={0,0} */
547  av_assert2(s->dquant == 0);
548 
549  put_bits(&s->pb, 1, 1); /* mb not coded modb1=1 */
550 
551  if (interleaved_stats) {
552  s->misc_bits++;
553  s->last_bits++;
554  }
555  return;
556  }
557 
558  put_bits(&s->pb, 1, 0); /* mb coded modb1=0 */
559  put_bits(&s->pb, 1, cbp ? 0 : 1); /* modb2 */ // FIXME merge
560  put_bits(&s->pb, mb_type + 1, 1); // this table is so simple that we don't need it :)
561  if (cbp)
562  put_bits(&s->pb, 6, cbp);
563 
564  if (cbp && mb_type) {
565  if (s->dquant)
566  put_bits(&s->pb, 2, (s->dquant >> 2) + 3);
567  else
568  put_bits(&s->pb, 1, 0);
569  } else
570  s->c.qscale -= s->dquant;
571 
572  if (!s->c.progressive_sequence) {
573  if (cbp)
574  put_bits(&s->pb, 1, s->c.interlaced_dct);
575  if (mb_type) // not direct mode
576  put_bits(&s->pb, 1, s->c.mv_type == MV_TYPE_FIELD);
577  }
578 
579  if (interleaved_stats)
580  s->misc_bits += get_bits_diff(s);
581 
582  if (!mb_type) {
583  av_assert2(s->c.mv_dir & MV_DIRECT);
584  ff_h263_encode_motion_vector(s, motion_x, motion_y, 1);
585  } else {
586  av_assert2(mb_type > 0 && mb_type < 4);
587  if (s->c.mv_type != MV_TYPE_FIELD) {
588  if (s->c.mv_dir & MV_DIR_FORWARD) {
590  s->c.mv[0][0][0] - s->c.last_mv[0][0][0],
591  s->c.mv[0][0][1] - s->c.last_mv[0][0][1],
592  s->c.f_code);
593  s->c.last_mv[0][0][0] =
594  s->c.last_mv[0][1][0] = s->c.mv[0][0][0];
595  s->c.last_mv[0][0][1] =
596  s->c.last_mv[0][1][1] = s->c.mv[0][0][1];
597  }
598  if (s->c.mv_dir & MV_DIR_BACKWARD) {
600  s->c.mv[1][0][0] - s->c.last_mv[1][0][0],
601  s->c.mv[1][0][1] - s->c.last_mv[1][0][1],
602  s->c.b_code);
603  s->c.last_mv[1][0][0] =
604  s->c.last_mv[1][1][0] = s->c.mv[1][0][0];
605  s->c.last_mv[1][0][1] =
606  s->c.last_mv[1][1][1] = s->c.mv[1][0][1];
607  }
608  } else {
609  if (s->c.mv_dir & MV_DIR_FORWARD) {
610  put_bits(&s->pb, 1, s->c.field_select[0][0]);
611  put_bits(&s->pb, 1, s->c.field_select[0][1]);
612  }
613  if (s->c.mv_dir & MV_DIR_BACKWARD) {
614  put_bits(&s->pb, 1, s->c.field_select[1][0]);
615  put_bits(&s->pb, 1, s->c.field_select[1][1]);
616  }
617  if (s->c.mv_dir & MV_DIR_FORWARD) {
618  for (i = 0; i < 2; i++) {
620  s->c.mv[0][i][0] - s->c.last_mv[0][i][0],
621  s->c.mv[0][i][1] - s->c.last_mv[0][i][1] / 2,
622  s->c.f_code);
623  s->c.last_mv[0][i][0] = s->c.mv[0][i][0];
624  s->c.last_mv[0][i][1] = s->c.mv[0][i][1] * 2;
625  }
626  }
627  if (s->c.mv_dir & MV_DIR_BACKWARD) {
628  for (i = 0; i < 2; i++) {
630  s->c.mv[1][i][0] - s->c.last_mv[1][i][0],
631  s->c.mv[1][i][1] - s->c.last_mv[1][i][1] / 2,
632  s->c.b_code);
633  s->c.last_mv[1][i][0] = s->c.mv[1][i][0];
634  s->c.last_mv[1][i][1] = s->c.mv[1][i][1] * 2;
635  }
636  }
637  }
638  }
639 
640  if (interleaved_stats)
641  s->mv_bits += get_bits_diff(s);
642 
644 
645  if (interleaved_stats)
646  s->p_tex_bits += get_bits_diff(s);
647  } else { /* s->c.pict_type == AV_PICTURE_TYPE_B */
648  cbp = get_p_cbp(s, block, motion_x, motion_y);
649 
650  if ((cbp | motion_x | motion_y | s->dquant) == 0 &&
651  s->c.mv_type == MV_TYPE_16X16) {
652  const MPVMainEncContext *const m = slice_to_mainenc(s);
653  /* Check if the B-frames can skip it too, as we must skip it
654  * if we skip here why didn't they just compress
655  * the skip-mb bits instead of reusing them ?! */
656  if (m->max_b_frames > 0) {
657  int x, y, offset;
658  const uint8_t *p_pic;
659 
660  x = s->c.mb_x * 16;
661  y = s->c.mb_y * 16;
662 
663  offset = x + y * s->c.linesize;
664  p_pic = s->new_pic->data[0] + offset;
665 
666  s->c.mb_skipped = 1;
667  for (int i = 0; i < m->max_b_frames; i++) {
668  const uint8_t *b_pic;
669  int diff;
670  const MPVPicture *pic = m->reordered_input_picture[i + 1];
671 
672  if (!pic || pic->f->pict_type != AV_PICTURE_TYPE_B)
673  break;
674 
675  b_pic = pic->f->data[0] + offset;
676  if (!pic->shared)
677  b_pic += INPLACE_OFFSET;
678 
679  if (x + 16 > s->c.width || y + 16 > s->c.height) {
680  int x1, y1;
681  int xe = FFMIN(16, s->c.width - x);
682  int ye = FFMIN(16, s->c.height - y);
683  diff = 0;
684  for (y1 = 0; y1 < ye; y1++) {
685  for (x1 = 0; x1 < xe; x1++) {
686  diff += FFABS(p_pic[x1 + y1 * s->c.linesize] - b_pic[x1 + y1 * s->c.linesize]);
687  }
688  }
689  diff = diff * 256 / (xe * ye);
690  } else {
691  diff = s->sad_cmp[0](NULL, p_pic, b_pic, s->c.linesize, 16);
692  }
693  if (diff > s->c.qscale * 70) { // FIXME check that 70 is optimal
694  s->c.mb_skipped = 0;
695  break;
696  }
697  }
698  } else
699  s->c.mb_skipped = 1;
700 
701  if (s->c.mb_skipped == 1) {
702  /* skip macroblock */
703  put_bits(&s->pb, 1, 1);
704 
705  if (interleaved_stats) {
706  s->misc_bits++;
707  s->last_bits++;
708  }
709 
710  return;
711  }
712  }
713 
714  put_bits(&s->pb, 1, 0); /* mb coded */
715  cbpc = cbp & 3;
716  cbpy = cbp >> 2;
717  cbpy ^= 0xf;
718  if (s->c.mv_type == MV_TYPE_16X16) {
719  if (s->dquant)
720  cbpc += 8;
721  put_bits(&s->pb,
724 
725  put_bits(pb2, ff_h263_cbpy_tab[cbpy][1], ff_h263_cbpy_tab[cbpy][0]);
726  if (s->dquant)
727  put_bits(pb2, 2, dquant_code[s->dquant + 2]);
728 
729  if (!s->c.progressive_sequence) {
730  if (cbp)
731  put_bits(pb2, 1, s->c.interlaced_dct);
732  put_bits(pb2, 1, 0);
733  }
734 
735  if (interleaved_stats)
736  s->misc_bits += get_bits_diff(s);
737 
738  /* motion vectors: 16x16 mode */
739  ff_h263_pred_motion(&s->c, 0, 0, &pred_x, &pred_y);
740 
742  motion_x - pred_x,
743  motion_y - pred_y,
744  s->c.f_code);
745  } else if (s->c.mv_type == MV_TYPE_FIELD) {
746  if (s->dquant)
747  cbpc += 8;
748  put_bits(&s->pb,
751 
752  put_bits(pb2, ff_h263_cbpy_tab[cbpy][1], ff_h263_cbpy_tab[cbpy][0]);
753  if (s->dquant)
754  put_bits(pb2, 2, dquant_code[s->dquant + 2]);
755 
756  av_assert2(!s->c.progressive_sequence);
757  if (cbp)
758  put_bits(pb2, 1, s->c.interlaced_dct);
759  put_bits(pb2, 1, 1);
760 
761  if (interleaved_stats)
762  s->misc_bits += get_bits_diff(s);
763 
764  /* motion vectors: 16x8 interlaced mode */
765  ff_h263_pred_motion(&s->c, 0, 0, &pred_x, &pred_y);
766  pred_y /= 2;
767 
768  put_bits(&s->pb, 1, s->c.field_select[0][0]);
769  put_bits(&s->pb, 1, s->c.field_select[0][1]);
770 
772  s->c.mv[0][0][0] - pred_x,
773  s->c.mv[0][0][1] - pred_y,
774  s->c.f_code);
776  s->c.mv[0][1][0] - pred_x,
777  s->c.mv[0][1][1] - pred_y,
778  s->c.f_code);
779  } else {
780  av_assert2(s->c.mv_type == MV_TYPE_8X8);
781  put_bits(&s->pb,
782  ff_h263_inter_MCBPC_bits[cbpc + 16],
783  ff_h263_inter_MCBPC_code[cbpc + 16]);
784  put_bits(pb2, ff_h263_cbpy_tab[cbpy][1], ff_h263_cbpy_tab[cbpy][0]);
785 
786  if (!s->c.progressive_sequence && cbp)
787  put_bits(pb2, 1, s->c.interlaced_dct);
788 
789  if (interleaved_stats)
790  s->misc_bits += get_bits_diff(s);
791 
792  for (i = 0; i < 4; i++) {
793  /* motion vectors: 8x8 mode*/
794  ff_h263_pred_motion(&s->c, i, 0, &pred_x, &pred_y);
795 
797  s->c.cur_pic.motion_val[0][s->c.block_index[i]][0] - pred_x,
798  s->c.cur_pic.motion_val[0][s->c.block_index[i]][1] - pred_y,
799  s->c.f_code);
800  }
801  }
802 
803  if (interleaved_stats)
804  s->mv_bits += get_bits_diff(s);
805 
806  mpeg4_encode_blocks(s, block, NULL, NULL, NULL, tex_pb);
807 
808  if (interleaved_stats)
809  s->p_tex_bits += get_bits_diff(s);
810  }
811  } else {
812  int cbp;
813  int dc_diff[6]; // dc values with the dc prediction subtracted
814  int dir[6]; // prediction direction
815  int zigzag_last_index[6];
816  const uint8_t *scan_table[6];
817  int i;
818 
819  for (int i = 0; i < 6; i++) {
820  int pred = ff_mpeg4_pred_dc(&s->c, i, &dir[i]);
821  int scale = i < 4 ? s->c.y_dc_scale : s->c.c_dc_scale;
822 
823  pred = FASTDIV((pred + (scale >> 1)), scale);
824  dc_diff[i] = block[i][0] - pred;
825  s->c.dc_val[0][s->c.block_index[i]] = av_clip_uintp2(block[i][0] * scale, 11);
826  }
827 
828  if (s->c.avctx->flags & AV_CODEC_FLAG_AC_PRED) {
829  s->c.ac_pred = decide_ac_pred(s, block, dir, scan_table, zigzag_last_index);
830  } else {
831  for (i = 0; i < 6; i++)
832  scan_table[i] = s->c.intra_scantable.permutated;
833  }
834 
835  /* compute cbp */
836  cbp = 0;
837  for (i = 0; i < 6; i++)
838  if (s->c.block_last_index[i] >= 1)
839  cbp |= 1 << (5 - i);
840 
841  cbpc = cbp & 3;
842  if (s->c.pict_type == AV_PICTURE_TYPE_I) {
843  if (s->dquant)
844  cbpc += 4;
845  put_bits(&s->pb,
848  } else {
849  if (s->dquant)
850  cbpc += 8;
851  put_bits(&s->pb, 1, 0); /* mb coded */
852  put_bits(&s->pb,
853  ff_h263_inter_MCBPC_bits[cbpc + 4],
854  ff_h263_inter_MCBPC_code[cbpc + 4]);
855  }
856  put_bits(pb2, 1, s->c.ac_pred);
857  cbpy = cbp >> 2;
858  put_bits(pb2, ff_h263_cbpy_tab[cbpy][1], ff_h263_cbpy_tab[cbpy][0]);
859  if (s->dquant)
860  put_bits(dc_pb, 2, dquant_code[s->dquant + 2]);
861 
862  if (!s->c.progressive_sequence)
863  put_bits(dc_pb, 1, s->c.interlaced_dct);
864 
865  if (interleaved_stats)
866  s->misc_bits += get_bits_diff(s);
867 
868  mpeg4_encode_blocks(s, block, dc_diff, scan_table, dc_pb, tex_pb);
869 
870  if (interleaved_stats)
871  s->i_tex_bits += get_bits_diff(s);
872  s->i_count++;
873 
874  /* restore ac coeffs & last_index stuff
875  * if we messed them up with the prediction */
876  if (s->c.ac_pred)
877  restore_ac_coeffs(s, block, dir, scan_table, zigzag_last_index);
878  }
879 }
880 
881 /**
882  * add MPEG-4 stuffing bits (01...1)
883  */
885 {
886  int length = 8 - (put_bits_count(pbc) & 7);
887 
888  put_bits(pbc, length, (1 << (length - 1)) - 1);
889 }
890 
891 /* must be called before writing the header */
893 {
894  if (s->c.pict_type == AV_PICTURE_TYPE_B) {
896  } else {
897  s->c.last_time_base = s->c.time_base;
898  s->c.time_base = FFUDIV(s->c.time, s->c.avctx->time_base.den);
899  }
900 }
901 
903 {
904  MPVEncContext *const s = &m->s;
905  int64_t hours, minutes, seconds;
906  int64_t time;
907 
908  put_bits32(&s->pb, GOP_STARTCODE);
909 
910  time = s->c.cur_pic.ptr->f->pts;
911  if (m->reordered_input_picture[1])
912  time = FFMIN(time, m->reordered_input_picture[1]->f->pts);
913  time = time * s->c.avctx->time_base.num;
914  s->c.last_time_base = FFUDIV(time, s->c.avctx->time_base.den);
915 
916  seconds = FFUDIV(time, s->c.avctx->time_base.den);
917  minutes = FFUDIV(seconds, 60); seconds = FFUMOD(seconds, 60);
918  hours = FFUDIV(minutes, 60); minutes = FFUMOD(minutes, 60);
919  hours = FFUMOD(hours , 24);
920 
921  put_bits(&s->pb, 5, hours);
922  put_bits(&s->pb, 6, minutes);
923  put_bits(&s->pb, 1, 1);
924  put_bits(&s->pb, 6, seconds);
925 
926  put_bits(&s->pb, 1, !!(s->c.avctx->flags & AV_CODEC_FLAG_CLOSED_GOP));
927  put_bits(&s->pb, 1, 0); // broken link == NO
928 
929  ff_mpeg4_stuffing(&s->pb);
930 }
931 
933 {
934  MPVEncContext *const s = &m->s;
935  int profile_and_level_indication;
936  int vo_ver_id;
937 
938  if (s->c.avctx->profile != AV_PROFILE_UNKNOWN) {
939  profile_and_level_indication = s->c.avctx->profile << 4;
940  } else if (m->max_b_frames || s->c.quarter_sample) {
941  profile_and_level_indication = 0xF0; // adv simple
942  } else {
943  profile_and_level_indication = 0x00; // simple
944  }
945 
946  if (s->c.avctx->level != AV_LEVEL_UNKNOWN)
947  profile_and_level_indication |= s->c.avctx->level;
948  else
949  profile_and_level_indication |= 1; // level 1
950 
951  if (profile_and_level_indication >> 4 == 0xF)
952  vo_ver_id = 5;
953  else
954  vo_ver_id = 1;
955 
956  // FIXME levels
957 
958  put_bits32(&s->pb, VOS_STARTCODE);
959 
960  put_bits(&s->pb, 8, profile_and_level_indication);
961 
963 
964  put_bits(&s->pb, 1, 1);
965  put_bits(&s->pb, 4, vo_ver_id);
966  put_bits(&s->pb, 3, 1); // priority
967 
968  put_bits(&s->pb, 4, 1); // visual obj type== video obj
969 
970  put_bits(&s->pb, 1, 0); // video signal type == no clue // FIXME
971 
972  ff_mpeg4_stuffing(&s->pb);
973 }
974 
976  int vo_number,
977  int vol_number)
978 {
979  MPVEncContext *const s = &m4->m.s;
980  int vo_ver_id, vo_type, aspect_ratio_info;
981 
982  if (m4->m.max_b_frames || s->c.quarter_sample) {
983  vo_ver_id = 5;
984  vo_type = ADV_SIMPLE_VO_TYPE;
985  } else {
986  vo_ver_id = 1;
987  vo_type = SIMPLE_VO_TYPE;
988  }
989 
990  put_bits32(&s->pb, 0x100 + vo_number); /* video obj */
991  put_bits32(&s->pb, 0x120 + vol_number); /* video obj layer */
992 
993  put_bits(&s->pb, 1, 0); /* random access vol */
994  put_bits(&s->pb, 8, vo_type); /* video obj type indication */
995  put_bits(&s->pb, 1, 1); /* is obj layer id= yes */
996  put_bits(&s->pb, 4, vo_ver_id); /* is obj layer ver id */
997  put_bits(&s->pb, 3, 1); /* is obj layer priority */
998 
999  aspect_ratio_info = ff_h263_aspect_to_info(s->c.avctx->sample_aspect_ratio);
1000 
1001  put_bits(&s->pb, 4, aspect_ratio_info); /* aspect ratio info */
1002  if (aspect_ratio_info == FF_ASPECT_EXTENDED) {
1003  av_reduce(&s->c.avctx->sample_aspect_ratio.num, &s->c.avctx->sample_aspect_ratio.den,
1004  s->c.avctx->sample_aspect_ratio.num, s->c.avctx->sample_aspect_ratio.den, 255);
1005  put_bits(&s->pb, 8, s->c.avctx->sample_aspect_ratio.num);
1006  put_bits(&s->pb, 8, s->c.avctx->sample_aspect_ratio.den);
1007  }
1008 
1009  put_bits(&s->pb, 1, 1); /* vol control parameters= yes */
1010  put_bits(&s->pb, 2, 1); /* chroma format YUV 420/YV12 */
1011  put_bits(&s->pb, 1, s->c.low_delay);
1012  put_bits(&s->pb, 1, 0); /* vbv parameters= no */
1013 
1014  put_bits(&s->pb, 2, RECT_SHAPE); /* vol shape= rectangle */
1015  put_bits(&s->pb, 1, 1); /* marker bit */
1016 
1017  put_bits(&s->pb, 16, s->c.avctx->time_base.den);
1018  if (m4->time_increment_bits < 1)
1019  m4->time_increment_bits = 1;
1020  put_bits(&s->pb, 1, 1); /* marker bit */
1021  put_bits(&s->pb, 1, 0); /* fixed vop rate=no */
1022  put_bits(&s->pb, 1, 1); /* marker bit */
1023  put_bits(&s->pb, 13, s->c.width); /* vol width */
1024  put_bits(&s->pb, 1, 1); /* marker bit */
1025  put_bits(&s->pb, 13, s->c.height); /* vol height */
1026  put_bits(&s->pb, 1, 1); /* marker bit */
1027  put_bits(&s->pb, 1, s->c.progressive_sequence ? 0 : 1);
1028  put_bits(&s->pb, 1, 1); /* obmc disable */
1029  if (vo_ver_id == 1)
1030  put_bits(&s->pb, 1, 0); /* sprite enable */
1031  else
1032  put_bits(&s->pb, 2, 0); /* sprite enable */
1033 
1034  put_bits(&s->pb, 1, 0); /* not 8 bit == false */
1035  put_bits(&s->pb, 1, s->c.mpeg_quant); /* quant type = (0 = H.263 style) */
1036 
1037  if (s->c.mpeg_quant) {
1038  ff_write_quant_matrix(&s->pb, s->c.avctx->intra_matrix);
1039  ff_write_quant_matrix(&s->pb, s->c.avctx->inter_matrix);
1040  }
1041 
1042  if (vo_ver_id != 1)
1043  put_bits(&s->pb, 1, s->c.quarter_sample);
1044  put_bits(&s->pb, 1, 1); /* complexity estimation disable */
1045  put_bits(&s->pb, 1, s->rtp_mode ? 0 : 1); /* resync marker disable */
1046  put_bits(&s->pb, 1, s->c.data_partitioning ? 1 : 0);
1047  if (s->c.data_partitioning)
1048  put_bits(&s->pb, 1, 0); /* no rvlc */
1049 
1050  if (vo_ver_id != 1) {
1051  put_bits(&s->pb, 1, 0); /* newpred */
1052  put_bits(&s->pb, 1, 0); /* reduced res vop */
1053  }
1054  put_bits(&s->pb, 1, 0); /* scalability */
1055 
1056  ff_mpeg4_stuffing(&s->pb);
1057 
1058  /* user data */
1059  if (!(s->c.avctx->flags & AV_CODEC_FLAG_BITEXACT)) {
1061  ff_put_string(&s->pb, LIBAVCODEC_IDENT, 0);
1062  }
1063 }
1064 
1065 /* write MPEG-4 VOP header */
1067 {
1068  Mpeg4EncContext *const m4 = mainctx_to_mpeg4(m);
1069  MPVEncContext *const s = &m->s;
1070  uint64_t time_incr;
1071  int64_t time_div, time_mod;
1072 
1073  if (s->c.pict_type == AV_PICTURE_TYPE_I) {
1074  if (!(s->c.avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER)) {
1075  if (s->c.avctx->strict_std_compliance < FF_COMPLIANCE_VERY_STRICT) // HACK, the reference sw is buggy
1077  if (s->c.avctx->strict_std_compliance < FF_COMPLIANCE_VERY_STRICT || s->c.picture_number == 0) // HACK, the reference sw is buggy
1078  mpeg4_encode_vol_header(m4, 0, 0);
1079  }
1081  }
1082 
1083  s->c.partitioned_frame = s->c.data_partitioning && s->c.pict_type != AV_PICTURE_TYPE_B;
1084 
1085  put_bits32(&s->pb, VOP_STARTCODE); /* vop header */
1086  put_bits(&s->pb, 2, s->c.pict_type - 1); /* pict type: I = 0 , P = 1 */
1087 
1088  time_div = FFUDIV(s->c.time, s->c.avctx->time_base.den);
1089  time_mod = FFUMOD(s->c.time, s->c.avctx->time_base.den);
1090  time_incr = time_div - s->c.last_time_base;
1091 
1092  // This limits the frame duration to max 1 day
1093  if (time_incr > 3600*24) {
1094  av_log(s->c.avctx, AV_LOG_ERROR, "time_incr %"PRIu64" too large\n", time_incr);
1095  return AVERROR(EINVAL);
1096  }
1097  while (time_incr--)
1098  put_bits(&s->pb, 1, 1);
1099 
1100  put_bits(&s->pb, 1, 0);
1101 
1102  put_bits(&s->pb, 1, 1); /* marker */
1103  put_bits(&s->pb, m4->time_increment_bits, time_mod); /* time increment */
1104  put_bits(&s->pb, 1, 1); /* marker */
1105  put_bits(&s->pb, 1, 1); /* vop coded */
1106  if (s->c.pict_type == AV_PICTURE_TYPE_P) {
1107  put_bits(&s->pb, 1, s->c.no_rounding); /* rounding type */
1108  }
1109  put_bits(&s->pb, 3, 0); /* intra dc VLC threshold */
1110  if (!s->c.progressive_sequence) {
1111  put_bits(&s->pb, 1, !!(s->c.cur_pic.ptr->f->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST));
1112  put_bits(&s->pb, 1, s->c.alternate_scan);
1113  }
1114  // FIXME sprite stuff
1115 
1116  put_bits(&s->pb, 5, s->c.qscale);
1117 
1118  if (s->c.pict_type != AV_PICTURE_TYPE_I)
1119  put_bits(&s->pb, 3, s->c.f_code); /* fcode_for */
1120  if (s->c.pict_type == AV_PICTURE_TYPE_B)
1121  put_bits(&s->pb, 3, s->c.b_code); /* fcode_back */
1122 
1123  return 0;
1124 }
1125 
1126 static av_cold void init_uni_dc_tab(void)
1127 {
1128  int level, uni_code, uni_len;
1129 
1130  for (level = -256; level < 256; level++) {
1131  int size, v, l;
1132  /* find number of bits */
1133  size = 0;
1134  v = abs(level);
1135  while (v) {
1136  v >>= 1;
1137  size++;
1138  }
1139 
1140  if (level < 0)
1141  l = (-level) ^ ((1 << size) - 1);
1142  else
1143  l = level;
1144 
1145  /* luminance */
1146  uni_code = ff_mpeg4_DCtab_lum[size][0];
1147  uni_len = ff_mpeg4_DCtab_lum[size][1];
1148 
1149  if (size > 0) {
1150  uni_code <<= size;
1151  uni_code |= l;
1152  uni_len += size;
1153  if (size > 8) {
1154  uni_code <<= 1;
1155  uni_code |= 1;
1156  uni_len++;
1157  }
1158  }
1159  uni_DCtab_lum_bits[level + 256] = uni_code;
1160  uni_DCtab_lum_len[level + 256] = uni_len;
1161 
1162  /* chrominance */
1163  uni_code = ff_mpeg4_DCtab_chrom[size][0];
1164  uni_len = ff_mpeg4_DCtab_chrom[size][1];
1165 
1166  if (size > 0) {
1167  uni_code <<= size;
1168  uni_code |= l;
1169  uni_len += size;
1170  if (size > 8) {
1171  uni_code <<= 1;
1172  uni_code |= 1;
1173  uni_len++;
1174  }
1175  }
1176  uni_DCtab_chrom_bits[level + 256] = uni_code;
1177  uni_DCtab_chrom_len[level + 256] = uni_len;
1178  }
1179 }
1180 
1181 static av_cold void init_uni_mpeg4_rl_tab(RLTable *rl, uint32_t *bits_tab,
1182  uint8_t *len_tab)
1183 {
1184  int slevel, run, last;
1185 
1186  av_assert0(MAX_LEVEL >= 64);
1187  av_assert0(MAX_RUN >= 63);
1188 
1189  for (slevel = -64; slevel < 64; slevel++) {
1190  if (slevel == 0)
1191  continue;
1192  for (run = 0; run < 64; run++) {
1193  for (last = 0; last <= 1; last++) {
1194  const int index = UNI_MPEG4_ENC_INDEX(last, run, slevel + 64);
1195  int level = slevel < 0 ? -slevel : slevel;
1196  int sign = slevel < 0 ? 1 : 0;
1197  int bits, len, code;
1198  int level1, run1;
1199 
1200  len_tab[index] = 100;
1201 
1202  /* ESC0 */
1203  code = get_rl_index(rl, last, run, level);
1204  bits = rl->table_vlc[code][0];
1205  len = rl->table_vlc[code][1];
1206  bits = bits * 2 + sign;
1207  len++;
1208 
1209  if (code != rl->n && len < len_tab[index]) {
1210  bits_tab[index] = bits;
1211  len_tab[index] = len;
1212  }
1213  /* ESC1 */
1214  bits = rl->table_vlc[rl->n][0];
1215  len = rl->table_vlc[rl->n][1];
1216  bits = bits * 2;
1217  len++; // esc1
1218  level1 = level - rl->max_level[last][run];
1219  if (level1 > 0) {
1220  code = get_rl_index(rl, last, run, level1);
1221  bits <<= rl->table_vlc[code][1];
1222  len += rl->table_vlc[code][1];
1223  bits += rl->table_vlc[code][0];
1224  bits = bits * 2 + sign;
1225  len++;
1226 
1227  if (code != rl->n && len < len_tab[index]) {
1228  bits_tab[index] = bits;
1229  len_tab[index] = len;
1230  }
1231  }
1232  /* ESC2 */
1233  bits = rl->table_vlc[rl->n][0];
1234  len = rl->table_vlc[rl->n][1];
1235  bits = bits * 4 + 2;
1236  len += 2; // esc2
1237  run1 = run - rl->max_run[last][level] - 1;
1238  if (run1 >= 0) {
1239  code = get_rl_index(rl, last, run1, level);
1240  bits <<= rl->table_vlc[code][1];
1241  len += rl->table_vlc[code][1];
1242  bits += rl->table_vlc[code][0];
1243  bits = bits * 2 + sign;
1244  len++;
1245 
1246  if (code != rl->n && len < len_tab[index]) {
1247  bits_tab[index] = bits;
1248  len_tab[index] = len;
1249  }
1250  }
1251  /* ESC3 */
1252  bits = rl->table_vlc[rl->n][0];
1253  len = rl->table_vlc[rl->n][1];
1254  bits = bits * 4 + 3;
1255  len += 2; // esc3
1256  bits = bits * 2 + last;
1257  len++;
1258  bits = bits * 64 + run;
1259  len += 6;
1260  bits = bits * 2 + 1;
1261  len++; // marker
1262  bits = bits * 4096 + (slevel & 0xfff);
1263  len += 12;
1264  bits = bits * 2 + 1;
1265  len++; // marker
1266 
1267  if (len < len_tab[index]) {
1268  bits_tab[index] = bits;
1269  len_tab[index] = len;
1270  }
1271  }
1272  }
1273  }
1274 }
1275 
1277 {
1278  init_uni_dc_tab();
1279 
1281 
1284 
1285  for (int f_code = MAX_FCODE; f_code > 0; f_code--) {
1286  for (int mv = -(16 << f_code); mv < (16 << f_code); mv++)
1287  fcode_tab[mv + MAX_MV] = f_code;
1288  }
1289 }
1290 
1292 {
1293  static AVOnce init_static_once = AV_ONCE_INIT;
1294  Mpeg4EncContext *const m4 = avctx->priv_data;
1295  MPVMainEncContext *const m = &m4->m;
1296  MPVEncContext *const s = &m->s;
1297  int ret;
1298 
1299  if (avctx->width >= (1<<13) || avctx->height >= (1<<13)) {
1300  av_log(avctx, AV_LOG_ERROR, "dimensions too large for MPEG-4\n");
1301  return AVERROR(EINVAL);
1302  }
1303 
1305  s->encode_mb = mpeg4_encode_mb;
1306 
1307  m->fcode_tab = fcode_tab + MAX_MV;
1308 
1309  s->min_qcoeff = -2048;
1310  s->max_qcoeff = 2047;
1311  s->intra_ac_vlc_length = uni_mpeg4_intra_rl_len;
1312  s->intra_ac_vlc_last_length = uni_mpeg4_intra_rl_len + 128 * 64;
1313  s->inter_ac_vlc_length = uni_mpeg4_inter_rl_len;
1314  s->inter_ac_vlc_last_length = uni_mpeg4_inter_rl_len + 128 * 64;
1315  s->luma_dc_vlc_length = uni_DCtab_lum_len;
1316  s->ac_esc_length = 7 + 2 + 1 + 6 + 1 + 12 + 1;
1317  s->c.y_dc_scale_table = ff_mpeg4_y_dc_scale_table;
1318  s->c.c_dc_scale_table = ff_mpeg4_c_dc_scale_table;
1319 
1320  ff_qpeldsp_init(&s->c.qdsp);
1321  if ((ret = ff_mpv_encode_init(avctx)) < 0)
1322  return ret;
1323 
1324  ff_thread_once(&init_static_once, mpeg4_encode_init_static);
1325 
1326  if (avctx->time_base.den > (1 << 16) - 1) {
1327  av_log(avctx, AV_LOG_ERROR,
1328  "timebase %d/%d not supported by MPEG 4 standard, "
1329  "the maximum admitted value for the timebase denominator "
1330  "is %d\n", avctx->time_base.num, avctx->time_base.den,
1331  (1 << 16) - 1);
1332  return AVERROR(EINVAL);
1333  }
1334 
1335  m4->time_increment_bits = av_log2(avctx->time_base.den - 1) + 1;
1336 
1337  if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
1338  avctx->extradata = av_malloc(1024);
1339  if (!avctx->extradata)
1340  return AVERROR(ENOMEM);
1341  init_put_bits(&s->pb, avctx->extradata, 1024);
1342 
1344  mpeg4_encode_vol_header(m4, 0, 0);
1345 
1346 // ff_mpeg4_stuffing(&s->pb); ?
1347  flush_put_bits(&s->pb);
1348  avctx->extradata_size = put_bytes_output(&s->pb);
1349  }
1350  return 0;
1351 }
1352 
1354 {
1355  uint8_t *start = put_bits_ptr(&s->pb);
1356  uint8_t *end = s->pb.buf_end;
1357  int size = end - start;
1358  int pb_size = (((intptr_t)start + size / 3) & (~3)) - (intptr_t)start;
1359  int tex_size = (size - 2 * pb_size) & (~3);
1360 
1361  set_put_bits_buffer_size(&s->pb, pb_size);
1362  init_put_bits(&s->tex_pb, start + pb_size, tex_size);
1363  init_put_bits(&s->pb2, start + pb_size + tex_size, pb_size);
1364 }
1365 
1367 {
1368  const int pb2_len = put_bits_count(&s->pb2);
1369  const int tex_pb_len = put_bits_count(&s->tex_pb);
1370  const int bits = put_bits_count(&s->pb);
1371 
1372  if (s->c.pict_type == AV_PICTURE_TYPE_I) {
1373  put_bits(&s->pb, 19, DC_MARKER);
1374  s->misc_bits += 19 + pb2_len + bits - s->last_bits;
1375  s->i_tex_bits += tex_pb_len;
1376  } else {
1377  put_bits(&s->pb, 17, MOTION_MARKER);
1378  s->misc_bits += 17 + pb2_len;
1379  s->mv_bits += bits - s->last_bits;
1380  s->p_tex_bits += tex_pb_len;
1381  }
1382 
1383  flush_put_bits(&s->pb2);
1384  flush_put_bits(&s->tex_pb);
1385 
1386  set_put_bits_buffer_size(&s->pb, s->pb2.buf_end - s->pb.buf);
1387  ff_copy_bits(&s->pb, s->pb2.buf, pb2_len);
1388  ff_copy_bits(&s->pb, s->tex_pb.buf, tex_pb_len);
1389  s->last_bits = put_bits_count(&s->pb);
1390 }
1391 
1393 {
1394  int mb_num_bits = av_log2(s->c.mb_num - 1) + 1;
1395 
1397  put_bits(&s->pb, 1, 1);
1398 
1399  put_bits(&s->pb, mb_num_bits, s->c.mb_x + s->c.mb_y * s->c.mb_width);
1400  put_bits(&s->pb, 5 /* quant_precision */, s->c.qscale);
1401  put_bits(&s->pb, 1, 0); /* no HEC */
1402 }
1403 
1404 #define OFFSET(x) offsetof(MPVEncContext, c.x)
1405 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
1406 static const AVOption options[] = {
1407  { "data_partitioning", "Use data partitioning.", OFFSET(data_partitioning), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE },
1408  { "alternate_scan", "Enable alternate scantable.", OFFSET(alternate_scan), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE },
1409  { "mpeg_quant", "Use MPEG quantizers instead of H.263",
1410  OFFSET(mpeg_quant), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 1, VE },
1415  { NULL },
1416 };
1417 
1418 static const AVClass mpeg4enc_class = {
1419  .class_name = "MPEG4 encoder",
1420  .item_name = av_default_item_name,
1421  .option = options,
1422  .version = LIBAVUTIL_VERSION_INT,
1423 };
1424 
1426  .p.name = "mpeg4",
1427  CODEC_LONG_NAME("MPEG-4 part 2"),
1428  .p.type = AVMEDIA_TYPE_VIDEO,
1429  .p.id = AV_CODEC_ID_MPEG4,
1430  .priv_data_size = sizeof(Mpeg4EncContext),
1431  .init = encode_init,
1433  .close = ff_mpv_encode_end,
1435  .color_ranges = AVCOL_RANGE_MPEG,
1436  .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY |
1439  .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
1440  .p.priv_class = &mpeg4enc_class,
1441 };
SIMPLE_VO_TYPE
#define SIMPLE_VO_TYPE
Definition: mpeg4videodefs.h:32
mpeg4_encode_init_static
static av_cold void mpeg4_encode_init_static(void)
Definition: mpeg4videoenc.c:1276
mpeg4_get_dc_length
static int mpeg4_get_dc_length(int level, int n)
Definition: mpeg4videoenc.c:294
MPVMainEncContext::fcode_tab
const uint8_t * fcode_tab
smallest fcode needed for each MV
Definition: mpegvideoenc.h:212
CODEC_PIXFMTS
#define CODEC_PIXFMTS(...)
Definition: codec_internal.h:386
FFUMOD
#define FFUMOD(a, b)
Definition: common.h:66
CANDIDATE_MB_TYPE_BIDIR
#define CANDIDATE_MB_TYPE_BIDIR
Definition: mpegvideoenc.h:271
MV_TYPE_16X16
#define MV_TYPE_16X16
1 vector for the whole mb
Definition: mpegvideo.h:192
FF_ASPECT_EXTENDED
#define FF_ASPECT_EXTENDED
Definition: h263.h:26
level
uint8_t level
Definition: svq3.c:205
MPVEncContext
Definition: mpegvideoenc.h:45
FF_CODEC_CAP_INIT_CLEANUP
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: codec_internal.h:42
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
opt.h
put_bits32
static void av_unused put_bits32(PutBitContext *s, uint32_t value)
Write exactly 32 bits into a bitstream.
Definition: put_bits.h:291
LIBAVCODEC_IDENT
#define LIBAVCODEC_IDENT
Definition: version.h:43
put_bytes_output
static int put_bytes_output(const PutBitContext *s)
Definition: put_bits.h:89
MAX_FCODE
#define MAX_FCODE
Definition: mpegvideoenc.h:258
thread.h
av_clip_uintp2
#define av_clip_uintp2
Definition: common.h:124
mpegvideoenc.h
int64_t
long long int64_t
Definition: coverity.c:34
mv
static const int8_t mv[256][2]
Definition: 4xm.c:81
mpeg4_encode_gop_header
static void mpeg4_encode_gop_header(MPVMainEncContext *const m)
Definition: mpeg4videoenc.c:902
MAX_RUN
#define MAX_RUN
Definition: rl.h:35
init_put_bits
static void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
Initialize the PutBitContext s.
Definition: put_bits.h:62
ff_qpeldsp_init
av_cold void ff_qpeldsp_init(QpelDSPContext *c)
Definition: qpeldsp.c:784
h263enc.h
ff_clean_h263_qscales
void ff_clean_h263_qscales(MPVEncContext *s)
MV_DIRECT
#define MV_DIRECT
bidirectional mode where the difference equals the MV of the last P/S/I-Frame (MPEG-4)
Definition: mpegvideo.h:190
AV_CODEC_ID_MPEG4
@ AV_CODEC_ID_MPEG4
Definition: codec_id.h:64
OFFSET
#define OFFSET(x)
Definition: mpeg4videoenc.c:1404
put_bits
static void put_bits(Jpeg2000EncoderContext *s, int val, int n)
put n times val bit
Definition: j2kenc.c:223
mpeg4_encode_block
static void mpeg4_encode_block(const MPVEncContext *const s, const int16_t *block, int n, int intra_dc, const uint8_t *scan_table, PutBitContext *dc_pb, PutBitContext *ac_pb)
Encode an 8x8 block.
Definition: mpeg4videoenc.c:306
AVFrame::pts
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:512
VOS_STARTCODE
#define VOS_STARTCODE
Definition: mpeg4videodefs.h:55
AVOption
AVOption.
Definition: opt.h:429
init_uni_dc_tab
static av_cold void init_uni_dc_tab(void)
Definition: mpeg4videoenc.c:1126
FFCodec
Definition: codec_internal.h:127
version.h
mpegvideo.h
Mpeg4EncContext::time_increment_bits
int time_increment_bits
number of bits to represent the fractional part of time
Definition: mpeg4videoenc.c:77
FF_LAMBDA_SHIFT
#define FF_LAMBDA_SHIFT
Definition: avutil.h:225
mpeg4_encode_mb
static void mpeg4_encode_mb(MPVEncContext *const s, int16_t block[][64], int motion_x, int motion_y)
Definition: mpeg4videoenc.c:501
ff_mpeg4_init_rl_intra
av_cold void ff_mpeg4_init_rl_intra(void)
Definition: mpeg4video.c:36
MPVMainEncContext::encode_picture_header
int(* encode_picture_header)(struct MPVMainEncContext *m)
Definition: mpegvideoenc.h:221
AVFrame::data
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:431
MV_DIR_BACKWARD
#define MV_DIR_BACKWARD
Definition: mpegvideo.h:189
av_malloc
#define av_malloc(s)
Definition: tableprint_vlc.h:31
AV_CODEC_FLAG_GLOBAL_HEADER
#define AV_CODEC_FLAG_GLOBAL_HEADER
Place global headers in extradata instead of every keyframe.
Definition: avcodec.h:318
uni_mpeg4_intra_rl_bits
static uint32_t uni_mpeg4_intra_rl_bits[64 *64 *2 *2]
Definition: mpeg4videoenc.c:55
AV_FRAME_FLAG_TOP_FIELD_FIRST
#define AV_FRAME_FLAG_TOP_FIELD_FIRST
A flag to mark frames where the top field is displayed first if the content is interlaced.
Definition: frame.h:638
FF_MPV_COMMON_MOTION_EST_OPTS
#define FF_MPV_COMMON_MOTION_EST_OPTS
Definition: mpegvideoenc.h:350
mpeg4videoenc.h
ff_mpv_encode_picture
int ff_mpv_encode_picture(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic_arg, int *got_packet)
Definition: mpegvideo_enc.c:1926
FF_MPV_COMMON_OPTS
#define FF_MPV_COMMON_OPTS
Definition: mpegvideoenc.h:309
ff_copy_bits
void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length)
Copy the content of src to the bitstream.
Definition: bitstream.c:49
uni_mpeg4_intra_rl_len
static uint8_t uni_mpeg4_intra_rl_len[64 *64 *2 *2]
Definition: mpeg4videoenc.c:56
ff_mpeg4_DCtab_chrom
const uint8_t ff_mpeg4_DCtab_chrom[13][2]
Definition: mpeg4data.h:40
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
mpeg4_get_block_length
static int mpeg4_get_block_length(MPVEncContext *const s, const int16_t *block, int n, int intra_dc, const uint8_t *scan_table)
Definition: mpeg4videoenc.c:367
mainctx_to_mpeg4
static Mpeg4EncContext * mainctx_to_mpeg4(MPVMainEncContext *m)
Definition: mpeg4videoenc.c:80
ff_h263_pred_motion
int16_t * ff_h263_pred_motion(MpegEncContext *s, int block, int dir, int *px, int *py)
Definition: h263.c:179
VOP_STARTCODE
#define VOP_STARTCODE
Definition: mpeg4videodefs.h:59
RLTable
RLTable.
Definition: rl.h:39
ff_mpeg4_get_video_packet_prefix_length
int ff_mpeg4_get_video_packet_prefix_length(MpegEncContext *s)
Definition: mpeg4video.c:42
mpeg4_encode_visual_object_header
static void mpeg4_encode_visual_object_header(MPVMainEncContext *const m)
Definition: mpeg4videoenc.c:932
uni_mpeg4_inter_rl_bits
static uint32_t uni_mpeg4_inter_rl_bits[64 *64 *2 *2]
Definition: mpeg4videoenc.c:57
AVCodecContext::flags
int flags
AV_CODEC_FLAG_*.
Definition: avcodec.h:488
uni_DCtab_chrom_len
static uint8_t uni_DCtab_chrom_len[512]
Definition: mpeg4videoenc.c:49
FFUDIV
#define FFUDIV(a, b)
Definition: common.h:65
FF_MPV_FLAG_CBP_RD
#define FF_MPV_FLAG_CBP_RD
Definition: mpegvideoenc.h:284
AV_CODEC_FLAG2_NO_OUTPUT
#define AV_CODEC_FLAG2_NO_OUTPUT
Skip bitstream encoding.
Definition: avcodec.h:341
ff_mpeg4_init_partitions
void ff_mpeg4_init_partitions(MPVEncContext *const s)
Definition: mpeg4videoenc.c:1353
FF_CODEC_ENCODE_CB
#define FF_CODEC_ENCODE_CB(func)
Definition: codec_internal.h:353
av_reduce
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction.
Definition: rational.c:35
AVRational::num
int num
Numerator.
Definition: rational.h:59
dquant_code
static const int dquant_code[5]
Definition: mpeg4videoenc.c:499
CANDIDATE_MB_TYPE_DIRECT
#define CANDIDATE_MB_TYPE_DIRECT
Definition: mpegvideoenc.h:268
RLTable::n
int n
number of entries of table_vlc minus 1
Definition: rl.h:40
ff_thread_once
static int ff_thread_once(char *control, void(*routine)(void))
Definition: thread.h:205
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:209
av_cold
#define av_cold
Definition: attributes.h:90
MAX_MV
#define MAX_MV
Definition: motion_est.h:37
MPVPicture::shared
int shared
Definition: mpegpicture.h:87
AV_PROFILE_UNKNOWN
#define AV_PROFILE_UNKNOWN
Definition: defs.h:65
AVCodecContext::extradata_size
int extradata_size
Definition: avcodec.h:518
RLTable::max_level
int8_t * max_level[2]
encoding & decoding
Definition: rl.h:46
s
#define s(width, name)
Definition: cbs_vp9.c:198
mpeg4_encode_blocks
static void mpeg4_encode_blocks(MPVEncContext *const s, const int16_t block[6][64], const int intra_dc[6], const uint8_t *const *scan_table, PutBitContext *dc_pb, PutBitContext *ac_pb)
Definition: mpeg4videoenc.c:421
uni_mpeg4_inter_rl_len
static uint8_t uni_mpeg4_inter_rl_len[64 *64 *2 *2]
Definition: mpeg4videoenc.c:58
MPVMainEncContext::reordered_input_picture
MPVPicture * reordered_input_picture[MPVENC_MAX_B_FRAMES+1]
next pictures in coded order
Definition: mpegvideoenc.h:183
ff_mpeg4_stuffing
void ff_mpeg4_stuffing(PutBitContext *pbc)
add MPEG-4 stuffing bits (01...1)
Definition: mpeg4videoenc.c:884
get_rl_index
static int get_rl_index(const RLTable *rl, int last, int run, int level)
Definition: rl.h:101
skip_put_bits
static void skip_put_bits(PutBitContext *s, int n)
Skip the given number of bits.
Definition: put_bits.h:414
AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
#define AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
This encoder can reorder user opaque values from input AVFrames and return them with corresponding ou...
Definition: codec.h:144
ff_mpeg4_rl_intra
RLTable ff_mpeg4_rl_intra
Definition: mpeg4data.h:108
uni_DCtab_chrom_bits
static uint16_t uni_DCtab_chrom_bits[512]
Definition: mpeg4videoenc.c:51
bits
uint8_t bits
Definition: vp3data.h:128
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:40
UNI_MPEG4_ENC_INDEX
#define UNI_MPEG4_ENC_INDEX(last, run, level)
Definition: mpeg4videoenc.c:62
uni_DCtab_lum_bits
static uint16_t uni_DCtab_lum_bits[512]
Definition: mpeg4videoenc.c:50
ff_write_quant_matrix
void ff_write_quant_matrix(PutBitContext *pb, uint16_t *matrix)
Definition: mpegvideo_enc.c:228
DC_MARKER
#define DC_MARKER
Definition: mpeg4videodefs.h:53
MPVMainEncContext::max_b_frames
int max_b_frames
max number of B-frames
Definition: mpegvideoenc.h:177
ff_put_string
void ff_put_string(PutBitContext *pb, const char *string, int terminate_string)
Put the string string in the bitstream.
Definition: bitstream.c:39
ff_clean_mpeg4_qscales
void ff_clean_mpeg4_qscales(MPVEncContext *const s)
modify mb_type & qscale so that encoding is actually possible in MPEG-4
Definition: mpeg4videoenc.c:238
AV_PIX_FMT_YUV420P
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:73
mpeg4_encode_vol_header
static void mpeg4_encode_vol_header(Mpeg4EncContext *const m4, int vo_number, int vol_number)
Definition: mpeg4videoenc.c:975
init_uni_mpeg4_rl_tab
static av_cold void init_uni_mpeg4_rl_tab(RLTable *rl, uint32_t *bits_tab, uint8_t *len_tab)
Definition: mpeg4videoenc.c:1181
PutBitContext
Definition: put_bits.h:50
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:326
FFABS
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
Definition: common.h:74
if
if(ret)
Definition: filter_design.txt:179
ff_mpeg4_DCtab_lum
const uint8_t ff_mpeg4_DCtab_lum[13][2]
Definition: mpeg4data.h:34
get_block_rate
static int get_block_rate(MPVEncContext *const s, int16_t block[64], int block_last_index, const uint8_t scantable[64])
Return the number of bits that encoding the 8x8 block in block would need.
Definition: mpeg4videoenc.c:89
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AV_ONCE_INIT
#define AV_ONCE_INIT
Definition: thread.h:203
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:75
NULL
#define NULL
Definition: coverity.c:32
FF_COMPLIANCE_VERY_STRICT
#define FF_COMPLIANCE_VERY_STRICT
Strictly conform to an older more strict version of the spec or reference software.
Definition: defs.h:58
run
uint8_t run
Definition: svq3.c:204
RLTable::table_vlc
const uint16_t(* table_vlc)[2]
Definition: rl.h:42
ff_mpeg4_pred_dc
static int ff_mpeg4_pred_dc(MpegEncContext *s, int n, int *dir_ptr)
Predict the dc.
Definition: mpeg4video.h:44
AV_LEVEL_UNKNOWN
#define AV_LEVEL_UNKNOWN
Definition: defs.h:198
ROUNDED_DIV
#define ROUNDED_DIV(a, b)
Definition: common.h:58
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:239
AV_PICTURE_TYPE_I
@ AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:279
profiles.h
options
Definition: swscale.c:43
AV_CODEC_FLAG_AC_PRED
#define AV_CODEC_FLAG_AC_PRED
H.263 advanced intra coding / MPEG-4 AC prediction.
Definition: avcodec.h:327
Mpeg4EncContext
Definition: mpeg4videoenc.c:74
MOTION_MARKER
#define MOTION_MARKER
Definition: mpeg4videodefs.h:52
ff_mpv_encode_end
av_cold int ff_mpv_encode_end(AVCodecContext *avctx)
Definition: mpegvideo_enc.c:1104
abs
#define abs(x)
Definition: cuda_runtime.h:35
FASTDIV
#define FASTDIV(a, b)
Definition: mathops.h:212
ff_mpeg4_encode_video_packet_header
void ff_mpeg4_encode_video_packet_header(MPVEncContext *const s)
Definition: mpeg4videoenc.c:1392
get_p_cbp
static int get_p_cbp(MPVEncContext *const s, int16_t block[6][64], int motion_x, int motion_y)
Definition: h263enc.h:45
mpeg4_encode_picture_header
static int mpeg4_encode_picture_header(MPVMainEncContext *const m)
Definition: mpeg4videoenc.c:1066
MPVMainEncContext
Definition: mpegvideoenc.h:172
VISUAL_OBJ_STARTCODE
#define VISUAL_OBJ_STARTCODE
Definition: mpeg4videodefs.h:58
AVOnce
#define AVOnce
Definition: thread.h:202
index
int index
Definition: gxfenc.c:90
MV_TYPE_8X8
#define MV_TYPE_8X8
4 vectors (H.263, MPEG-4 4MV)
Definition: mpegvideo.h:193
set_put_bits_buffer_size
static void set_put_bits_buffer_size(PutBitContext *s, int size)
Change the end of the buffer.
Definition: put_bits.h:426
ff_set_mpeg4_time
void ff_set_mpeg4_time(MPVEncContext *const s)
Definition: mpeg4videoenc.c:892
ADV_SIMPLE_VO_TYPE
#define ADV_SIMPLE_VO_TYPE
Definition: mpeg4videodefs.h:40
MAX_LEVEL
#define MAX_LEVEL
Definition: rl.h:36
AVCodecContext::time_base
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
Definition: avcodec.h:538
AVFrame::pict_type
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:502
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:368
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
ff_h263_rl_inter
RLTable ff_h263_rl_inter
Definition: h263data.c:159
ff_mpeg4_y_dc_scale_table
const uint8_t ff_mpeg4_y_dc_scale_table[32]
Definition: mpeg4data.h:356
codec_internal.h
Mpeg4EncContext::m
MPVMainEncContext m
Definition: mpeg4videoenc.c:75
ff_h263_cbpy_tab
const uint8_t ff_h263_cbpy_tab[16][2]
Definition: h263data.c:82
size
int size
Definition: twinvq_data.h:10344
diff
static av_always_inline int diff(const struct color_info *a, const struct color_info *b, const int trans_thresh)
Definition: vf_paletteuse.c:166
fcode_tab
static uint8_t fcode_tab[MAX_MV *2+1]
Minimal fcode that a motion vector component would need.
Definition: mpeg4videoenc.c:43
AV_CODEC_CAP_SLICE_THREADS
#define AV_CODEC_CAP_SLICE_THREADS
Codec supports slice-based (or partition-based) multithreading.
Definition: codec.h:99
offset
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf offset
Definition: writing_filters.txt:86
attributes.h
MV_TYPE_FIELD
#define MV_TYPE_FIELD
2 vectors, one per field
Definition: mpegvideo.h:195
ff_h263_inter_MCBPC_bits
const uint8_t ff_h263_inter_MCBPC_bits[28]
Definition: h263data.c:47
UNI_AC_ENC_INDEX
#define UNI_AC_ENC_INDEX(run, level)
Definition: mpegvideoenc.h:259
FF_MPEG4_PROFILE_OPTS
#define FF_MPEG4_PROFILE_OPTS
Definition: profiles.h:42
get_bits_diff
static int get_bits_diff(MPVEncContext *s)
Definition: mpegvideoenc.h:382
VE
#define VE
Definition: mpeg4videoenc.c:1405
av_assert2
#define av_assert2(cond)
assert() equivalent, that does lie in speed critical code.
Definition: avassert.h:67
RECT_SHAPE
#define RECT_SHAPE
Definition: mpeg4videodefs.h:27
log.h
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
code
and forward the test the status of outputs and forward it to the corresponding return FFERROR_NOT_READY If the filters stores internally one or a few frame for some it can consider them to be part of the FIFO and delay acknowledging a status change accordingly Example code
Definition: filter_design.txt:178
put_bits_count
static int put_bits_count(PutBitContext *s)
Definition: put_bits.h:80
AVCodecContext::extradata
uint8_t * extradata
Out-of-band global headers that may be used by some codecs.
Definition: avcodec.h:517
RLTable::max_run
int8_t * max_run[2]
encoding & decoding
Definition: rl.h:47
uni_DCtab_lum_len
static uint8_t uni_DCtab_lum_len[512]
Definition: mpeg4videoenc.c:48
restore_ac_coeffs
static void restore_ac_coeffs(MPVEncContext *const s, int16_t block[6][64], const int dir[6], const uint8_t *st[6], const int zigzag_last_index[6])
Restore the ac coefficients in block that have been changed by decide_ac_pred().
Definition: mpeg4videoenc.c:124
mpeg4enc_class
static const AVClass mpeg4enc_class
Definition: mpeg4videoenc.c:1418
options
static const AVOption options[]
Definition: mpeg4videoenc.c:1406
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
ff_mpeg4_encoder
const FFCodec ff_mpeg4_encoder
Definition: mpeg4videoenc.c:1425
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:179
ff_h263_aspect_to_info
av_const int ff_h263_aspect_to_info(AVRational aspect)
len
int len
Definition: vorbis_enc_data.h:426
AVCodecContext::height
int height
Definition: avcodec.h:595
AVCOL_RANGE_MPEG
@ AVCOL_RANGE_MPEG
Narrow or limited range content.
Definition: pixfmt.h:733
AV_CODEC_FLAG_CLOSED_GOP
#define AV_CODEC_FLAG_CLOSED_GOP
Definition: avcodec.h:332
mpeg4videodefs.h
ret
ret
Definition: filter_design.txt:187
pred
static const float pred[4]
Definition: siprdata.h:259
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:80
encode_init
static av_cold int encode_init(AVCodecContext *avctx)
Definition: mpeg4videoenc.c:1291
ff_mpeg4_init_direct_mv
void ff_mpeg4_init_direct_mv(MpegEncContext *s)
Definition: mpeg4video.c:83
MPVPicture::f
struct AVFrame * f
Definition: mpegpicture.h:59
ff_h263_intra_MCBPC_bits
const uint8_t ff_h263_intra_MCBPC_bits[9]
Definition: h263data.c:33
AVCodecContext
main external API structure.
Definition: avcodec.h:431
put_bits_ptr
static uint8_t * put_bits_ptr(PutBitContext *s)
Return the pointer to the byte where the bitstream writer will put the next bit.
Definition: put_bits.h:392
ff_h263_intra_MCBPC_code
const uint8_t ff_h263_intra_MCBPC_code[9]
Definition: h263data.c:32
AV_PICTURE_TYPE_B
@ AV_PICTURE_TYPE_B
Bi-dir predicted.
Definition: avutil.h:281
mpeg4video.h
AVRational::den
int den
Denominator.
Definition: rational.h:60
mpeg4_encode_dc
static void mpeg4_encode_dc(PutBitContext *s, int level, int n)
Encode the dc value.
Definition: mpeg4videoenc.c:281
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition: opt.h:259
AV_CODEC_CAP_DELAY
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: codec.h:76
FF_MPV_COMMON_BFRAME_OPTS
#define FF_MPV_COMMON_BFRAME_OPTS
Definition: mpegvideoenc.h:345
USER_DATA_STARTCODE
#define USER_DATA_STARTCODE
Definition: mpeg4videodefs.h:56
ff_h263_inter_MCBPC_code
const uint8_t ff_h263_inter_MCBPC_code[28]
Definition: h263data.c:38
AV_PICTURE_TYPE_P
@ AV_PICTURE_TYPE_P
Predicted.
Definition: avutil.h:280
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
INPLACE_OFFSET
#define INPLACE_OFFSET
Definition: mpegvideoenc.h:260
mem.h
AV_CODEC_FLAG_BITEXACT
#define AV_CODEC_FLAG_BITEXACT
Use only bitexact stuff (except (I)DCT).
Definition: avcodec.h:322
ff_mpv_encode_init
av_cold int ff_mpv_encode_init(AVCodecContext *avctx)
Definition: mpegvideo_enc.c:544
flush_put_bits
static void flush_put_bits(PutBitContext *s)
Pad the end of the output stream with zeros.
Definition: put_bits.h:143
ff_mpeg4_merge_partitions
void ff_mpeg4_merge_partitions(MPVEncContext *const s)
Definition: mpeg4videoenc.c:1366
ff_mpeg4_c_dc_scale_table
const uint8_t ff_mpeg4_c_dc_scale_table[32]
Definition: mpeg4data.h:360
decide_ac_pred
static int decide_ac_pred(MPVEncContext *const s, int16_t block[6][64], const int dir[6], const uint8_t *st[6], int zigzag_last_index[6])
Return the optimal value (0 or 1) for the ac_pred element for the given MB in MPEG-4.
Definition: mpeg4videoenc.c:155
scale
static void scale(int *out, const int *in, const int w, const int h, const int shift)
Definition: intra.c:291
MV_DIR_FORWARD
#define MV_DIR_FORWARD
Definition: mpegvideo.h:188
slice_to_mainenc
static const MPVMainEncContext * slice_to_mainenc(const MPVEncContext *s)
Definition: mpegvideoenc.h:247
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:458
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
Definition: opt.h:327
mpeg4videodata.h
GOP_STARTCODE
#define GOP_STARTCODE
Definition: mpeg4videodefs.h:57
ff_h263_encode_motion_vector
static void ff_h263_encode_motion_vector(MPVEncContext *s, int x, int y, int f_code)
Definition: h263enc.h:38
AVCodecContext::width
int width
picture width / height.
Definition: avcodec.h:595
block
The exact code depends on how similar the blocks are and how related they are to the block
Definition: filter_design.txt:207
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
get_b_cbp
static int get_b_cbp(MPVEncContext *const s, int16_t block[6][64], int motion_x, int motion_y, int mb_type)
Definition: mpeg4videoenc.c:457
MPVPicture
MPVPicture.
Definition: mpegpicture.h:58
av_log2
int av_log2(unsigned v)
Definition: intmath.c:26
MPVMainEncContext::s
MPVEncContext s
The main slicecontext.
Definition: mpegvideoenc.h:173
AV_CODEC_FLAG_PASS1
#define AV_CODEC_FLAG_PASS1
Use internal 2pass ratecontrol in first pass mode.
Definition: avcodec.h:290
h263.h