summaryrefslogtreecommitdiff
path: root/libavcodec/ffv1.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/ffv1.h')
-rw-r--r--libavcodec/ffv1.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/libavcodec/ffv1.h b/libavcodec/ffv1.h
index c16fdc4fca..e0e33f8c99 100644
--- a/libavcodec/ffv1.h
+++ b/libavcodec/ffv1.h
@@ -83,8 +83,8 @@ typedef struct FFV1Context {
int version;
int minor_version;
int width, height;
- int chroma_h_shift, chroma_v_shift;
int chroma_planes;
+ int chroma_h_shift, chroma_v_shift;
int transparency;
int flags;
int picture_number;
@@ -102,12 +102,15 @@ typedef struct FFV1Context {
int run_index;
int colorspace;
int16_t *sample_buffer;
- int gob_count;
- int packed_at_lsb;
+
int ec;
int slice_damaged;
int key_frame_ok;
+ int bits_per_raw_sample;
+ int packed_at_lsb;
+
+ int gob_count;
int quant_table_count;
DSPContext dsp;
@@ -120,7 +123,6 @@ typedef struct FFV1Context {
int slice_height;
int slice_x;
int slice_y;
- int bits_per_raw_sample;
} FFV1Context;
int ffv1_common_init(AVCodecContext *avctx);