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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/hqx.h')
-rw-r--r--libavcodec/hqx.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/libavcodec/hqx.h b/libavcodec/hqx.h
index c4c2220c38..23e28436ad 100644
--- a/libavcodec/hqx.h
+++ b/libavcodec/hqx.h
@@ -46,11 +46,18 @@ typedef struct HQXAC {
const HQXLUT *lut;
} HQXAC;
+
+typedef struct HQXSliceData
+{
+ DECLARE_ALIGNED(16, int16_t, block)[16][64];
+
+} HQXSliceData;
+
typedef struct HQXContext {
int format, dcb, width, height;
int interlaced;
- DECLARE_ALIGNED(16, int16_t, block)[16][64];
+ HQXSliceData slice[17];
VLC cbp_vlc;
VLC dc_vlc[3];