~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libavcodec/dxva2_mpeg2.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:
139
139
    init_get_bits(&gb, &buffer[4], 8 * (size - 4));
140
140
 
141
141
    slice->wQuantizerScaleCode = get_bits(&gb, 5);
142
 
    while (get_bits1(&gb))
143
 
        skip_bits(&gb, 8);
 
142
    skip_1stop_8data_bits(&gb);
144
143
 
145
144
    slice->wMBbitOffset        = 4 * 8 + get_bits_count(&gb);
146
145
}