diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-01 01:42:59 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-06 01:02:26 +0100 |
commit | 27b1e63f32a9b1e3217cccf7a66dfdf9cccd1ebd (patch) | |
tree | 4b6a393b2ac4bf52d921f4d9d7332eccbe191ef0 /libavcodec/huffyuv.h | |
parent | 67999d3d1275d2e1449946a5f838e5d1933a8439 (diff) | |
download | ffmpeg-27b1e63f32a9b1e3217cccf7a66dfdf9cccd1ebd.tar.gz |
avcodec/huffyuv: Support more 8bit YUV formats
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/huffyuv.h')
-rw-r--r-- | libavcodec/huffyuv.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/huffyuv.h b/libavcodec/huffyuv.h index e2cacc1ae4..774a7429fa 100644 --- a/libavcodec/huffyuv.h +++ b/libavcodec/huffyuv.h @@ -67,6 +67,12 @@ typedef struct HYuvContext { int version; int yuy2; //use yuy2 instead of 422P int bgr32; //use bgr32 instead of bgr24 + int bps; + int alpha; + int chroma; + int yuv; + int chroma_h_shift; + int chroma_v_shift; int width, height; int flags; int context; |