diff options
author | Max Horn | 2009-01-22 04:59:09 +0000 |
---|---|---|
committer | Max Horn | 2009-01-22 04:59:09 +0000 |
commit | 0034aa3b9c7a1f0123df9e809a6a5d0d58bd9bd1 (patch) | |
tree | 3e5d5b10e6cfdb6112a86e7c204c3051d388f50a /graphics/video | |
parent | 17f5d4eeea9b22e833b4f9fb2f7f2670af27b4fa (diff) | |
download | scummvm-rg350-0034aa3b9c7a1f0123df9e809a6a5d0d58bd9bd1.tar.gz scummvm-rg350-0034aa3b9c7a1f0123df9e809a6a5d0d58bd9bd1.tar.bz2 scummvm-rg350-0034aa3b9c7a1f0123df9e809a6a5d0d58bd9bd1.zip |
Got rid of several occurrences of gBitFormat
svn-id: r35995
Diffstat (limited to 'graphics/video')
-rw-r--r-- | graphics/video/mpeg_player.cpp | 8 | ||||
-rw-r--r-- | graphics/video/mpeg_player.h | 3 |
2 files changed, 6 insertions, 5 deletions
diff --git a/graphics/video/mpeg_player.cpp b/graphics/video/mpeg_player.cpp index 8c017e5bb5..1910babce4 100644 --- a/graphics/video/mpeg_player.cpp +++ b/graphics/video/mpeg_player.cpp @@ -45,7 +45,7 @@ BaseAnimationState::BaseAnimationState(OSystem *sys, int width, int height) _colorTab = NULL; _rgbToPix = NULL; - _bitFormat = 0; + memset(&_overlayFormat, 0, sizeof(_overlayFormat)); #endif } @@ -353,7 +353,8 @@ void BaseAnimationState::buildLookup(int p, int lines) { void BaseAnimationState::buildLookup() { // Do we already have lookup tables for this bit format? - if (gBitFormat == _bitFormat && _colorTab && _rgbToPix) + Graphics::PixelFormat format = _sys->getOverlayFormat(); + if (format == _overlayFormat && _colorTab && _rgbToPix) return; free(_colorTab); @@ -389,7 +390,6 @@ void BaseAnimationState::buildLookup() { } // Set up entries 0-255 in rgb-to-pixel value tables. - Graphics::PixelFormat format = _sys->getOverlayFormat(); for (i = 0; i < 256; i++) { r_2_pix_alloc[i + 256] = format.RGBToColor(i, 0, 0); g_2_pix_alloc[i + 256] = format.RGBToColor(0, i, 0); @@ -407,7 +407,7 @@ void BaseAnimationState::buildLookup() { b_2_pix_alloc[i + 512] = b_2_pix_alloc[511]; } - _bitFormat = gBitFormat; + _overlayFormat = format; } void BaseAnimationState::plotYUV(int width, int height, byte *const *dat) { diff --git a/graphics/video/mpeg_player.h b/graphics/video/mpeg_player.h index 7d42618926..48c15261fc 100644 --- a/graphics/video/mpeg_player.h +++ b/graphics/video/mpeg_player.h @@ -27,6 +27,7 @@ #define GRAPHICS_VIDEO_MPEG_PLAYER_H #include "common/scummsys.h" +#include "graphics/pixelformat.h" // Uncomment this if you are using libmpeg2 0.3.1. // #define USE_MPEG2_0_3_1 @@ -122,7 +123,7 @@ protected: } _palettes[50]; #else OverlayColor *_overlay; - int _bitFormat; + Graphics::PixelFormat _overlayFormat; int16 *_colorTab; OverlayColor *_rgbToPix; #endif |