From 83188eace90de5ae56fe772d07f4c9471e416038 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Thu, 6 Oct 2016 20:32:25 -0400 Subject: VIDEO: Expose the bitCount of AVIVideoTrack bitmap headers --- video/avi_decoder.h | 1 + 1 file changed, 1 insertion(+) (limited to 'video') 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; } -- cgit v1.2.3