diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-13 01:10:21 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-16 16:24:16 +0100 |
commit | 534a89478d42fd9452b399e715427873e536d889 (patch) | |
tree | 61a033a23717acf6c709dce5b24e847af0aa5aab /libavcodec/huffyuv.h | |
parent | 8173d1ffc0b742972db6c9cffb2cec204e2a1a96 (diff) | |
download | ffmpeg-534a89478d42fd9452b399e715427873e536d889.tar.gz |
avcodec/huffyuv: add a field that represents the number of symbols
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/huffyuv.h')
-rw-r--r-- | libavcodec/huffyuv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/huffyuv.h b/libavcodec/huffyuv.h index b75cc896b9..c69274ea57 100644 --- a/libavcodec/huffyuv.h +++ b/libavcodec/huffyuv.h @@ -68,6 +68,7 @@ typedef struct HYuvContext { int yuy2; //use yuy2 instead of 422P int bgr32; //use bgr32 instead of bgr24 int bps; + int n; // 1<<bps int alpha; int chroma; int yuv; |