diff options
Diffstat (limited to 'video/codecs/mjpeg.h')
| -rw-r--r-- | video/codecs/mjpeg.h | 15 | 
1 files changed, 9 insertions, 6 deletions
diff --git a/video/codecs/mjpeg.h b/video/codecs/mjpeg.h index c9f931f091..8a446ee005 100644 --- a/video/codecs/mjpeg.h +++ b/video/codecs/mjpeg.h @@ -18,20 +18,23 @@   * along with this program; if not, write to the Free Software   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.   * - * $URL$ - * $Id$ - *   */  #ifndef VIDEO_CODECS_MJPEG_H  #define VIDEO_CODECS_MJPEG_H -#include "common/scummsys.h" -  #include "video/codecs/codec.h" -#include "graphics/jpeg.h"  #include "graphics/pixelformat.h" +namespace Common { +class SeekableReadStream; +} + +namespace Graphics { +class JPEG; +struct Surface; +} +  namespace Video {  // Motion JPEG Decoder  | 
