diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-02-20 00:46:49 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-03-25 15:55:49 -0400 |
commit | 159323897f545e7405fb9db234e0ba123e174376 (patch) | |
tree | 2a3c2502e1f29d65cb42eca43d4d62fb16df6b88 /libavcodec/intrax8.h | |
parent | 1eaae7abb8f208fefb4e8b9e983e61b2499206a3 (diff) | |
download | ffmpeg-159323897f545e7405fb9db234e0ba123e174376.tar.gz |
intrax8: Add a local BlockDSPContext and initialize it
Helps in decoupling this code from mpegvideo.
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 7a0eaf7a66..44954e159a 100644 --- a/libavcodec/intrax8.h +++ b/libavcodec/intrax8.h @@ -19,6 +19,7 @@ #ifndef AVCODEC_INTRAX8_H #define AVCODEC_INTRAX8_H +#include "blockdsp.h" #include "get_bits.h" #include "mpegvideo.h" #include "idctdsp.h" @@ -41,6 +42,7 @@ typedef struct IntraX8Context { MpegEncContext *s; IntraX8DSPContext dsp; IDCTDSPContext idsp; + BlockDSPContext bdsp; int quant; int dquant; int qsum; |