Browse Source

avcodec/mpegvideo_enc: fix mixed declarations and code warning

tags/n3.4
James Almer 8 years ago
parent
commit
4a654be3fb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/mpegvideo_enc.c

+ 1
- 1
libavcodec/mpegvideo_enc.c View File

@@ -4090,9 +4090,9 @@ static int dct_quantize_trellis_c(MpegEncContext *s,
else mpeg2_qscale = qscale << 1;

if (s->mb_intra) {
int q;
scantable= s->intra_scantable.scantable;
perm_scantable= s->intra_scantable.permutated;
int q;
if (!s->h263_aic) {
if (n < 4)
q = s->y_dc_scale;


Loading…
Cancel
Save