diff options
author | Paul Gilbert | 2016-10-06 20:32:25 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-10-06 20:32:25 -0400 |
commit | 83188eace90de5ae56fe772d07f4c9471e416038 (patch) | |
tree | 5e40cd689100b026dbe2a06af78d40438a5d8d40 /video | |
parent | d077fc0fc70896344a6963197b8617673fc13ff5 (diff) | |
download | scummvm-rg350-83188eace90de5ae56fe772d07f4c9471e416038.tar.gz scummvm-rg350-83188eace90de5ae56fe772d07f4c9471e416038.tar.bz2 scummvm-rg350-83188eace90de5ae56fe772d07f4c9471e416038.zip |
VIDEO: Expose the bitCount of AVIVideoTrack bitmap headers
Diffstat (limited to 'video')
-rw-r--r-- | video/avi_decoder.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/video/avi_decoder.h b/video/avi_decoder.h index 3581b65409..db9928d444 100644 --- a/video/avi_decoder.h +++ b/video/avi_decoder.h @@ -189,6 +189,7 @@ protected: uint16 getWidth() const { return _bmInfo.width; } uint16 getHeight() const { return _bmInfo.height; } + uint16 getBitCount() const { return _bmInfo.bitCount; } Graphics::PixelFormat getPixelFormat() const; int getCurFrame() const { return _curFrame; } int getFrameCount() const { return _frameCount; } |