diff options
author | Måns Rullgård <mans@mansr.com> | 2010-08-03 20:59:00 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-08-03 20:59:00 +0000 |
commit | f079a64aea0d19dd7adfc045747cd4b4dfb6225c (patch) | |
tree | f02085b637c2b6386bc96ed92aac18e7b8450383 /libavcodec/cavs.h | |
parent | 61ee75bbf86cc2a69fb02c32e391c197ddd9fcf3 (diff) | |
download | ffmpeg-f079a64aea0d19dd7adfc045747cd4b4dfb6225c.tar.gz |
Move cavs dsp functions to their own struct
Originally committed as revision 24685 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cavs.h')
-rw-r--r-- | libavcodec/cavs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/cavs.h b/libavcodec/cavs.h index 729c83ea7b..dfa320fa84 100644 --- a/libavcodec/cavs.h +++ b/libavcodec/cavs.h @@ -24,6 +24,7 @@ #include "dsputil.h" #include "mpegvideo.h" +#include "cavsdsp.h" #define SLICE_MAX_START_CODE 0x000001af #define EXT_START_CODE 0x000001b5 @@ -153,6 +154,7 @@ struct dec_2dvlc { typedef struct { MpegEncContext s; + CAVSDSPContext cdsp; Picture picture; ///< currently decoded frame Picture DPB[2]; ///< reference frames int dist[2]; ///< temporal distances from current frame to ref frames |