diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2011-08-09 11:00:09 +0200 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-08-11 16:07:15 -0700 |
commit | d241f51e0f7c08060d2fa72117e2a1f273ab0c72 (patch) | |
tree | 59716c878cbf5be19e11f5c7833818f8e1a83bc4 /libavcodec/rv34.h | |
parent | 21d70372341d0e7a1c5ac34c4522850f40c503d5 (diff) | |
download | ffmpeg-d241f51e0f7c08060d2fa72117e2a1f273ab0c72.tar.gz |
Move RV3/4-specific DSP functions into their own context
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavcodec/rv34.h')
-rw-r--r-- | libavcodec/rv34.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/rv34.h b/libavcodec/rv34.h index c9f4ff7a13..811afb4a80 100644 --- a/libavcodec/rv34.h +++ b/libavcodec/rv34.h @@ -32,6 +32,7 @@ #include "mpegvideo.h" #include "h264pred.h" +#include "rv34dsp.h" #define MB_TYPE_SEPARATE_DC 0x01000000 #define IS_SEPARATE_DC(a) ((a) & MB_TYPE_SEPARATE_DC) @@ -83,6 +84,7 @@ typedef struct SliceInfo{ /** decoder context */ typedef struct RV34DecContext{ MpegEncContext s; + RV34DSPContext rdsp; int8_t *intra_types_hist;///< old block types, used for prediction int8_t *intra_types; ///< block types int intra_types_stride;///< block types array stride |