summaryrefslogtreecommitdiff
path: root/libavcodec/hqx.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-04-20 04:33:06 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-04-20 04:33:06 +0200
commitd8b4e9adbb93211b511e3864d8230789186ef4ed (patch)
tree91a10cfd1479528e30f68808ac5b099de2c9262c /libavcodec/hqx.h
parent73e6af9d7b56f12d8676ff919f4acc6c9991d985 (diff)
parentea031b75fb50c59196ccb654c9d143fb75365da9 (diff)
Merge commit 'ea031b75fb50c59196ccb654c9d143fb75365da9'
* commit 'ea031b75fb50c59196ccb654c9d143fb75365da9': hqx: Move DSP related code to a separate file Conflicts: libavcodec/hqx.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hqx.h')
-rw-r--r--libavcodec/hqx.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/hqx.h b/libavcodec/hqx.h
index 23e28436ad..8cd9f0929f 100644
--- a/libavcodec/hqx.h
+++ b/libavcodec/hqx.h
@@ -24,6 +24,7 @@
#include <stdint.h>
#include "libavutil/mem.h"
#include "get_bits.h"
+#include "hqxdsp.h"
enum HQXACMode {
HQX_AC_Q0 = 0,
@@ -54,6 +55,8 @@ typedef struct HQXSliceData
} HQXSliceData;
typedef struct HQXContext {
+ HQXDSPContext hqxdsp;
+
int format, dcb, width, height;
int interlaced;