~ppsspp/ppsspp/ffmpeg-upstream

« back to all changes in this revision

Viewing changes to libavcodec/vc1dec.c

  • Committer: Sérgio Benjamim
  • Date: 2015-07-20 03:55:05 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20150720035505-i1jj1zcjcnd0mc7w
Updated to 2.7.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
469
469
        count = avctx->extradata_size*8 - get_bits_count(&gb);
470
470
        if (count > 0) {
471
471
            av_log(avctx, AV_LOG_INFO, "Extra data: %i bits left, value: %X\n",
472
 
                   count, get_bits(&gb, count));
 
472
                   count, get_bits_long(&gb, FFMIN(count, 32)));
473
473
        } else if (count < 0) {
474
474
            av_log(avctx, AV_LOG_INFO, "Read %i bits in overflow\n", -count);
475
475
        }