~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libavcodec/tscc2.c

  • Committer: Henrik Rydgård
  • Date: 2014-01-03 10:44:32 UTC
  • Revision ID: git-v1:87c6c126784b1718bfa448ecf2e6a9fef781eb4e
Update our ffmpeg snapshot to a clone of the official repository.

This is because Maxim's at3plus support has been officially merged!

Show diffs side-by-side

added added

removed removed

Lines of Context:
192
192
    int i, mb_x, q, ret;
193
193
    int off;
194
194
 
195
 
    init_get_bits(&c->gb, buf, buf_size * 8);
 
195
    if ((ret = init_get_bits8(&c->gb, buf, buf_size)) < 0)
 
196
        return ret;
196
197
 
197
198
    for (mb_x = 0; mb_x < c->mb_width; mb_x++) {
198
199
        q = c->slice_quants[mb_x + c->mb_width * mb_y];