Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-01-01 04:42:59 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-01-06 04:02:26 +0400
commit27b1e63f32a9b1e3217cccf7a66dfdf9cccd1ebd (patch)
tree4b6a393b2ac4bf52d921f4d9d7332eccbe191ef0 /libavcodec/huffyuv.h
parent67999d3d1275d2e1449946a5f838e5d1933a8439 (diff)
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.h6
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;