mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Remove unused variable in modify_qscale() found by CSA.
Originally committed as revision 18563 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
505b6d1147
commit
956177fb1d
@ -435,7 +435,6 @@ static void get_qminmax(int *qmin_ret, int *qmax_ret, MpegEncContext *s, int pic
|
||||
static double modify_qscale(MpegEncContext *s, RateControlEntry *rce, double q, int frame_num){
|
||||
RateControlContext *rcc= &s->rc_context;
|
||||
int qmin, qmax;
|
||||
double bits;
|
||||
const int pict_type= rce->new_pict_type;
|
||||
const double buffer_size= s->avctx->rc_buffer_size;
|
||||
const double fps= 1/av_q2d(s->avctx->time_base);
|
||||
@ -448,7 +447,6 @@ static double modify_qscale(MpegEncContext *s, RateControlEntry *rce, double q,
|
||||
if(s->avctx->rc_qmod_freq && frame_num%s->avctx->rc_qmod_freq==0 && pict_type==FF_P_TYPE)
|
||||
q*= s->avctx->rc_qmod_amp;
|
||||
|
||||
bits= qp2bits(rce, q);
|
||||
//printf("q:%f\n", q);
|
||||
/* buffer overflow/underflow protection */
|
||||
if(buffer_size){
|
||||
|
Loading…
Reference in New Issue
Block a user