FFmpeg
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
mpeg12enc.c
Go to the documentation of this file.
1 /*
2  * MPEG-1/2 encoder
3  * Copyright (c) 2000,2001 Fabrice Bellard
4  * Copyright (c) 2002-2004 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 /**
24  * @file
25  * MPEG-1/2 encoder
26  */
27 
28 #include <assert.h>
29 #include <stdint.h>
30 
31 #include "config.h"
32 #include "config_components.h"
33 #include "libavutil/attributes.h"
34 #include "libavutil/avassert.h"
35 #include "libavutil/log.h"
36 #include "libavutil/opt.h"
37 #include "libavutil/thread.h"
38 #include "libavutil/timecode.h"
39 #include "libavutil/stereo3d.h"
40 
41 #include "avcodec.h"
42 #include "codec_internal.h"
43 #include "mathops.h"
44 #include "mpeg12.h"
45 #include "mpeg12data.h"
46 #include "mpeg12enc.h"
47 #include "mpeg12vlc.h"
48 #include "mpegutils.h"
49 #include "mpegvideo.h"
50 #include "mpegvideoenc.h"
51 #include "profiles.h"
52 #include "rl.h"
53 
54 #if CONFIG_MPEG1VIDEO_ENCODER || CONFIG_MPEG2VIDEO_ENCODER
55 static const uint8_t svcd_scan_offset_placeholder[] = {
56  0x10, 0x0E, 0x00, 0x80, 0x81, 0x00, 0x80,
57  0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
58 };
59 
60 static uint8_t mv_penalty[MAX_FCODE + 1][MAX_DMV * 2 + 1];
61 static uint8_t fcode_tab[MAX_MV * 2 + 1];
62 
63 static uint8_t uni_mpeg1_ac_vlc_len[64 * 64 * 2];
64 static uint8_t uni_mpeg2_ac_vlc_len[64 * 64 * 2];
65 
66 static uint8_t mpeg12_max_level[MAX_LEVEL + 1];
67 static uint8_t mpeg12_index_run[MAX_RUN + 1];
68 
69 /* simple include everything table for dc, first byte is bits
70  * number next 3 are code */
71 static uint32_t mpeg1_lum_dc_uni[512];
72 static uint32_t mpeg1_chr_dc_uni[512];
73 
74 typedef struct MPEG12EncContext {
75  MPVMainEncContext mpeg;
76  AVRational frame_rate_ext;
77  unsigned frame_rate_index;
78 
79  int gop_picture_number; ///< index of the first picture of a GOP based on fake_pic_num
80 
81  int64_t timecode_frame_start; ///< GOP timecode frame start number, in non drop frame format
82  AVTimecode tc; ///< timecode context
83  char *tc_opt_str; ///< timecode option string
84  int drop_frame_timecode; ///< timecode is in drop frame format.
85  int scan_offset; ///< reserve space for SVCD scan offset user data.
86 
87  int a53_cc;
88  int seq_disp_ext;
89  int video_format;
90 #define VIDEO_FORMAT_COMPONENT 0
91 #define VIDEO_FORMAT_PAL 1
92 #define VIDEO_FORMAT_NTSC 2
93 #define VIDEO_FORMAT_SECAM 3
94 #define VIDEO_FORMAT_MAC 4
95 #define VIDEO_FORMAT_UNSPECIFIED 5
96 } MPEG12EncContext;
97 
98 #define A53_MAX_CC_COUNT 0x1f
99 #endif /* CONFIG_MPEG1VIDEO_ENCODER || CONFIG_MPEG2VIDEO_ENCODER */
100 
101 av_cold void ff_mpeg1_init_uni_ac_vlc(const int8_t max_level[],
102  const uint8_t index_run[],
103  const uint16_t table_vlc[][2],
104  uint8_t uni_ac_vlc_len[])
105 {
106  int i;
107 
108  for (i = 0; i < 128; i++) {
109  int level = i - 64;
110  int run;
111  if (!level)
112  continue;
113  for (run = 0; run < 64; run++) {
114  int len, code;
115  int alevel = FFABS(level);
116 
117  if (alevel > max_level[run])
118  code = 111; /* rl->n */
119  else
120  code = index_run[run] + alevel - 1;
121 
122  if (code < 111) { /* rl->n */
123  /* length of VLC and sign */
124  len = table_vlc[code][1] + 1;
125  } else {
126  len = table_vlc[MPEG12_RL_NB_ELEMS][1] + 6;
127 
128  if (alevel < 128)
129  len += 8;
130  else
131  len += 16;
132  }
133 
134  uni_ac_vlc_len[UNI_AC_ENC_INDEX(run, i)] = len;
135  }
136  }
137 }
138 
139 #if CONFIG_MPEG1VIDEO_ENCODER || CONFIG_MPEG2VIDEO_ENCODER
140 static void put_header(MPVEncContext *const s, uint32_t header)
141 {
142  align_put_bits(&s->pb);
143  put_bits32(&s->pb, header);
144 }
145 
146 /* put sequence header if needed */
147 static void mpeg1_encode_sequence_header(MPEG12EncContext *mpeg12)
148 {
149  MPVEncContext *const s = &mpeg12->mpeg.s;
150  unsigned int vbv_buffer_size, fps, v;
151  int constraint_parameter_flag;
152  AVRational framerate = ff_mpeg12_frame_rate_tab[mpeg12->frame_rate_index];
153  uint64_t time_code;
154  int64_t best_aspect_error = INT64_MAX;
155  AVRational aspect_ratio = s->c.avctx->sample_aspect_ratio;
156  int aspect_ratio_info;
157 
158  if (!(s->c.cur_pic.ptr->f->flags & AV_FRAME_FLAG_KEY))
159  return;
160 
161  if (aspect_ratio.num == 0 || aspect_ratio.den == 0)
162  aspect_ratio = (AVRational){1,1}; // pixel aspect 1.1 (VGA)
163 
164  /* MPEG-1 header repeated every GOP */
166 
167  put_sbits(&s->pb, 12, s->c.width & 0xFFF);
168  put_sbits(&s->pb, 12, s->c.height & 0xFFF);
169 
170  for (int i = 1; i < 15; i++) {
171  int64_t error = aspect_ratio.num * (1LL<<32) / aspect_ratio.den;
172  if (s->c.codec_id == AV_CODEC_ID_MPEG1VIDEO || i <= 1)
173  error -= (1LL<<32) / ff_mpeg1_aspect[i];
174  else
175  error -= (1LL<<32)*ff_mpeg2_aspect[i].num * s->c.height / s->c.width / ff_mpeg2_aspect[i].den;
176 
177  error = FFABS(error);
178 
179  if (error - 2 <= best_aspect_error) {
180  best_aspect_error = error;
181  aspect_ratio_info = i;
182  }
183  }
184 
185  put_bits(&s->pb, 4, aspect_ratio_info);
186  put_bits(&s->pb, 4, mpeg12->frame_rate_index);
187 
188  if (s->c.avctx->rc_max_rate) {
189  v = (s->c.avctx->rc_max_rate + 399) / 400;
190  if (v > 0x3ffff && s->c.codec_id == AV_CODEC_ID_MPEG1VIDEO)
191  v = 0x3ffff;
192  } else {
193  v = 0x3FFFF;
194  }
195 
196  if (s->c.avctx->rc_buffer_size)
197  vbv_buffer_size = s->c.avctx->rc_buffer_size;
198  else
199  /* VBV calculation: Scaled so that a VCD has the proper
200  * VBV size of 40 kilobytes */
201  vbv_buffer_size = av_rescale_rnd(mpeg12->mpeg.bit_rate, 20, 1151929 / 2, AV_ROUND_ZERO) * 8 * 1024;
202  vbv_buffer_size = (vbv_buffer_size + 16383) / 16384;
203 
204  put_sbits(&s->pb, 18, v);
205  put_bits(&s->pb, 1, 1); // marker
206  put_sbits(&s->pb, 10, vbv_buffer_size);
207 
208  constraint_parameter_flag =
209  s->c.width <= 768 &&
210  s->c.height <= 576 &&
211  s->c.mb_width * s->c.mb_height <= 396 &&
212  s->c.mb_width * s->c.mb_height * framerate.num <= 396 * 25 * framerate.den &&
213  framerate.num <= framerate.den * 30 &&
214  s->c.avctx->me_range &&
215  s->c.avctx->me_range < 128 &&
216  vbv_buffer_size <= 20 &&
217  v <= 1856000 / 400 &&
218  s->c.codec_id == AV_CODEC_ID_MPEG1VIDEO;
219 
220  put_bits(&s->pb, 1, constraint_parameter_flag);
221 
222  ff_write_quant_matrix(&s->pb, s->c.avctx->intra_matrix);
223  ff_write_quant_matrix(&s->pb, s->c.avctx->inter_matrix);
224 
225  if (s->c.codec_id == AV_CODEC_ID_MPEG2VIDEO) {
226  const AVFrameSideData *side_data;
227  int width = s->c.width;
228  int height = s->c.height;
229  int use_seq_disp_ext;
230 
232  put_bits(&s->pb, 4, 1); // seq ext
233 
234  put_bits(&s->pb, 1, s->c.avctx->profile == AV_PROFILE_MPEG2_422); // escx 1 for 4:2:2 profile
235 
236  put_bits(&s->pb, 3, s->c.avctx->profile); // profile
237  put_bits(&s->pb, 4, s->c.avctx->level); // level
238 
239  put_bits(&s->pb, 1, s->c.progressive_sequence);
240  put_bits(&s->pb, 2, s->c.chroma_format);
241  put_bits(&s->pb, 2, s->c.width >> 12);
242  put_bits(&s->pb, 2, s->c.height >> 12);
243  put_bits(&s->pb, 12, v >> 18); // bitrate ext
244  put_bits(&s->pb, 1, 1); // marker
245  put_bits(&s->pb, 8, vbv_buffer_size >> 10); // vbv buffer ext
246  put_bits(&s->pb, 1, s->c.low_delay);
247  put_bits(&s->pb, 2, mpeg12->frame_rate_ext.num-1); // frame_rate_ext_n
248  put_bits(&s->pb, 5, mpeg12->frame_rate_ext.den-1); // frame_rate_ext_d
249 
250  side_data = av_frame_get_side_data(s->c.cur_pic.ptr->f, AV_FRAME_DATA_PANSCAN);
251  if (side_data) {
252  const AVPanScan *pan_scan = (AVPanScan *)side_data->data;
253  if (pan_scan->width && pan_scan->height) {
254  width = pan_scan->width >> 4;
255  height = pan_scan->height >> 4;
256  }
257  }
258 
259  use_seq_disp_ext = (width != s->c.width ||
260  height != s->c.height ||
261  s->c.avctx->color_primaries != AVCOL_PRI_UNSPECIFIED ||
262  s->c.avctx->color_trc != AVCOL_TRC_UNSPECIFIED ||
263  s->c.avctx->colorspace != AVCOL_SPC_UNSPECIFIED ||
264  mpeg12->video_format != VIDEO_FORMAT_UNSPECIFIED);
265 
266  if (mpeg12->seq_disp_ext == 1 ||
267  (mpeg12->seq_disp_ext == -1 && use_seq_disp_ext)) {
269  put_bits(&s->pb, 4, 2); // sequence display extension
270  put_bits(&s->pb, 3, mpeg12->video_format); // video_format
271  put_bits(&s->pb, 1, 1); // colour_description
272  put_bits(&s->pb, 8, s->c.avctx->color_primaries); // colour_primaries
273  put_bits(&s->pb, 8, s->c.avctx->color_trc); // transfer_characteristics
274  put_bits(&s->pb, 8, s->c.avctx->colorspace); // matrix_coefficients
275  put_bits(&s->pb, 14, width); // display_horizontal_size
276  put_bits(&s->pb, 1, 1); // marker_bit
277  put_bits(&s->pb, 14, height); // display_vertical_size
278  put_bits(&s->pb, 3, 0); // remaining 3 bits are zero padding
279  }
280  }
281 
283  put_bits(&s->pb, 1, mpeg12->drop_frame_timecode); // drop frame flag
284  /* time code: we must convert from the real frame rate to a
285  * fake MPEG frame rate in case of low frame rate */
286  fps = (framerate.num + framerate.den / 2) / framerate.den;
287  time_code = s->c.cur_pic.ptr->coded_picture_number +
288  mpeg12->timecode_frame_start;
289 
290  mpeg12->gop_picture_number = s->c.cur_pic.ptr->coded_picture_number;
291 
292  av_assert0(mpeg12->drop_frame_timecode == !!(mpeg12->tc.flags & AV_TIMECODE_FLAG_DROPFRAME));
293  if (mpeg12->drop_frame_timecode)
294  time_code = av_timecode_adjust_ntsc_framenum2(time_code, fps);
295 
296  put_bits(&s->pb, 5, (uint32_t)((time_code / (fps * 3600)) % 24));
297  put_bits(&s->pb, 6, (uint32_t)((time_code / (fps * 60)) % 60));
298  put_bits(&s->pb, 1, 1);
299  put_bits(&s->pb, 6, (uint32_t)((time_code / fps) % 60));
300  put_bits(&s->pb, 6, (uint32_t)((time_code % fps)));
301  put_bits(&s->pb, 1, !!(s->c.avctx->flags & AV_CODEC_FLAG_CLOSED_GOP) ||
302  mpeg12->mpeg.intra_only || !mpeg12->gop_picture_number);
303  put_bits(&s->pb, 1, 0); // broken link
304 }
305 
306 static inline void encode_mb_skip_run(MPVEncContext *const s, int run)
307 {
308  while (run >= 33) {
309  put_bits(&s->pb, 11, 0x008);
310  run -= 33;
311  }
314 }
315 
316 static av_always_inline void put_qscale(MPVEncContext *const s)
317 {
318  put_bits(&s->pb, 5, s->c.qscale);
319 }
320 
322 {
323  if (s->c.codec_id == AV_CODEC_ID_MPEG2VIDEO && s->c.height > 2800) {
324  put_header(s, SLICE_MIN_START_CODE + (s->c.mb_y & 127));
325  /* slice_vertical_position_extension */
326  put_bits(&s->pb, 3, s->c.mb_y >> 7);
327  } else {
329  put_header(s, SLICE_MIN_START_CODE + s->c.mb_y);
330  }
331  put_qscale(s);
332  /* slice extra information */
333  put_bits(&s->pb, 1, 0);
334 }
335 
336 static int mpeg1_encode_picture_header(MPVMainEncContext *const m)
337 {
338  MPEG12EncContext *const mpeg12 = (MPEG12EncContext*)m;
339  MPVEncContext *const s = &m->s;
340  const AVFrameSideData *side_data;
341 
342  mpeg1_encode_sequence_header(mpeg12);
343 
344  /* MPEG-1 picture header */
346  /* temporal reference */
347 
348  // RAL: s->c.picture_number instead of s->fake_picture_number
349  put_bits(&s->pb, 10,
350  (s->c.picture_number - mpeg12->gop_picture_number) & 0x3ff);
351  put_bits(&s->pb, 3, s->c.pict_type);
352 
353  m->vbv_delay_pos = put_bytes_count(&s->pb, 0);
354  put_bits(&s->pb, 16, 0xFFFF); /* vbv_delay */
355 
356  // RAL: Forward f_code also needed for B-frames
357  if (s->c.pict_type == AV_PICTURE_TYPE_P ||
358  s->c.pict_type == AV_PICTURE_TYPE_B) {
359  put_bits(&s->pb, 1, 0); /* half pel coordinates */
360  if (s->c.codec_id == AV_CODEC_ID_MPEG1VIDEO)
361  put_bits(&s->pb, 3, s->c.f_code); /* forward_f_code */
362  else
363  put_bits(&s->pb, 3, 7); /* forward_f_code */
364  }
365 
366  // RAL: Backward f_code necessary for B-frames
367  if (s->c.pict_type == AV_PICTURE_TYPE_B) {
368  put_bits(&s->pb, 1, 0); /* half pel coordinates */
369  if (s->c.codec_id == AV_CODEC_ID_MPEG1VIDEO)
370  put_bits(&s->pb, 3, s->c.b_code); /* backward_f_code */
371  else
372  put_bits(&s->pb, 3, 7); /* backward_f_code */
373  }
374 
375  put_bits(&s->pb, 1, 0); /* extra bit picture */
376 
377  s->c.frame_pred_frame_dct = 1;
378  if (s->c.codec_id == AV_CODEC_ID_MPEG2VIDEO) {
380  put_bits(&s->pb, 4, 8); /* pic ext */
381  if (s->c.pict_type == AV_PICTURE_TYPE_P ||
382  s->c.pict_type == AV_PICTURE_TYPE_B) {
383  put_bits(&s->pb, 4, s->c.f_code);
384  put_bits(&s->pb, 4, s->c.f_code);
385  } else {
386  put_bits(&s->pb, 8, 255);
387  }
388  if (s->c.pict_type == AV_PICTURE_TYPE_B) {
389  put_bits(&s->pb, 4, s->c.b_code);
390  put_bits(&s->pb, 4, s->c.b_code);
391  } else {
392  put_bits(&s->pb, 8, 255);
393  }
394  put_bits(&s->pb, 2, s->c.intra_dc_precision);
395 
396  av_assert0(s->c.picture_structure == PICT_FRAME);
397  put_bits(&s->pb, 2, s->c.picture_structure);
398  if (s->c.progressive_sequence)
399  put_bits(&s->pb, 1, 0); /* no repeat */
400  else
401  put_bits(&s->pb, 1, !!(s->c.cur_pic.ptr->f->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST));
402  /* XXX: optimize the generation of this flag with entropy measures */
403  s->c.frame_pred_frame_dct = s->c.progressive_sequence;
404 
405  put_bits(&s->pb, 1, s->c.frame_pred_frame_dct);
406  put_bits(&s->pb, 1, s->c.concealment_motion_vectors);
407  put_bits(&s->pb, 1, s->c.q_scale_type);
408  put_bits(&s->pb, 1, s->c.intra_vlc_format);
409  put_bits(&s->pb, 1, s->c.alternate_scan);
410  put_bits(&s->pb, 1, s->c.repeat_first_field);
411  s->c.progressive_frame = s->c.progressive_sequence;
412  /* chroma_420_type */
413  put_bits(&s->pb, 1, s->c.chroma_format ==
414  CHROMA_420 ? s->c.progressive_frame : 0);
415  put_bits(&s->pb, 1, s->c.progressive_frame);
416  put_bits(&s->pb, 1, 0); /* composite_display_flag */
417  }
418  if (mpeg12->scan_offset) {
419  int i;
420 
422  for (i = 0; i < sizeof(svcd_scan_offset_placeholder); i++)
423  put_bits(&s->pb, 8, svcd_scan_offset_placeholder[i]);
424  }
425  side_data = av_frame_get_side_data(s->c.cur_pic.ptr->f,
427  if (side_data) {
428  const AVStereo3D *stereo = (AVStereo3D *)side_data->data;
429  uint8_t fpa_type;
430 
431  switch (stereo->type) {
433  fpa_type = 0x03;
434  break;
436  fpa_type = 0x04;
437  break;
438  case AV_STEREO3D_2D:
439  fpa_type = 0x08;
440  break;
442  fpa_type = 0x23;
443  break;
444  default:
445  fpa_type = 0;
446  break;
447  }
448 
449  if (fpa_type != 0) {
451  // S3D_video_format_signaling_identifier
452  put_bits32(&s->pb, MKBETAG('J','P','3','D'));
453  put_bits(&s->pb, 8, 0x03); // S3D_video_format_length
454 
455  put_bits(&s->pb, 1, 1); // reserved_bit
456  put_bits(&s->pb, 7, fpa_type); // S3D_video_format_type
457  put_bits(&s->pb, 8, 0x04); // reserved_data[0]
458  put_bits(&s->pb, 8, 0xFF); // reserved_data[1]
459  }
460  }
461 
462  if (CONFIG_MPEG2VIDEO_ENCODER && mpeg12->a53_cc) {
463  side_data = av_frame_get_side_data(s->c.cur_pic.ptr->f,
465  if (side_data) {
466  if (side_data->size <= A53_MAX_CC_COUNT * 3 && side_data->size % 3 == 0) {
468 
469  put_bits32(&s->pb, MKBETAG('G','A','9','4')); // user_identifier
470  put_bits(&s->pb, 8, 3); // user_data_type_code
471  put_bits(&s->pb, 8,
472  (side_data->size / 3 & A53_MAX_CC_COUNT) | 0x40); // flags, cc_count
473  put_bits(&s->pb, 8, 0xff); // em_data
474 
475  ff_copy_bits(&s->pb, side_data->data, side_data->size);
476 
477  put_bits(&s->pb, 8, 0xff); // marker_bits
478  } else {
479  av_log(s->c.avctx, AV_LOG_WARNING,
480  "Closed Caption size (%"SIZE_SPECIFIER") can not exceed "
481  "93 bytes and must be a multiple of 3\n", side_data->size);
482  }
483  }
484  }
485 
486  s->c.mb_y = 0;
488 
489  return 0;
490 }
491 
492 static inline void put_mb_modes(MPVEncContext *const s, int n, int bits,
493  int has_mv, int field_motion)
494 {
495  put_bits(&s->pb, n, bits);
496  if (!s->c.frame_pred_frame_dct) {
497  if (has_mv)
498  /* motion_type: frame/field */
499  put_bits(&s->pb, 2, 2 - field_motion);
500  put_bits(&s->pb, 1, s->c.interlaced_dct);
501  }
502 }
503 
504 // RAL: Parameter added: f_or_b_code
505 static void mpeg1_encode_motion(MPVEncContext *const s, int val, int f_or_b_code)
506 {
507  if (val == 0) {
508  /* zero vector, corresponds to ff_mpeg12_mbMotionVectorTable[0] */
509  put_bits(&s->pb, 1, 0x01);
510  } else {
511  int code, sign, bits;
512  int bit_size = f_or_b_code - 1;
513  int range = 1 << bit_size;
514  /* modulo encoding */
515  val = sign_extend(val, 5 + bit_size);
516 
517  if (val >= 0) {
518  val--;
519  code = (val >> bit_size) + 1;
520  bits = val & (range - 1);
521  sign = 0;
522  } else {
523  val = -val;
524  val--;
525  code = (val >> bit_size) + 1;
526  bits = val & (range - 1);
527  sign = 1;
528  }
529 
530  av_assert2(code > 0 && code <= 16);
531 
532  put_bits(&s->pb,
535 
536  put_bits(&s->pb, 1, sign);
537  if (bit_size > 0)
538  put_bits(&s->pb, bit_size, bits);
539  }
540 }
541 
542 static inline void encode_dc(MPVEncContext *const s, int diff, int component)
543 {
544  unsigned int diff_u = diff + 255;
545  if (diff_u >= 511) {
546  int index;
547 
548  if (diff < 0) {
549  index = av_log2_16bit(-2 * diff);
550  diff--;
551  } else {
552  index = av_log2_16bit(2 * diff);
553  }
554  if (component == 0)
555  put_bits(&s->pb,
559  else
560  put_bits(&s->pb,
564  } else {
565  if (component == 0)
566  put_bits(&s->pb,
567  mpeg1_lum_dc_uni[diff + 255] & 0xFF,
568  mpeg1_lum_dc_uni[diff + 255] >> 8);
569  else
570  put_bits(&s->pb,
571  mpeg1_chr_dc_uni[diff + 255] & 0xFF,
572  mpeg1_chr_dc_uni[diff + 255] >> 8);
573  }
574 }
575 
576 static void mpeg1_encode_block(MPVEncContext *const s, const int16_t block[], int n)
577 {
578  int alevel, level, last_non_zero, dc, diff, i, j, run, last_index, sign;
579  int code, component;
580  const uint16_t (*table_vlc)[2] = ff_mpeg1_vlc_table;
581 
582  last_index = s->c.block_last_index[n];
583 
584  /* DC coef */
585  if (s->c.mb_intra) {
586  component = (n <= 3 ? 0 : (n & 1) + 1);
587  dc = block[0]; /* overflow is impossible */
588  diff = dc - s->c.last_dc[component];
589  encode_dc(s, diff, component);
590  s->c.last_dc[component] = dc;
591  i = 1;
592  if (s->c.intra_vlc_format)
593  table_vlc = ff_mpeg2_vlc_table;
594  } else {
595  /* encode the first coefficient: needs to be done here because
596  * it is handled slightly differently */
597  level = block[0];
598  if (abs(level) == 1) {
599  code = ((uint32_t)level >> 31); /* the sign bit */
600  put_bits(&s->pb, 2, code | 0x02);
601  i = 1;
602  } else {
603  i = 0;
604  last_non_zero = -1;
605  goto next_coef;
606  }
607  }
608 
609  /* now quantify & encode AC coefs */
610  last_non_zero = i - 1;
611 
612  for (; i <= last_index; i++) {
613  j = s->c.intra_scantable.permutated[i];
614  level = block[j];
615 
616 next_coef:
617  /* encode using VLC */
618  if (level != 0) {
619  run = i - last_non_zero - 1;
620 
621  alevel = level;
622  MASK_ABS(sign, alevel);
623  sign &= 1;
624 
625  if (alevel <= mpeg12_max_level[run]) {
626  code = mpeg12_index_run[run] + alevel - 1;
627  /* store the VLC & sign at once */
628  put_bits(&s->pb, table_vlc[code][1] + 1,
629  (table_vlc[code][0] << 1) + sign);
630  } else {
631  /* Escape seems to be pretty rare <5% so I do not optimize it.
632  * The following encodes run together with the common escape
633  * value of both tables 000001b. */
634  put_bits(&s->pb, 6 + 6, 0x01 << 6 | run);
635  /* escape: only clip in this case */
636  if (s->c.codec_id == AV_CODEC_ID_MPEG1VIDEO) {
637  if (alevel < 128) {
638  put_sbits(&s->pb, 8, level);
639  } else {
640  if (level < 0)
641  put_bits(&s->pb, 16, 0x8001 + level + 255);
642  else
643  put_sbits(&s->pb, 16, level);
644  }
645  } else {
646  put_sbits(&s->pb, 12, level);
647  }
648  }
649  last_non_zero = i;
650  }
651  }
652  /* end of block */
653  put_bits(&s->pb, table_vlc[112][1], table_vlc[112][0]);
654 }
655 
656 static av_always_inline void mpeg1_encode_mb_internal(MPVEncContext *const s,
657  const int16_t block[8][64],
658  int motion_x, int motion_y,
659  int mb_block_count,
660  int chroma_y_shift)
661 {
662 /* MPEG-1 is always 420. */
663 #define IS_MPEG1(s) (chroma_y_shift == 1 && (s)->c.codec_id == AV_CODEC_ID_MPEG1VIDEO)
664  int i, cbp;
665  const int mb_x = s->c.mb_x;
666  const int mb_y = s->c.mb_y;
667  const int first_mb = mb_x == s->c.resync_mb_x && mb_y == s->c.resync_mb_y;
668 
669  /* compute cbp */
670  cbp = 0;
671  for (i = 0; i < mb_block_count; i++)
672  if (s->c.block_last_index[i] >= 0)
673  cbp |= 1 << (mb_block_count - 1 - i);
674 
675  if (cbp == 0 && !first_mb && s->c.mv_type == MV_TYPE_16X16 &&
676  (mb_x != s->c.mb_width - 1 ||
677  (mb_y != s->c.end_mb_y - 1 && IS_MPEG1(s))) &&
678  ((s->c.pict_type == AV_PICTURE_TYPE_P && (motion_x | motion_y) == 0) ||
679  (s->c.pict_type == AV_PICTURE_TYPE_B && s->c.mv_dir == s->last_mv_dir &&
680  (((s->c.mv_dir & MV_DIR_FORWARD)
681  ? ((s->c.mv[0][0][0] - s->c.last_mv[0][0][0]) |
682  (s->c.mv[0][0][1] - s->c.last_mv[0][0][1])) : 0) |
683  ((s->c.mv_dir & MV_DIR_BACKWARD)
684  ? ((s->c.mv[1][0][0] - s->c.last_mv[1][0][0]) |
685  (s->c.mv[1][0][1] - s->c.last_mv[1][0][1])) : 0)) == 0))) {
686  s->c.mb_skip_run++;
687  s->c.qscale -= s->dquant;
688  s->misc_bits++;
689  s->last_bits++;
690  if (s->c.pict_type == AV_PICTURE_TYPE_P) {
691  s->c.last_mv[0][0][0] =
692  s->c.last_mv[0][0][1] =
693  s->c.last_mv[0][1][0] =
694  s->c.last_mv[0][1][1] = 0;
695  }
696  } else {
697  if (first_mb) {
698  av_assert0(s->c.mb_skip_run == 0);
699  encode_mb_skip_run(s, s->c.mb_x);
700  } else {
701  encode_mb_skip_run(s, s->c.mb_skip_run);
702  }
703 
704  if (s->c.pict_type == AV_PICTURE_TYPE_I) {
705  if (s->dquant && cbp) {
706  /* macroblock_type: macroblock_quant = 1 */
707  put_mb_modes(s, 2, 1, 0, 0);
708  put_qscale(s);
709  } else {
710  /* macroblock_type: macroblock_quant = 0 */
711  put_mb_modes(s, 1, 1, 0, 0);
712  s->c.qscale -= s->dquant;
713  }
714  s->misc_bits += get_bits_diff(s);
715  s->i_count++;
716  } else if (s->c.mb_intra) {
717  if (s->dquant && cbp) {
718  put_mb_modes(s, 6, 0x01, 0, 0);
719  put_qscale(s);
720  } else {
721  put_mb_modes(s, 5, 0x03, 0, 0);
722  s->c.qscale -= s->dquant;
723  }
724  s->misc_bits += get_bits_diff(s);
725  s->i_count++;
726  memset(s->c.last_mv, 0, sizeof(s->c.last_mv));
727  } else if (s->c.pict_type == AV_PICTURE_TYPE_P) {
728  if (s->c.mv_type == MV_TYPE_16X16) {
729  if (cbp != 0) {
730  if ((motion_x | motion_y) == 0) {
731  if (s->dquant) {
732  /* macroblock_pattern & quant */
733  put_mb_modes(s, 5, 1, 0, 0);
734  put_qscale(s);
735  } else {
736  /* macroblock_pattern only */
737  put_mb_modes(s, 2, 1, 0, 0);
738  }
739  s->misc_bits += get_bits_diff(s);
740  } else {
741  if (s->dquant) {
742  put_mb_modes(s, 5, 2, 1, 0); /* motion + cbp */
743  put_qscale(s);
744  } else {
745  put_mb_modes(s, 1, 1, 1, 0); /* motion + cbp */
746  }
747  s->misc_bits += get_bits_diff(s);
748  // RAL: f_code parameter added
749  mpeg1_encode_motion(s,
750  motion_x - s->c.last_mv[0][0][0],
751  s->c.f_code);
752  // RAL: f_code parameter added
753  mpeg1_encode_motion(s,
754  motion_y - s->c.last_mv[0][0][1],
755  s->c.f_code);
756  s->mv_bits += get_bits_diff(s);
757  }
758  } else {
759  put_bits(&s->pb, 3, 1); /* motion only */
760  if (!s->c.frame_pred_frame_dct)
761  put_bits(&s->pb, 2, 2); /* motion_type: frame */
762  s->misc_bits += get_bits_diff(s);
763  // RAL: f_code parameter added
764  mpeg1_encode_motion(s,
765  motion_x - s->c.last_mv[0][0][0],
766  s->c.f_code);
767  // RAL: f_code parameter added
768  mpeg1_encode_motion(s,
769  motion_y - s->c.last_mv[0][0][1],
770  s->c.f_code);
771  s->c.qscale -= s->dquant;
772  s->mv_bits += get_bits_diff(s);
773  }
774  s->c.last_mv[0][1][0] = s->c.last_mv[0][0][0] = motion_x;
775  s->c.last_mv[0][1][1] = s->c.last_mv[0][0][1] = motion_y;
776  } else {
777  av_assert2(!s->c.frame_pred_frame_dct && s->c.mv_type == MV_TYPE_FIELD);
778 
779  if (cbp) {
780  if (s->dquant) {
781  put_mb_modes(s, 5, 2, 1, 1); /* motion + cbp */
782  put_qscale(s);
783  } else {
784  put_mb_modes(s, 1, 1, 1, 1); /* motion + cbp */
785  }
786  } else {
787  put_bits(&s->pb, 3, 1); /* motion only */
788  put_bits(&s->pb, 2, 1); /* motion_type: field */
789  s->c.qscale -= s->dquant;
790  }
791  s->misc_bits += get_bits_diff(s);
792  for (i = 0; i < 2; i++) {
793  put_bits(&s->pb, 1, s->c.field_select[0][i]);
794  mpeg1_encode_motion(s,
795  s->c.mv[0][i][0] - s->c.last_mv[0][i][0],
796  s->c.f_code);
797  mpeg1_encode_motion(s,
798  s->c.mv[0][i][1] - (s->c.last_mv[0][i][1] >> 1),
799  s->c.f_code);
800  s->c.last_mv[0][i][0] = s->c.mv[0][i][0];
801  s->c.last_mv[0][i][1] = 2 * s->c.mv[0][i][1];
802  }
803  s->mv_bits += get_bits_diff(s);
804  }
805  if (cbp) {
806  if (chroma_y_shift) {
807  put_bits(&s->pb,
808  ff_mpeg12_mbPatTable[cbp][1],
809  ff_mpeg12_mbPatTable[cbp][0]);
810  } else {
811  put_bits(&s->pb,
812  ff_mpeg12_mbPatTable[cbp >> 2][1],
813  ff_mpeg12_mbPatTable[cbp >> 2][0]);
814  put_sbits(&s->pb, 2, cbp);
815  }
816  }
817  } else {
818  if (s->c.mv_type == MV_TYPE_16X16) {
819  if (cbp) { // With coded bloc pattern
820  if (s->dquant) {
821  if (s->c.mv_dir == MV_DIR_FORWARD)
822  put_mb_modes(s, 6, 3, 1, 0);
823  else
824  put_mb_modes(s, 8 - s->c.mv_dir, 2, 1, 0);
825  put_qscale(s);
826  } else {
827  put_mb_modes(s, 5 - s->c.mv_dir, 3, 1, 0);
828  }
829  } else { // No coded bloc pattern
830  put_bits(&s->pb, 5 - s->c.mv_dir, 2);
831  if (!s->c.frame_pred_frame_dct)
832  put_bits(&s->pb, 2, 2); /* motion_type: frame */
833  s->c.qscale -= s->dquant;
834  }
835  s->misc_bits += get_bits_diff(s);
836  if (s->c.mv_dir & MV_DIR_FORWARD) {
837  mpeg1_encode_motion(s,
838  s->c.mv[0][0][0] - s->c.last_mv[0][0][0],
839  s->c.f_code);
840  mpeg1_encode_motion(s,
841  s->c.mv[0][0][1] - s->c.last_mv[0][0][1],
842  s->c.f_code);
843  s->c.last_mv[0][0][0] =
844  s->c.last_mv[0][1][0] = s->c.mv[0][0][0];
845  s->c.last_mv[0][0][1] =
846  s->c.last_mv[0][1][1] = s->c.mv[0][0][1];
847  }
848  if (s->c.mv_dir & MV_DIR_BACKWARD) {
849  mpeg1_encode_motion(s,
850  s->c.mv[1][0][0] - s->c.last_mv[1][0][0],
851  s->c.b_code);
852  mpeg1_encode_motion(s,
853  s->c.mv[1][0][1] - s->c.last_mv[1][0][1],
854  s->c.b_code);
855  s->c.last_mv[1][0][0] =
856  s->c.last_mv[1][1][0] = s->c.mv[1][0][0];
857  s->c.last_mv[1][0][1] =
858  s->c.last_mv[1][1][1] = s->c.mv[1][0][1];
859  }
860  } else {
861  av_assert2(s->c.mv_type == MV_TYPE_FIELD);
862  av_assert2(!s->c.frame_pred_frame_dct);
863  if (cbp) { // With coded bloc pattern
864  if (s->dquant) {
865  if (s->c.mv_dir == MV_DIR_FORWARD)
866  put_mb_modes(s, 6, 3, 1, 1);
867  else
868  put_mb_modes(s, 8 - s->c.mv_dir, 2, 1, 1);
869  put_qscale(s);
870  } else {
871  put_mb_modes(s, 5 - s->c.mv_dir, 3, 1, 1);
872  }
873  } else { // No coded bloc pattern
874  put_bits(&s->pb, 5 - s->c.mv_dir, 2);
875  put_bits(&s->pb, 2, 1); /* motion_type: field */
876  s->c.qscale -= s->dquant;
877  }
878  s->misc_bits += get_bits_diff(s);
879  if (s->c.mv_dir & MV_DIR_FORWARD) {
880  for (i = 0; i < 2; i++) {
881  put_bits(&s->pb, 1, s->c.field_select[0][i]);
882  mpeg1_encode_motion(s,
883  s->c.mv[0][i][0] - s->c.last_mv[0][i][0],
884  s->c.f_code);
885  mpeg1_encode_motion(s,
886  s->c.mv[0][i][1] - (s->c.last_mv[0][i][1] >> 1),
887  s->c.f_code);
888  s->c.last_mv[0][i][0] = s->c.mv[0][i][0];
889  s->c.last_mv[0][i][1] = s->c.mv[0][i][1] * 2;
890  }
891  }
892  if (s->c.mv_dir & MV_DIR_BACKWARD) {
893  for (i = 0; i < 2; i++) {
894  put_bits(&s->pb, 1, s->c.field_select[1][i]);
895  mpeg1_encode_motion(s,
896  s->c.mv[1][i][0] - s->c.last_mv[1][i][0],
897  s->c.b_code);
898  mpeg1_encode_motion(s,
899  s->c.mv[1][i][1] - (s->c.last_mv[1][i][1] >> 1),
900  s->c.b_code);
901  s->c.last_mv[1][i][0] = s->c.mv[1][i][0];
902  s->c.last_mv[1][i][1] = s->c.mv[1][i][1] * 2;
903  }
904  }
905  }
906  s->mv_bits += get_bits_diff(s);
907  if (cbp) {
908  if (chroma_y_shift) {
909  put_bits(&s->pb,
910  ff_mpeg12_mbPatTable[cbp][1],
911  ff_mpeg12_mbPatTable[cbp][0]);
912  } else {
913  put_bits(&s->pb,
914  ff_mpeg12_mbPatTable[cbp >> 2][1],
915  ff_mpeg12_mbPatTable[cbp >> 2][0]);
916  put_sbits(&s->pb, 2, cbp);
917  }
918  }
919  }
920  for (i = 0; i < mb_block_count; i++)
921  if (cbp & (1 << (mb_block_count - 1 - i)))
922  mpeg1_encode_block(s, block[i], i);
923  s->c.mb_skip_run = 0;
924  if (s->c.mb_intra)
925  s->i_tex_bits += get_bits_diff(s);
926  else
927  s->p_tex_bits += get_bits_diff(s);
928  }
929 }
930 
931 static void mpeg12_encode_mb(MPVEncContext *const s, int16_t block[][64],
932  int motion_x, int motion_y)
933 {
934  if (!s->c.mb_intra)
935  s->c.last_dc[0] = s->c.last_dc[1] = s->c.last_dc[2] = 128 << s->c.intra_dc_precision;
936  if (s->c.chroma_format == CHROMA_420)
937  mpeg1_encode_mb_internal(s, block, motion_x, motion_y, 6, 1);
938  else
939  mpeg1_encode_mb_internal(s, block, motion_x, motion_y, 8, 0);
940 }
941 
942 static av_cold void mpeg12_encode_init_static(void)
943 {
944  ff_rl_init_level_run(mpeg12_max_level, mpeg12_index_run,
946 
947  ff_mpeg1_init_uni_ac_vlc(mpeg12_max_level, mpeg12_index_run,
948  ff_mpeg1_vlc_table, uni_mpeg1_ac_vlc_len);
949  ff_mpeg1_init_uni_ac_vlc(mpeg12_max_level, mpeg12_index_run,
950  ff_mpeg2_vlc_table, uni_mpeg2_ac_vlc_len);
951 
952  /* build unified dc encoding tables */
953  for (int i = -255; i < 256; i++) {
954  int adiff, index;
955  int bits, code;
956  int diff = i;
957 
958  adiff = FFABS(diff);
959  if (diff < 0)
960  diff--;
961  index = av_log2(2 * adiff);
962 
966  mpeg1_lum_dc_uni[i + 255] = bits + (code << 8);
967 
971  mpeg1_chr_dc_uni[i + 255] = bits + (code << 8);
972  }
973 
974  for (int f_code = 1; f_code <= MAX_FCODE; f_code++)
975  for (int mv = -MAX_DMV; mv <= MAX_DMV; mv++) {
976  int len;
977 
978  if (mv == 0) {
979  len = 1; /* ff_mpeg12_mbMotionVectorTable[0][1] */
980  } else {
981  int val, bit_size, code;
982 
983  bit_size = f_code - 1;
984 
985  val = mv;
986  if (val < 0)
987  val = -val;
988  val--;
989  code = (val >> bit_size) + 1;
990  if (code < 17)
992  1 + bit_size;
993  else
994  len = 10 /* ff_mpeg12_mbMotionVectorTable[16][1] */ +
995  2 + bit_size;
996  }
997 
998  mv_penalty[f_code][mv + MAX_DMV] = len;
999  }
1000 
1001 
1002  for (int f_code = MAX_FCODE; f_code > 0; f_code--)
1003  for (int mv = -(8 << f_code); mv < (8 << f_code); mv++)
1004  fcode_tab[mv + MAX_MV] = f_code;
1005 }
1006 
1007 static av_cold int find_frame_rate_index(AVCodecContext *avctx, MPEG12EncContext *mpeg12)
1008 {
1009  AVRational bestq = (AVRational) {0, 0};
1010  AVRational ext;
1011  AVRational target = av_inv_q(avctx->time_base);
1012 
1013  for (int i = 1; i < 14; i++) {
1015  i >= 9)
1016  break;
1017 
1018  for (ext.num = 1; ext.num <= 4; ext.num++) {
1019  for (ext.den = 1; ext.den <= 32; ext.den++) {
1021 
1022  if (avctx->codec_id != AV_CODEC_ID_MPEG2VIDEO && (ext.den!=1 || ext.num!=1))
1023  continue;
1024  if (av_gcd(ext.den, ext.num) != 1)
1025  continue;
1026 
1027  if ( bestq.num==0
1028  || av_nearer_q(target, bestq, q) < 0
1029  || ext.num==1 && ext.den==1 && av_nearer_q(target, bestq, q) == 0) {
1030  bestq = q;
1031  mpeg12->frame_rate_index = i;
1032  mpeg12->frame_rate_ext.num = ext.num;
1033  mpeg12->frame_rate_ext.den = ext.den;
1034  }
1035  }
1036  }
1037  }
1038 
1039  if (av_cmp_q(target, bestq))
1040  return -1;
1041  else
1042  return 0;
1043 }
1044 
1045 static av_cold int encode_init(AVCodecContext *avctx)
1046 {
1047  static AVOnce init_static_once = AV_ONCE_INIT;
1048  MPEG12EncContext *const mpeg12 = avctx->priv_data;
1049  MPVMainEncContext *const m = &mpeg12->mpeg;
1050  MPVEncContext *const s = &m->s;
1051  int ret;
1052  int max_size = avctx->codec_id == AV_CODEC_ID_MPEG2VIDEO ? 16383 : 4095;
1053 
1054  if (avctx->width > max_size || avctx->height > max_size) {
1055  av_log(avctx, AV_LOG_ERROR, "%s does not support resolutions above %dx%d\n",
1056  CONFIG_SMALL ? avctx->codec->name : avctx->codec->long_name,
1057  max_size, max_size);
1058  return AVERROR(EINVAL);
1059  }
1060  if ((avctx->width & 0xFFF) == 0 && (avctx->height & 0xFFF) == 1) {
1061  av_log(avctx, AV_LOG_ERROR, "Width / Height is invalid for MPEG2\n");
1062  return AVERROR(EINVAL);
1063  }
1064 
1066  if ((avctx->width & 0xFFF) == 0 || (avctx->height & 0xFFF) == 0) {
1067  av_log(avctx, AV_LOG_ERROR, "Width or Height are not allowed to be multiples of 4096\n"
1068  "add '-strict %d' if you want to use them anyway.\n", FF_COMPLIANCE_UNOFFICIAL);
1069  return AVERROR(EINVAL);
1070  }
1071  }
1072 
1073  if (s->c.q_scale_type == 1) {
1074  if (avctx->qmax > 28) {
1075  av_log(avctx, AV_LOG_ERROR,
1076  "non linear quant only supports qmax <= 28 currently\n");
1077  return AVERROR_PATCHWELCOME;
1078  }
1079  }
1080 
1081  if (avctx->profile == AV_PROFILE_UNKNOWN) {
1082  if (avctx->level != AV_LEVEL_UNKNOWN) {
1083  av_log(avctx, AV_LOG_ERROR, "Set profile and level\n");
1084  return AVERROR(EINVAL);
1085  }
1086  /* Main or 4:2:2 */
1089  }
1090  if (avctx->level == AV_LEVEL_UNKNOWN) {
1091  if (avctx->profile == AV_PROFILE_MPEG2_422) { /* 4:2:2 */
1092  if (avctx->width <= 720 && avctx->height <= 608)
1093  avctx->level = 5; /* Main */
1094  else
1095  avctx->level = 2; /* High */
1096  } else {
1097  if (avctx->profile != AV_PROFILE_MPEG2_HIGH &&
1098  avctx->pix_fmt != AV_PIX_FMT_YUV420P) {
1099  av_log(avctx, AV_LOG_ERROR,
1100  "Only High(1) and 4:2:2(0) profiles support 4:2:2 color sampling\n");
1101  return AVERROR(EINVAL);
1102  }
1103  if (avctx->width <= 720 && avctx->height <= 576)
1104  avctx->level = 8; /* Main */
1105  else if (avctx->width <= 1440)
1106  avctx->level = 6; /* High 1440 */
1107  else
1108  avctx->level = 4; /* High */
1109  }
1110  }
1111 
1112  m->encode_picture_header = mpeg1_encode_picture_header;
1113  s->encode_mb = mpeg12_encode_mb;
1114 
1115  s->me.mv_penalty = mv_penalty;
1116  m->fcode_tab = fcode_tab + MAX_MV;
1117  if (avctx->codec_id == AV_CODEC_ID_MPEG1VIDEO) {
1118  s->min_qcoeff = -255;
1119  s->max_qcoeff = 255;
1120  } else {
1121  s->min_qcoeff = -2047;
1122  s->max_qcoeff = 2047;
1123  s->c.mpeg_quant = 1;
1124  }
1125  if (s->c.intra_vlc_format) {
1126  s->intra_ac_vlc_length =
1127  s->intra_ac_vlc_last_length = uni_mpeg2_ac_vlc_len;
1128  } else {
1129  s->intra_ac_vlc_length =
1130  s->intra_ac_vlc_last_length = uni_mpeg1_ac_vlc_len;
1131  }
1132  s->inter_ac_vlc_length =
1133  s->inter_ac_vlc_last_length = uni_mpeg1_ac_vlc_len;
1134 
1135  ret = ff_mpv_encode_init(avctx);
1136  if (ret < 0)
1137  return ret;
1138 
1139  if (avctx->codec_id == AV_CODEC_ID_MPEG1VIDEO &&
1140  s->c.thread_context[s->c.slice_context_count - 1]->start_mb_y >
1142  // MPEG-1 slices must not start at a MB row number that would make
1143  // their start code > SLICE_MAX_START_CODE. So make the last slice
1144  // bigger if needed and evenly distribute the first 174 rows.
1145  static_assert(MAX_THREADS <= 1 + SLICE_MAX_START_CODE - SLICE_MIN_START_CODE,
1146  "With more than 175 slice contexts, we have to handle "
1147  "the case in which there is no work to do for some "
1148  "slice contexts.");
1149  const int mb_height = SLICE_MAX_START_CODE - SLICE_MIN_START_CODE;
1150  const int nb_slices = s->c.slice_context_count - 1;
1151 
1152  s->c.thread_context[nb_slices]->start_mb_y = mb_height;
1153 
1154  av_assert1(nb_slices >= 1);
1155  for (int i = 0; i < nb_slices; i++) {
1156  s->c.thread_context[i]->start_mb_y =
1157  (mb_height * (i ) + nb_slices / 2) / nb_slices;
1158  s->c.thread_context[i]->end_mb_y =
1159  (mb_height * (i + 1) + nb_slices / 2) / nb_slices;
1160  }
1161  }
1162 
1163  if (find_frame_rate_index(avctx, mpeg12) < 0) {
1165  av_log(avctx, AV_LOG_ERROR, "MPEG-1/2 does not support %d/%d fps\n",
1166  avctx->time_base.den, avctx->time_base.num);
1167  return AVERROR(EINVAL);
1168  } else {
1169  av_log(avctx, AV_LOG_INFO,
1170  "MPEG-1/2 does not support %d/%d fps, there may be AV sync issues\n",
1171  avctx->time_base.den, avctx->time_base.num);
1172  }
1173  }
1174 
1175  if (avctx->rc_max_rate &&
1176  avctx->rc_min_rate == avctx->rc_max_rate &&
1177  90000LL * (avctx->rc_buffer_size - 1) >
1178  avctx->rc_max_rate * 0xFFFFLL) {
1179  av_log(avctx, AV_LOG_INFO,
1180  "Warning vbv_delay will be set to 0xFFFF (=VBR) as the "
1181  "specified vbv buffer is too large for the given bitrate!\n");
1182  }
1183 
1184  if (mpeg12->drop_frame_timecode)
1185  mpeg12->tc.flags |= AV_TIMECODE_FLAG_DROPFRAME;
1186  if (mpeg12->drop_frame_timecode && mpeg12->frame_rate_index != 4) {
1187  av_log(avctx, AV_LOG_ERROR,
1188  "Drop frame time code only allowed with 1001/30000 fps\n");
1189  return AVERROR(EINVAL);
1190  }
1191 
1192  if (mpeg12->tc_opt_str) {
1193  AVRational rate = ff_mpeg12_frame_rate_tab[mpeg12->frame_rate_index];
1194  int ret = av_timecode_init_from_string(&mpeg12->tc, rate, mpeg12->tc_opt_str, avctx);
1195  if (ret < 0)
1196  return ret;
1197  mpeg12->drop_frame_timecode = !!(mpeg12->tc.flags & AV_TIMECODE_FLAG_DROPFRAME);
1198  mpeg12->timecode_frame_start = mpeg12->tc.start;
1199  } else {
1200  mpeg12->timecode_frame_start = 0; // default is -1
1201  }
1202 
1203  ff_thread_once(&init_static_once, mpeg12_encode_init_static);
1204 
1205  return 0;
1206 }
1207 
1208 #define OFFSET(x) offsetof(MPEG12EncContext, x)
1209 #define VE AV_OPT_FLAG_ENCODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM
1210 #define COMMON_OPTS \
1211  { "gop_timecode", "MPEG GOP Timecode in hh:mm:ss[:;.]ff format. Overrides timecode_frame_start.", \
1212  OFFSET(tc_opt_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE },\
1213  { "drop_frame_timecode", "Timecode is in drop frame format.", \
1214  OFFSET(drop_frame_timecode), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE }, \
1215  { "scan_offset", "Reserve space for SVCD scan offset user data.", \
1216  OFFSET(scan_offset), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE }, \
1217  { "timecode_frame_start", "GOP timecode frame start number, in non-drop-frame format", \
1218  OFFSET(timecode_frame_start), AV_OPT_TYPE_INT64, {.i64 = -1 }, -1, INT64_MAX, VE}, \
1219  FF_MPV_COMMON_BFRAME_OPTS
1220 
1221 static const AVOption mpeg1_options[] = {
1222  COMMON_OPTS
1225  { NULL },
1226 };
1227 
1228 static const AVOption mpeg2_options[] = {
1229  COMMON_OPTS
1230  { "intra_vlc", "Use MPEG-2 intra VLC table.",
1231  FF_MPV_OFFSET(c.intra_vlc_format), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE },
1232  { "non_linear_quant", "Use nonlinear quantizer.", FF_MPV_OFFSET(c.q_scale_type), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE },
1233  { "alternate_scan", "Enable alternate scantable.", FF_MPV_OFFSET(c.alternate_scan), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE },
1234  { "a53cc", "Use A53 Closed Captions (if available)", OFFSET(a53_cc), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, VE },
1235  { "seq_disp_ext", "Write sequence_display_extension blocks.", OFFSET(seq_disp_ext), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE, .unit = "seq_disp_ext" },
1236  { "auto", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = -1}, 0, 0, VE, .unit = "seq_disp_ext" },
1237  { "never", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 0 }, 0, 0, VE, .unit = "seq_disp_ext" },
1238  { "always", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1 }, 0, 0, VE, .unit = "seq_disp_ext" },
1239  { "video_format", "Video_format in the sequence_display_extension indicating the source of the video.", OFFSET(video_format), AV_OPT_TYPE_INT, { .i64 = VIDEO_FORMAT_UNSPECIFIED }, 0, 7, VE, .unit = "video_format" },
1240  { "component", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VIDEO_FORMAT_COMPONENT }, 0, 0, VE, .unit = "video_format" },
1241  { "pal", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VIDEO_FORMAT_PAL }, 0, 0, VE, .unit = "video_format" },
1242  { "ntsc", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VIDEO_FORMAT_NTSC }, 0, 0, VE, .unit = "video_format" },
1243  { "secam", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VIDEO_FORMAT_SECAM }, 0, 0, VE, .unit = "video_format" },
1244  { "mac", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VIDEO_FORMAT_MAC }, 0, 0, VE, .unit = "video_format" },
1245  { "unspecified", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VIDEO_FORMAT_UNSPECIFIED}, 0, 0, VE, .unit = "video_format" },
1246 #define LEVEL(name, value) name, NULL, 0, AV_OPT_TYPE_CONST, { .i64 = value }, 0, 0, VE, .unit = "avctx.level"
1247  { LEVEL("high", 4) },
1248  { LEVEL("high1440", 6) },
1249  { LEVEL("main", 8) },
1250  { LEVEL("low", 10) },
1251 #undef LEVEL
1255  { NULL },
1256 };
1257 
1258 #define mpeg12_class(x) \
1259 static const AVClass mpeg ## x ## _class = { \
1260  .class_name = "mpeg" # x "video encoder", \
1261  .item_name = av_default_item_name, \
1262  .option = mpeg ## x ## _options, \
1263  .version = LIBAVUTIL_VERSION_INT, \
1264 };
1265 
1266 mpeg12_class(1)
1267 mpeg12_class(2)
1268 
1270  .p.name = "mpeg1video",
1271  CODEC_LONG_NAME("MPEG-1 video"),
1272  .p.type = AVMEDIA_TYPE_VIDEO,
1273  .p.id = AV_CODEC_ID_MPEG1VIDEO,
1274  .priv_data_size = sizeof(MPEG12EncContext),
1275  .init = encode_init,
1277  .close = ff_mpv_encode_end,
1280  .color_ranges = AVCOL_RANGE_MPEG,
1281  .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY |
1284  .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
1285  .p.priv_class = &mpeg1_class,
1286 };
1287 
1289  .p.name = "mpeg2video",
1290  CODEC_LONG_NAME("MPEG-2 video"),
1291  .p.type = AVMEDIA_TYPE_VIDEO,
1292  .p.id = AV_CODEC_ID_MPEG2VIDEO,
1293  .priv_data_size = sizeof(MPEG12EncContext),
1294  .init = encode_init,
1296  .close = ff_mpv_encode_end,
1299  .color_ranges = AVCOL_RANGE_MPEG,
1300  .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY |
1303  .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
1304  .p.priv_class = &mpeg2_class,
1305 };
1306 #endif /* CONFIG_MPEG1VIDEO_ENCODER || CONFIG_MPEG2VIDEO_ENCODER */
error
static void error(const char *err)
Definition: target_bsf_fuzzer.c:32
PICT_FRAME
#define PICT_FRAME
Definition: mpegutils.h:33
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
MV_TYPE_16X16
#define MV_TYPE_16X16
1 vector for the whole mb
Definition: mpegvideo.h:192
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:215
CODEC_FRAMERATES_ARRAY
#define CODEC_FRAMERATES_ARRAY(array)
Definition: codec_internal.h:384
level
uint8_t level
Definition: svq3.c:205
MPVEncContext
Definition: mpegvideoenc.h:45
ff_mpeg2_aspect
const AVRational ff_mpeg2_aspect[16]
Definition: mpeg12data.c:380
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
AV_STEREO3D_SIDEBYSIDE_QUINCUNX
@ AV_STEREO3D_SIDEBYSIDE_QUINCUNX
Views are next to each other, but when upscaling apply a checkerboard pattern.
Definition: stereo3d.h:114
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
AVCodec::long_name
const char * long_name
Descriptive name for the codec, meant to be more human readable than name.
Definition: codec.h:184
align_put_bits
static void align_put_bits(PutBitContext *s)
Pad the bitstream with zeros up to the next byte boundary.
Definition: put_bits.h:435
av_frame_get_side_data
AVFrameSideData * av_frame_get_side_data(const AVFrame *frame, enum AVFrameSideDataType type)
Definition: frame.c:661
MAX_FCODE
#define MAX_FCODE
Definition: mpegvideoenc.h:258
AVCodecContext::rc_min_rate
int64_t rc_min_rate
minimum bitrate
Definition: avcodec.h:1280
thread.h
AV_FRAME_DATA_A53_CC
@ AV_FRAME_DATA_A53_CC
ATSC A53 Part 4 Closed Captions.
Definition: frame.h:59
EXT_START_CODE
#define EXT_START_CODE
Definition: cavs.h:39
AVPanScan
Pan Scan area.
Definition: defs.h:242
SLICE_MAX_START_CODE
#define SLICE_MAX_START_CODE
Definition: cavs.h:38
mpegvideoenc.h
int64_t
long long int64_t
Definition: coverity.c:34
mv
static const int8_t mv[256][2]
Definition: 4xm.c:81
ff_rl_init_level_run
av_cold void ff_rl_init_level_run(uint8_t max_level[MAX_LEVEL+1], uint8_t index_run[MAX_RUN+1], const uint8_t table_run[], const uint8_t table_level[], int n)
Initialize max_level and index_run from table_run and table_level; this is equivalent to initializing...
Definition: rl.c:26
put_sbits
static void put_sbits(PutBitContext *pb, int n, int32_t value)
Definition: put_bits.h:281
MAX_RUN
#define MAX_RUN
Definition: rl.h:35
av_log2_16bit
int av_log2_16bit(unsigned v)
Definition: intmath.c:31
MPEG12_RL_NB_ELEMS
#define MPEG12_RL_NB_ELEMS
Definition: mpeg12vlc.h:52
put_bits
static void put_bits(Jpeg2000EncoderContext *s, int val, int n)
put n times val bit
Definition: j2kenc.c:223
MAX_DMV
#define MAX_DMV
Definition: motion_est.h:39
AVOption
AVOption.
Definition: opt.h:429
AVCOL_TRC_UNSPECIFIED
@ AVCOL_TRC_UNSPECIFIED
Definition: pixfmt.h:647
put_bytes_count
static int put_bytes_count(const PutBitContext *s, int round_up)
Definition: put_bits.h:100
AV_ROUND_ZERO
@ AV_ROUND_ZERO
Round toward zero.
Definition: mathematics.h:131
mv_penalty
static uint8_t mv_penalty[MAX_FCODE+1][MAX_DMV *2+1]
Definition: h261enc.c:52
FFCodec
Definition: codec_internal.h:127
MASK_ABS
#define MASK_ABS(mask, level)
Definition: mathops.h:165
ff_mpeg2video_encoder
const FFCodec ff_mpeg2video_encoder
mpegvideo.h
FF_COMPLIANCE_EXPERIMENTAL
#define FF_COMPLIANCE_EXPERIMENTAL
Allow nonstandardized experimental things.
Definition: defs.h:62
AVCodecContext::qmax
int qmax
maximum quantizer
Definition: avcodec.h:1244
mpegutils.h
ff_mpeg12_vlc_dc_chroma_bits
const unsigned char ff_mpeg12_vlc_dc_chroma_bits[12]
Definition: mpeg12data.c:63
MPVMainEncContext::encode_picture_header
int(* encode_picture_header)(struct MPVMainEncContext *m)
Definition: mpegvideoenc.h:221
SEQ_START_CODE
#define SEQ_START_CODE
Definition: mpeg12.h:29
MV_DIR_BACKWARD
#define MV_DIR_BACKWARD
Definition: mpegvideo.h:189
ff_mpeg12_vlc_dc_lum_bits
const unsigned char ff_mpeg12_vlc_dc_lum_bits[12]
Definition: mpeg12data.c:56
av_gcd
int64_t av_gcd(int64_t a, int64_t b)
Compute the greatest common divisor of two integer operands.
Definition: mathematics.c:37
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
ff_mpeg12_mbAddrIncrTable
const uint8_t ff_mpeg12_mbAddrIncrTable[36][2]
Definition: mpeg12data.c:167
AV_STEREO3D_SIDEBYSIDE
@ AV_STEREO3D_SIDEBYSIDE
Views are next to each other.
Definition: stereo3d.h:64
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
ff_mpeg2_frame_rate_tab
const AVRational ff_mpeg2_frame_rate_tab[]
Definition: mpeg12data.c:293
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
AVCodecContext::codec
const struct AVCodec * codec
Definition: avcodec.h:440
mpeg12enc.h
AV_STEREO3D_2D
@ AV_STEREO3D_2D
Video is not stereoscopic (and metadata has to be there).
Definition: stereo3d.h:52
timecode.h
ff_mpeg12_mbMotionVectorTable
const uint8_t ff_mpeg12_mbMotionVectorTable[17][2]
Definition: mpeg12data.c:273
AVPanScan::width
int width
width and height in 1/16 pel
Definition: defs.h:255
mpeg12vlc.h
MAX_THREADS
#define MAX_THREADS
Definition: frame_thread_encoder.c:37
val
static double val(void *priv, double ch)
Definition: aeval.c:77
FF_CODEC_ENCODE_CB
#define FF_CODEC_ENCODE_CB(func)
Definition: codec_internal.h:353
AVRational::num
int num
Numerator.
Definition: rational.h:59
GOP_START_CODE
#define GOP_START_CODE
Definition: mpeg12.h:30
encode_init
static av_cold int encode_init(AVCodecContext *avctx)
Definition: asvenc.c:321
avassert.h
mpeg12.h
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
AVFrameSideData::size
size_t size
Definition: frame.h:268
av_cold
#define av_cold
Definition: attributes.h:90
MAX_MV
#define MAX_MV
Definition: motion_est.h:37
AV_PROFILE_UNKNOWN
#define AV_PROFILE_UNKNOWN
Definition: defs.h:65
AV_FRAME_FLAG_KEY
#define AV_FRAME_FLAG_KEY
A flag to mark frames that are keyframes.
Definition: frame.h:625
A53_MAX_CC_COUNT
#define A53_MAX_CC_COUNT
Definition: mpeg12dec.c:63
stereo3d.h
s
#define s(width, name)
Definition: cbs_vp9.c:198
ff_mpeg1_aspect
const float ff_mpeg1_aspect[16]
Definition: mpeg12data.c:359
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
bits
uint8_t bits
Definition: vp3data.h:128
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:40
ff_write_quant_matrix
void ff_write_quant_matrix(PutBitContext *pb, uint16_t *matrix)
Definition: mpegvideo_enc.c:228
FF_MPV_OFFSET
#define FF_MPV_OFFSET(x)
Definition: mpegvideoenc.h:305
av_timecode_adjust_ntsc_framenum2
int av_timecode_adjust_ntsc_framenum2(int framenum, int fps)
Adjust frame number for NTSC drop frame time code.
Definition: timecode.c:36
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
AVCodecContext::rc_max_rate
int64_t rc_max_rate
maximum bitrate
Definition: avcodec.h:1273
AVCOL_PRI_UNSPECIFIED
@ AVCOL_PRI_UNSPECIFIED
Definition: pixfmt.h:622
ff_mpeg1video_encoder
const FFCodec ff_mpeg1video_encoder
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:326
AVCodecContext::codec_id
enum AVCodecID codec_id
Definition: avcodec.h:441
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
AVCodecContext::rc_buffer_size
int rc_buffer_size
decoder bitstream buffer size
Definition: avcodec.h:1258
framerate
float framerate
Definition: av1_levels.c:29
AV_ONCE_INIT
#define AV_ONCE_INIT
Definition: thread.h:203
NULL
#define NULL
Definition: coverity.c:32
AVERROR_PATCHWELCOME
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:64
run
uint8_t run
Definition: svq3.c:204
SLICE_MIN_START_CODE
#define SLICE_MIN_START_CODE
Definition: mpeg12.h:32
AV_LEVEL_UNKNOWN
#define AV_LEVEL_UNKNOWN
Definition: defs.h:198
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
AV_PICTURE_TYPE_I
@ AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:279
profiles.h
mathops.h
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
COMMON_OPTS
#define COMMON_OPTS
Definition: f_segment.c:264
AVCodecContext::level
int level
Encoding level descriptor.
Definition: avcodec.h:1631
MPVMainEncContext
Definition: mpegvideoenc.h:172
AVOnce
#define AVOnce
Definition: thread.h:202
index
int index
Definition: gxfenc.c:90
c
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
Definition: undefined.txt:32
AV_CODEC_ID_MPEG1VIDEO
@ AV_CODEC_ID_MPEG1VIDEO
Definition: codec_id.h:53
ff_mpeg12_run
const int8_t ff_mpeg12_run[MPEG12_RL_NB_ELEMS]
Definition: mpeg12data.c:150
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
av_rescale_rnd
int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding rnd)
Rescale a 64-bit integer with specified rounding.
Definition: mathematics.c:58
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
dc
Tag MUST be and< 10hcoeff half pel interpolation filter coefficients, hcoeff[0] are the 2 middle coefficients[1] are the next outer ones and so on, resulting in a filter like:...eff[2], hcoeff[1], hcoeff[0], hcoeff[0], hcoeff[1], hcoeff[2] ... the sign of the coefficients is not explicitly stored but alternates after each coeff and coeff[0] is positive, so ...,+,-,+,-,+,+,-,+,-,+,... hcoeff[0] is not explicitly stored but found by subtracting the sum of all stored coefficients with signs from 32 hcoeff[0]=32 - hcoeff[1] - hcoeff[2] - ... a good choice for hcoeff and htaps is htaps=6 hcoeff={40,-10, 2} an alternative which requires more computations at both encoder and decoder side and may or may not be better is htaps=8 hcoeff={42,-14, 6,-2}ref_frames minimum of the number of available reference frames and max_ref_frames for example the first frame after a key frame always has ref_frames=1spatial_decomposition_type wavelet type 0 is a 9/7 symmetric compact integer wavelet 1 is a 5/3 symmetric compact integer wavelet others are reserved stored as delta from last, last is reset to 0 if always_reset||keyframeqlog quality(logarithmic quantizer scale) stored as delta from last, last is reset to 0 if always_reset||keyframemv_scale stored as delta from last, last is reset to 0 if always_reset||keyframe FIXME check that everything works fine if this changes between framesqbias dequantization bias stored as delta from last, last is reset to 0 if always_reset||keyframeblock_max_depth maximum depth of the block tree stored as delta from last, last is reset to 0 if always_reset||keyframequant_table quantization tableHighlevel bitstream structure:==============================--------------------------------------------|Header|--------------------------------------------|------------------------------------|||Block0||||split?||||yes no||||......... intra?||||:Block01 :yes no||||:Block02 :....... ..........||||:Block03 ::y DC ::ref index:||||:Block04 ::cb DC ::motion x :||||......... :cr DC ::motion y :||||....... ..........|||------------------------------------||------------------------------------|||Block1|||...|--------------------------------------------|------------ ------------ ------------|||Y subbands||Cb subbands||Cr subbands||||--- ---||--- ---||--- ---|||||LL0||HL0||||LL0||HL0||||LL0||HL0|||||--- ---||--- ---||--- ---||||--- ---||--- ---||--- ---|||||LH0||HH0||||LH0||HH0||||LH0||HH0|||||--- ---||--- ---||--- ---||||--- ---||--- ---||--- ---|||||HL1||LH1||||HL1||LH1||||HL1||LH1|||||--- ---||--- ---||--- ---||||--- ---||--- ---||--- ---|||||HH1||HL2||||HH1||HL2||||HH1||HL2|||||...||...||...|||------------ ------------ ------------|--------------------------------------------Decoding process:=================------------|||Subbands|------------||||------------|Intra DC||||LL0 subband prediction ------------|\ Dequantization ------------------- \||Reference frames|\ IDWT|------- -------|Motion \|||Frame 0||Frame 1||Compensation . OBMC v -------|------- -------|--------------. \------> Frame n output Frame Frame<----------------------------------/|...|------------------- Range Coder:============Binary Range Coder:------------------- The implemented range coder is an adapted version based upon "Range encoding: an algorithm for removing redundancy from a digitised message." by G. N. N. Martin. The symbols encoded by the Snow range coder are bits(0|1). The associated probabilities are not fix but change depending on the symbol mix seen so far. bit seen|new state ---------+----------------------------------------------- 0|256 - state_transition_table[256 - old_state];1|state_transition_table[old_state];state_transition_table={ 0, 0, 0, 0, 0, 0, 0, 0, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 190, 191, 192, 194, 194, 195, 196, 197, 198, 199, 200, 201, 202, 202, 204, 205, 206, 207, 208, 209, 209, 210, 211, 212, 213, 215, 215, 216, 217, 218, 219, 220, 220, 222, 223, 224, 225, 226, 227, 227, 229, 229, 230, 231, 232, 234, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 248, 0, 0, 0, 0, 0, 0, 0};FIXME Range Coding of integers:------------------------- FIXME Neighboring Blocks:===================left and top are set to the respective blocks unless they are outside of the image in which case they are set to the Null block top-left is set to the top left block unless it is outside of the image in which case it is set to the left block if this block has no larger parent block or it is at the left side of its parent block and the top right block is not outside of the image then the top right block is used for top-right else the top-left block is used Null block y, cb, cr are 128 level, ref, mx and my are 0 Motion Vector Prediction:=========================1. the motion vectors of all the neighboring blocks are scaled to compensate for the difference of reference frames scaled_mv=(mv *(256 *(current_reference+1)/(mv.reference+1))+128)> the median of the scaled top and top right vectors is used as motion vector prediction the used motion vector is the sum of the predictor and(mvx_diff, mvy_diff) *mv_scale Intra DC Prediction block[y][x] dc[1]
Definition: snow.txt:400
AV_FRAME_DATA_PANSCAN
@ AV_FRAME_DATA_PANSCAN
The data is the AVPanScan struct defined in libavcodec.
Definition: frame.h:53
height
#define height
Definition: dsp.h:85
codec_internal.h
MPVMainEncContext::vbv_delay_pos
int vbv_delay_pos
offset of vbv_delay in the bitstream
Definition: mpegvideoenc.h:210
ff_mpeg12_level
const int8_t ff_mpeg12_level[MPEG12_RL_NB_ELEMS]
Definition: mpeg12data.c:133
MKBETAG
#define MKBETAG(a, b, c, d)
Definition: macros.h:56
AVFrameSideData::data
uint8_t * data
Definition: frame.h:267
PICTURE_START_CODE
#define PICTURE_START_CODE
Definition: mpeg12.h:31
USER_START_CODE
#define USER_START_CODE
Definition: cavs.h:40
range
enum AVColorRange range
Definition: mediacodec_wrapper.c:2594
header
static const uint8_t header[24]
Definition: sdr2.c:68
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
ff_mpeg1_encode_slice_header
void ff_mpeg1_encode_slice_header(MPVEncContext *s)
attributes.h
MV_TYPE_FIELD
#define MV_TYPE_FIELD
2 vectors, one per field
Definition: mpegvideo.h:195
FF_COMPLIANCE_UNOFFICIAL
#define FF_COMPLIANCE_UNOFFICIAL
Allow unofficial extensions.
Definition: defs.h:61
av_zero_extend
#define av_zero_extend
Definition: common.h:151
UNI_AC_ENC_INDEX
#define UNI_AC_ENC_INDEX(run, level)
Definition: mpegvideoenc.h:259
encode_dc
static void encode_dc(PutBitContext *pb, int diff, int component)
Definition: speedhqenc.c:127
AV_LOG_INFO
#define AV_LOG_INFO
Standard information.
Definition: log.h:220
get_bits_diff
static int get_bits_diff(MPVEncContext *s)
Definition: mpegvideoenc.h:382
av_assert2
#define av_assert2(cond)
assert() equivalent, that does lie in speed critical code.
Definition: avassert.h:67
CHROMA_420
#define CHROMA_420
Definition: mpegvideo.h:309
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
AV_STEREO3D_TOPBOTTOM
@ AV_STEREO3D_TOPBOTTOM
Views are on top of each other.
Definition: stereo3d.h:76
av_assert1
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
Definition: avassert.h:56
av_always_inline
#define av_always_inline
Definition: attributes.h:49
AV_FRAME_DATA_STEREO3D
@ AV_FRAME_DATA_STEREO3D
Stereoscopic 3d metadata.
Definition: frame.h:64
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:179
av_inv_q
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition: rational.h:159
len
int len
Definition: vorbis_enc_data.h:426
AVCOL_SPC_UNSPECIFIED
@ AVCOL_SPC_UNSPECIFIED
Definition: pixfmt.h:676
AVCodecContext::height
int height
Definition: avcodec.h:595
AVCodecContext::pix_fmt
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:634
FF_MPEG2_PROFILE_OPTS
#define FF_MPEG2_PROFILE_OPTS
Definition: profiles.h:48
AVCOL_RANGE_MPEG
@ AVCOL_RANGE_MPEG
Narrow or limited range content.
Definition: pixfmt.h:733
ff_mpeg1_init_uni_ac_vlc
av_cold void ff_mpeg1_init_uni_ac_vlc(const int8_t max_level[], const uint8_t index_run[], const uint16_t table_vlc[][2], uint8_t uni_ac_vlc_len[])
Definition: mpeg12enc.c:101
ff_mpeg12_mbPatTable
const uint8_t ff_mpeg12_mbPatTable[64][2]
Definition: mpeg12data.c:206
avcodec.h
av_cmp_q
static int av_cmp_q(AVRational a, AVRational b)
Compare two rationals.
Definition: rational.h:89
ff_mpeg12_vlc_dc_chroma_code
const uint16_t ff_mpeg12_vlc_dc_chroma_code[12]
Definition: mpeg12data.c:60
AV_TIMECODE_FLAG_DROPFRAME
@ AV_TIMECODE_FLAG_DROPFRAME
timecode is drop frame
Definition: timecode.h:36
put_header
static int64_t put_header(AVIOContext *pb, const ff_asf_guid *g)
Definition: asfenc.c:259
ff_mpeg12_frame_rate_tab
const AVRational ff_mpeg12_frame_rate_tab[]
Definition: mpeg12framerate.c:24
AV_CODEC_FLAG_CLOSED_GOP
#define AV_CODEC_FLAG_CLOSED_GOP
Definition: avcodec.h:332
ret
ret
Definition: filter_design.txt:187
AVCodecContext::strict_std_compliance
int strict_std_compliance
strictly follow the standard (MPEG-4, ...).
Definition: avcodec.h:1360
AVStereo3D::type
enum AVStereo3DType type
How views are packed within the video.
Definition: stereo3d.h:207
ff_mpeg1_vlc_table
const uint16_t ff_mpeg1_vlc_table[MPEG12_RL_NB_ELEMS+2][2]
Definition: mpeg12data.c:67
mpeg12data.h
SIZE_SPECIFIER
#define SIZE_SPECIFIER
Definition: internal.h:129
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 default minimum maximum flags name is the option keep it simple and lowercase description are in without and describe what they for example set the foo of the bar offset is the offset of the field in your see the OFFSET() macro
AVCodecContext
main external API structure.
Definition: avcodec.h:431
AV_PICTURE_TYPE_B
@ AV_PICTURE_TYPE_B
Bi-dir predicted.
Definition: avutil.h:281
AV_PROFILE_MPEG2_HIGH
#define AV_PROFILE_MPEG2_HIGH
Definition: defs.h:101
AVRational::den
int den
Denominator.
Definition: rational.h:60
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition: opt.h:259
AVCodecContext::profile
int profile
profile
Definition: avcodec.h:1621
ff_mpeg2_vlc_table
const uint16_t ff_mpeg2_vlc_table[MPEG12_RL_NB_ELEMS+2][2]
Definition: mpeg12data.c:100
AV_PROFILE_MPEG2_422
#define AV_PROFILE_MPEG2_422
Definition: defs.h:100
sign_extend
static av_const int sign_extend(int val, unsigned bits)
Definition: mathops.h:131
AV_PROFILE_MPEG2_MAIN
#define AV_PROFILE_MPEG2_MAIN
Definition: defs.h:104
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
LEVEL
#define LEVEL(name, value)
av_mul_q
AVRational av_mul_q(AVRational b, AVRational c)
Multiply two rationals.
Definition: rational.c:80
AV_PICTURE_TYPE_P
@ AV_PICTURE_TYPE_P
Predicted.
Definition: avutil.h:280
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AV_PIX_FMT_YUV422P
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:77
ff_mpv_encode_init
av_cold int ff_mpv_encode_init(AVCodecContext *avctx)
Definition: mpegvideo_enc.c:544
AVFrameSideData
Structure to hold side data for an AVFrame.
Definition: frame.h:265
av_nearer_q
int av_nearer_q(AVRational q, AVRational q1, AVRational q2)
Find which of the two rationals is closer to another rational.
Definition: rational.c:125
MV_DIR_FORWARD
#define MV_DIR_FORWARD
Definition: mpegvideo.h:188
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
rl.h
AVCodecContext::width
int width
picture width / height.
Definition: avcodec.h:595
ff_mpeg12_vlc_dc_lum_code
const uint16_t ff_mpeg12_vlc_dc_lum_code[12]
Definition: mpeg12data.c:53
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
VE
#define VE
Definition: amfenc_av1.c:30
AVPanScan::height
int height
Definition: defs.h:256
av_timecode_init_from_string
int av_timecode_init_from_string(AVTimecode *tc, AVRational rate, const char *str, void *log_ctx)
Parse timecode representation (hh:mm:ss[:;.
Definition: timecode.c:232
AVStereo3D
Stereo 3D type: this structure describes how two videos are packed within a single video surface,...
Definition: stereo3d.h:203
width
#define width
Definition: dsp.h:85
AVTimecode
Definition: timecode.h:41
AV_CODEC_ID_MPEG2VIDEO
@ AV_CODEC_ID_MPEG2VIDEO
preferred ID for MPEG-1/2 video decoding
Definition: codec_id.h:54
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition: opt.h:299
av_log2
int av_log2(unsigned v)
Definition: intmath.c:26
MPVMainEncContext::s
MPVEncContext s
The main slicecontext.
Definition: mpegvideoenc.h:173