diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-27 10:16:14 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-08-31 13:26:26 +0200 |
commit | 0e5d37309f54f4377ec1f1a7ca41ea06d4ade923 (patch) | |
tree | 542cab0ac8235c12be778ad40472c47cac4424b0 /libavcodec/mpeg12enc.c | |
parent | 1f0c7020a1f08a7cbec2d629759ca33ea92bd89d (diff) | |
download | ffmpeg-0e5d37309f54f4377ec1f1a7ca41ea06d4ade923.tar.gz |
mpeg12enc/mpeg4videoenc: add 'alternate_scan' private option.
Deprecate CODEC_FLAG_ALT_SCAN
Diffstat (limited to 'libavcodec/mpeg12enc.c')
-rw-r--r-- | libavcodec/mpeg12enc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpeg12enc.c b/libavcodec/mpeg12enc.c index 30afa2eb46..a612501c90 100644 --- a/libavcodec/mpeg12enc.c +++ b/libavcodec/mpeg12enc.c @@ -946,6 +946,7 @@ static const AVOption mpeg1_options[] = { static const AVOption mpeg2_options[] = { COMMON_OPTS { "non_linear_quant", "Use nonlinear quantizer.", OFFSET(q_scale_type), FF_OPT_TYPE_INT, { 0 }, 0, 1, VE }, + { "alternate_scan", "Enable alternate scantable.", OFFSET(alternate_scan), FF_OPT_TYPE_INT, { 0 }, 0, 1, VE }, { NULL }, }; |