diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-04-09 18:09:32 +0200 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-04-19 12:41:59 +0100 |
commit | ea031b75fb50c59196ccb654c9d143fb75365da9 (patch) | |
tree | 3d51b18148567010b1cdf7e944f74c66eb1b52bc /libavcodec/hqx.h | |
parent | 17aa81d94781c6f62dc7d1dbd1f8891c020c9905 (diff) | |
download | ffmpeg-ea031b75fb50c59196ccb654c9d143fb75365da9.tar.gz |
hqx: Move DSP related code to a separate file
Diffstat (limited to 'libavcodec/hqx.h')
-rw-r--r-- | libavcodec/hqx.h | 3 |
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; |