summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-09-02 13:28:37 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-09-02 13:28:37 +0000
commitbf0669aa8712842af354c99d572503f0fc66baaa (patch)
treef3f13e88e109819537f39a97c19537ad45fecbbd /ffmpeg.c
parentd89dc06a96c32e5ccf9d56d7bc8549e84dfbc517 (diff)
forgotten parameter
Originally committed as revision 3428 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 2ca90e1a86..d3bbb3c287 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -184,6 +184,7 @@ static int context = 0;
static int predictor = 0;
static int video_profile = FF_PROFILE_UNKNOWN;
static int video_level = FF_LEVEL_UNKNOWN;
+static int nsse_weight = 8;
extern int loop_input; /* currently a hack */
static int gop_size = 12;
@@ -3154,6 +3155,7 @@ static void opt_output_file(const char *filename)
video_enc->prediction_method= predictor;
video_enc->profile= video_profile;
video_enc->level= video_level;
+ video_enc->nsse_weight= nsse_weight;
if(packet_size){
video_enc->rtp_mode= 1;
@@ -3845,6 +3847,7 @@ const OptionDef options[] = {
{ "pred", OPT_INT | HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)&predictor}, "prediction method", "" },
{ "vprofile", OPT_INT | HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)&video_profile}, "profile", "" },
{ "vlevel", OPT_INT | HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)&video_level}, "level", "" },
+ { "nssew", OPT_INT | HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)&nsse_weight}, "weight", "" },
/* audio options */
{ "ab", HAS_ARG | OPT_AUDIO, {(void*)opt_audio_bitrate}, "set audio bitrate (in kbit/s)", "bitrate", },