diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-12-10 14:50:09 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-12-10 14:50:09 +0000 |
commit | e56d417beeb7cda62b3df8a99a30c8cc3adae0fb (patch) | |
tree | 914a6b341fb1e8ad46e38a75e3ea511c7ed14096 /ffmpeg.c | |
parent | 32e7b91af1526f8706461311e2043b8c7e1d7a87 (diff) | |
download | ffmpeg-e56d417beeb7cda62b3df8a99a30c8cc3adae0fb.tar.gz |
-interlace option - better consistency in help
Originally committed as revision 2588 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -116,6 +116,7 @@ static int use_aic = 0; static int use_aiv = 0; static int use_umv = 0; static int do_deinterlace = 0; +static int do_interlace = 0; static int workaround_bugs = FF_BUG_AUTODETECT; static int error_resilience = 2; static int error_concealment = 3; @@ -2274,17 +2275,17 @@ static void opt_output_file(const char *filename) if (use_4mv) { video_enc->flags |= CODEC_FLAG_4MV; } - - if(use_part) + if(use_part) { video_enc->flags |= CODEC_FLAG_PART; - - + } if (b_frames) { video_enc->max_b_frames = b_frames; video_enc->b_frame_strategy = 0; video_enc->b_quant_factor = 2.0; } - + if (do_interlace) { + video_enc->flags |= CODEC_FLAG_INTERLACED_DCT; + } video_enc->qmin = video_qmin; video_enc->qmax = video_qmax; video_enc->mb_qmin = video_mb_qmin; @@ -2875,8 +2876,8 @@ const OptionDef options[] = { { "bf", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_b_frames}, "use 'frames' B frames", "frames" }, { "hq", OPT_BOOL, {(void*)&mb_decision}, "activate high quality settings" }, { "mbd", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_mb_decision}, "macroblock decision", "mode" }, - { "4mv", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&use_4mv}, "use four motion vector by macroblock (only MPEG-4)" }, - { "part", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&use_part}, "use data partitioning (only MPEG-4)" }, + { "4mv", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&use_4mv}, "use four motion vector by macroblock (MPEG4)" }, + { "part", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&use_part}, "use data partitioning (MPEG4)" }, { "bug", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_workaround_bugs}, "workaround not auto detected encoder bugs", "param" }, { "ps", HAS_ARG | OPT_EXPERT, {(void*)opt_packet_size}, "set packet size in bits", "size" }, { "strict", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_strict}, "how strictly to follow the standarts", "strictness" }, @@ -2886,6 +2887,8 @@ const OptionDef options[] = { { "passlogfile", HAS_ARG | OPT_STRING | OPT_VIDEO, {(void*)&pass_logfilename}, "select two pass log file name", "file" }, { "deinterlace", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&do_deinterlace}, "deinterlace pictures" }, + { "interlace", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&do_interlace}, + "force interlacing support in encoder (MPEG4)" }, { "psnr", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&do_psnr}, "calculate PSNR of compressed frames" }, { "vstats", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&do_vstats}, "dump video coding statistics to file" }, { "vhook", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)add_frame_hooker}, "insert video processing module", "module" }, |