summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimofei V. Bondarenko <tim@ipi.ac.ru>2004-04-23 20:39:23 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-04-23 20:39:23 +0000
commit2f0472ff815a82082ecb621df4f6b8d5bdade439 (patch)
tree2285765b9e75e41809d958fa56ef9ff9876fb4bd
parentc8470cc1732c761efc372511556068222038db23 (diff)
me_range patch by ("Timofei V. Bondarenko" <timm at ipi dot ac dot ru>)
Originally committed as revision 3045 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--ffmpeg.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index a30a9d0048..e236c0595a 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -205,6 +205,7 @@ static int using_vhook = 0;
static int verbose = 1;
static int thread_count= 1;
static int q_pressed = 0;
+static int me_range = 0;
static int64_t video_size = 0;
static int64_t audio_size = 0;
static int64_t extra_size = 0;
@@ -2315,6 +2316,11 @@ static void opt_sc_threshold(const char *arg)
sc_threshold= atoi(arg);
}
+static void opt_me_range(const char *arg)
+{
+ me_range = atoi(arg);
+}
+
static void opt_thread_count(const char *arg)
{
thread_count= atoi(arg);
@@ -2867,6 +2873,8 @@ static void opt_output_file(const char *filename)
video_enc->error_rate = error_rate;
video_enc->noise_reduction= noise_reduction;
video_enc->scenechange_threshold= sc_threshold;
+ video_enc->me_range = me_range;
+
if(packet_size){
video_enc->rtp_mode= 1;
video_enc->rtp_payload_size= packet_size;
@@ -3533,6 +3541,7 @@ const OptionDef options[] = {
{ "nr", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_noise_reduction}, "noise reduction", "" },
{ "qns", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_qns}, "quantization noise shaping", "" },
{ "sc_threshold", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_sc_threshold}, "scene change threshold", "threshold" },
+ { "me_range", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_me_range}, "limit motion vectors range (1023 for DivX player)", "range" },
/* audio options */
{ "ab", HAS_ARG | OPT_AUDIO, {(void*)opt_audio_bitrate}, "set audio bitrate (in kbit/s)", "bitrate", },