diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-02-13 17:57:05 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-06-22 18:22:31 -0700 |
commit | c67b449bebbe0b35c73b203683e77a0a649bc765 (patch) | |
tree | fef2691cbb548198024dbc1461419dfdd9d3fea2 /libavcodec/asv.h | |
parent | 7b9ef8d701c319c26f7d0664fe977e176764c74e (diff) | |
download | ffmpeg-c67b449bebbe0b35c73b203683e77a0a649bc765.tar.gz |
dsputil: Split bswap*_buf() off into a separate context
Diffstat (limited to 'libavcodec/asv.h')
-rw-r--r-- | libavcodec/asv.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/asv.h b/libavcodec/asv.h index 7a4e48b58c..037e646969 100644 --- a/libavcodec/asv.h +++ b/libavcodec/asv.h @@ -32,6 +32,7 @@ #include "avcodec.h" #include "blockdsp.h" +#include "bswapdsp.h" #include "dsputil.h" #include "get_bits.h" #include "put_bits.h" @@ -39,6 +40,7 @@ typedef struct ASV1Context{ AVCodecContext *avctx; BlockDSPContext bdsp; + BswapDSPContext bbdsp; DSPContext dsp; PutBitContext pb; GetBitContext gb; |