diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-06-02 18:51:43 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-06-02 18:51:43 +0000 |
commit | f7e1e69e18e5e08075f63442b969af6b0651c592 (patch) | |
tree | 15ba4ee7d430d0dd3c51a9ac70481a8929cddff9 /ffmpeg.c | |
parent | 2a8edc5d9245159cf016a9d5607a9dbf8ccfe9af (diff) | |
download | ffmpeg-f7e1e69e18e5e08075f63442b969af6b0651c592.tar.gz |
-qprd
Originally committed as revision 3187 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -144,6 +144,7 @@ static int use_alt_scan = 0; static int use_trell = 0; static int use_scan_offset = 0; static int use_qpel = 0; +static int use_qprd = 0; static int qns = 0; static int closed_gop = 0; static int do_deinterlace = 0; @@ -2865,6 +2866,9 @@ static void opt_output_file(const char *filename) if (use_qpel) { video_enc->flags |= CODEC_FLAG_QPEL; } + if (use_qprd) { + video_enc->flags |= CODEC_FLAG_QP_RD; + } if (b_frames) { video_enc->max_b_frames = b_frames; video_enc->b_frame_strategy = 0; @@ -3605,6 +3609,7 @@ const OptionDef options[] = { { "umv", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&use_umv}, "enable Unlimited Motion Vector (h263+)" }, { "ssm", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&use_ss}, "enable Slice Structured mode (h263+)" }, { "alt", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&use_alt_scan}, "enable alternate scantable (MPEG2/MPEG4)" }, + { "qprd", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&use_qprd}, "" }, { "trell", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&use_trell}, "enable trellis quantization" }, { "cgop", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&closed_gop}, "closed gop" }, { "scan_offset", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&use_scan_offset}, "enable SVCD Scan Offset placeholder" }, |