summaryrefslogtreecommitdiff
path: root/libavcodec/hqx.h
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2015-04-09 18:09:32 +0200
committerVittorio Giovara <vittorio.giovara@gmail.com>2015-04-19 12:41:59 +0100
commitea031b75fb50c59196ccb654c9d143fb75365da9 (patch)
tree3d51b18148567010b1cdf7e944f74c66eb1b52bc /libavcodec/hqx.h
parent17aa81d94781c6f62dc7d1dbd1f8891c020c9905 (diff)
hqx: Move DSP related code to a separate file
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 e72191fd90..8dd72bfab2 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,
@@ -47,6 +48,8 @@ typedef struct HQXAC {
} HQXAC;
typedef struct HQXContext {
+ HQXDSPContext hqxdsp;
+
int format, dcb, width, height;
int interlaced;