diff options
author | Mans Rullgard <mans@mansr.com> | 2012-08-25 14:35:52 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-09-02 16:32:57 +0100 |
commit | 15616eb04206b64bcf08ad351f4c754e69e00666 (patch) | |
tree | a1c88084e31cf10946f29b19bb0d6acc05aa6893 /libavcodec/intrax8.h | |
parent | 12c8912de2f2c1a235a7578d6a288e217c3fb504 (diff) | |
download | ffmpeg-15616eb04206b64bcf08ad351f4c754e69e00666.tar.gz |
intrax8: move functions from dsputil to own context
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/intrax8.h')
-rw-r--r-- | libavcodec/intrax8.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/intrax8.h b/libavcodec/intrax8.h index 3a58938cc3..be984f8df7 100644 --- a/libavcodec/intrax8.h +++ b/libavcodec/intrax8.h @@ -21,6 +21,7 @@ #include "get_bits.h" #include "mpegvideo.h" +#include "intrax8dsp.h" typedef struct{ VLC * j_ac_vlc[4];//they point to the static j_mb_vlc @@ -33,6 +34,7 @@ typedef struct{ ScanTable scantable[3]; //set by the caller codec MpegEncContext * s; + IntraX8DSPContext dsp; int quant; int dquant; int qsum; |