aboutsummaryrefslogtreecommitdiff
path: root/video/bink_decoder.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2012-09-17 12:54:08 -0400
committerMatthew Hoops2012-09-17 19:30:46 -0400
commit893a2b37ff651e69699879932fe70895a28951fa (patch)
treedd1ca1e116c46849bee52a24f3c08454858b4f6e /video/bink_decoder.cpp
parent03d34f1f927cc3ac16f3f500688239f7b2f1fc8a (diff)
downloadscummvm-rg350-893a2b37ff651e69699879932fe70895a28951fa.tar.gz
scummvm-rg350-893a2b37ff651e69699879932fe70895a28951fa.tar.bz2
scummvm-rg350-893a2b37ff651e69699879932fe70895a28951fa.zip
GRAPHICS: Rework YUV->RGB code a bit
Diffstat (limited to 'video/bink_decoder.cpp')
-rw-r--r--video/bink_decoder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/bink_decoder.cpp b/video/bink_decoder.cpp
index 30632cdd6c..65f0f6c0af 100644
--- a/video/bink_decoder.cpp
+++ b/video/bink_decoder.cpp
@@ -348,7 +348,7 @@ void BinkDecoder::BinkVideoTrack::decodePacket(VideoFrame &frame) {
// The width used here is the surface-width, and not the video-width
// to allow for odd-sized videos.
assert(_curPlanes[0] && _curPlanes[1] && _curPlanes[2]);
- Graphics::convertYUV420ToRGB(&_surface, _curPlanes[0], _curPlanes[1], _curPlanes[2],
+ YUVToRGBMan.convert420(&_surface, _curPlanes[0], _curPlanes[1], _curPlanes[2],
_surfaceWidth, _surfaceHeight, _surfaceWidth, _surfaceWidth >> 1);
// And swap the planes with the reference planes