Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-01-24 14:55:16 +0400
committerDiego Biurrun <diego@biurrun.de>2014-06-30 18:58:46 +0400
commite3fcb14347466095839c2a3c47ebecff02da891e (patch)
tree38fbcef2c592faae3610887dbda3ab333181d1dc /libavcodec/cavs.h
parentadcb8392c9b185fd8a91a95fa256d15ab1432a30 (diff)
dsputil: Split off IDCT bits into their own context
Diffstat (limited to 'libavcodec/cavs.h')
-rw-r--r--libavcodec/cavs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/cavs.h b/libavcodec/cavs.h
index c5a10b556b..cfae05576b 100644
--- a/libavcodec/cavs.h
+++ b/libavcodec/cavs.h
@@ -24,8 +24,8 @@
#include "cavsdsp.h"
#include "blockdsp.h"
-#include "dsputil.h"
#include "h264chroma.h"
+#include "idctdsp.h"
#include "get_bits.h"
#include "videodsp.h"
@@ -162,9 +162,9 @@ typedef struct AVSFrame {
typedef struct AVSContext {
AVCodecContext *avctx;
- DSPContext dsp;
BlockDSPContext bdsp;
H264ChromaContext h264chroma;
+ IDCTDSPContext idsp;
VideoDSPContext vdsp;
CAVSDSPContext cdsp;
GetBitContext gb;