Commit 52b8b69c authored by takis's avatar takis

The "video_rc_buffer_aggressivity" variable is not being used anymore in

ffmpeg.c.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6302 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 83a74a20
...@@ -120,7 +120,6 @@ static int video_rc_qmod_freq=0; ...@@ -120,7 +120,6 @@ static int video_rc_qmod_freq=0;
#endif #endif
static char *video_rc_override_string=NULL; static char *video_rc_override_string=NULL;
static char *video_rc_eq="tex^qComp"; static char *video_rc_eq="tex^qComp";
static float video_rc_buffer_aggressivity=1.0;
static int me_method = ME_EPZS; static int me_method = ME_EPZS;
static int video_disable = 0; static int video_disable = 0;
static int video_discard = 0; static int video_discard = 0;
...@@ -2941,7 +2940,6 @@ static void new_video_stream(AVFormatContext *oc) ...@@ -2941,7 +2940,6 @@ static void new_video_stream(AVFormatContext *oc)
} }
video_enc->rc_override_count=i; video_enc->rc_override_count=i;
video_enc->rc_initial_buffer_occupancy = video_enc->rc_buffer_size*3/4; video_enc->rc_initial_buffer_occupancy = video_enc->rc_buffer_size*3/4;
video_enc->rc_buffer_aggressivity= video_rc_buffer_aggressivity;
video_enc->me_threshold= me_threshold; video_enc->me_threshold= me_threshold;
video_enc->mb_threshold= mb_threshold; video_enc->mb_threshold= mb_threshold;
video_enc->intra_dc_precision= intra_dc_precision - 8; video_enc->intra_dc_precision= intra_dc_precision - 8;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment