diff options
Diffstat (limited to 'video/codecs/mpeg.cpp')
-rw-r--r-- | video/codecs/mpeg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/codecs/mpeg.cpp b/video/codecs/mpeg.cpp index cb3c63fcfc..4540b4182e 100644 --- a/video/codecs/mpeg.cpp +++ b/video/codecs/mpeg.cpp @@ -58,7 +58,7 @@ const Graphics::Surface *MPEGDecoder::decodeImage(Common::SeekableReadStream *st return _surface; } -bool MPEGDecoder::decodePacket(Common::SeekableReadStream *packet, uint32 &framePeriod, Graphics::Surface *dst) { +bool MPEGDecoder::decodePacket(Common::SeekableReadStream *packet, uint32 &framePeriod, Graphics::Surface *dst) { // Decode as much as we can out of this packet uint32 size = 0xFFFFFFFF; mpeg2_state_t state; |