summaryrefslogtreecommitdiff
path: root/libavcodec/mjpegdec.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2013-03-10 14:23:52 -0700
committerMichael Niedermayer <michaelni@gmx.at>2013-03-13 03:59:10 +0100
commite0a8f315911ccd12d1e2eeef6a921b942e0063ab (patch)
tree0f92bf29dfbf0d087166a5bf7a510af42f0e4dc0 /libavcodec/mjpegdec.h
parentb42d594c85d4aac34de00f5f0e3634d5a8d90f56 (diff)
mjpeg: use hpeldsp instead of dsputil for half-pel functions.
Diffstat (limited to 'libavcodec/mjpegdec.h')
-rw-r--r--libavcodec/mjpegdec.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mjpegdec.h b/libavcodec/mjpegdec.h
index 01f4323bc7..17665e466c 100644
--- a/libavcodec/mjpegdec.h
+++ b/libavcodec/mjpegdec.h
@@ -34,6 +34,7 @@
#include "avcodec.h"
#include "get_bits.h"
#include "dsputil.h"
+#include "hpeldsp.h"
#define MAX_COMPONENTS 4
@@ -97,6 +98,7 @@ typedef struct MJpegDecodeContext {
uint64_t coefs_finished[MAX_COMPONENTS]; ///< bitmask of which coefs have been completely decoded (progressive mode)
ScanTable scantable;
DSPContext dsp;
+ HpelDSPContext hdsp;
int restart_interval;
int restart_count;