diff options
author | Matthew Hoops | 2014-02-27 21:27:23 -0500 |
---|---|---|
committer | Matthew Hoops | 2014-02-28 00:27:36 -0500 |
commit | b568ac73b9d2e063eb04693e4610a9932035b696 (patch) | |
tree | 2791fe12d65ca2a832251248494991ff0598a068 /video/qt_decoder.h | |
parent | 740b6e8fbdece44ae2a5295cb0549a53b6dc6ae7 (diff) | |
download | scummvm-rg350-b568ac73b9d2e063eb04693e4610a9932035b696.tar.gz scummvm-rg350-b568ac73b9d2e063eb04693e4610a9932035b696.tar.bz2 scummvm-rg350-b568ac73b9d2e063eb04693e4610a9932035b696.zip |
IMAGE: Move video codecs to image/
Diffstat (limited to 'video/qt_decoder.h')
-rw-r--r-- | video/qt_decoder.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/video/qt_decoder.h b/video/qt_decoder.h index 53b7c523c1..7e87d21ae7 100644 --- a/video/qt_decoder.h +++ b/video/qt_decoder.h @@ -44,9 +44,11 @@ namespace Graphics { struct PixelFormat; } -namespace Video { - +namespace Image { class Codec; +} + +namespace Video { /** * Decoder for QuickTime videos. @@ -95,7 +97,7 @@ private: char _codecName[32]; uint16 _colorTableId; byte *_palette; - Codec *_videoCodec; + Image::Codec *_videoCodec; }; // The AudioTrackHandler is currently just a wrapper around some |