diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-04-24 12:36:23 +0100 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-04-24 12:36:23 +0100 |
commit | 896fce85096622b29c0312f4aa450f879d44f3cc (patch) | |
tree | 81e26edddcdac1c3cf32f17fb0e802ecbc264dcb /libavcodec/intrax8.h | |
parent | 52692eed615cc6dd05edae5505044401059408a0 (diff) | |
parent | 159323897f545e7405fb9db234e0ba123e174376 (diff) | |
download | ffmpeg-896fce85096622b29c0312f4aa450f879d44f3cc.tar.gz |
Merge commit '159323897f545e7405fb9db234e0ba123e174376'
* commit '159323897f545e7405fb9db234e0ba123e174376':
intrax8: Add a local BlockDSPContext and initialize it
Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.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 af19582190..ed3dcc661f 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" @@ -44,6 +45,7 @@ typedef struct IntraX8Context { MpegEncContext * s; IntraX8DSPContext dsp; IDCTDSPContext idsp; + BlockDSPContext bdsp; int quant; int dquant; int qsum; |