diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2008-01-18 07:04:11 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2008-01-18 07:04:11 +0000 |
commit | b008e6b869ae2b4cc0de36b9b21b81eca2b97ade (patch) | |
tree | a452f5e9fb7ab28dc084a6e46741b58e5e1e0819 /libavcodec/rv34.h | |
parent | 094c09bb4a58060f1be02c1fd6b44e0e144c206e (diff) | |
download | ffmpeg-b008e6b869ae2b4cc0de36b9b21b81eca2b97ade.tar.gz |
Save coded block patterns for future loop filtering.
Originally committed as revision 11554 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv34.h')
-rw-r--r-- | libavcodec/rv34.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/rv34.h b/libavcodec/rv34.h index 0aa5911d5c..0cb76de707 100644 --- a/libavcodec/rv34.h +++ b/libavcodec/rv34.h @@ -99,6 +99,9 @@ typedef struct RV34DecContext{ int rv30; ///< indicates which RV variasnt is currently decoded int rpr; ///< one field size in RV30 slice header + uint16_t *cbp_luma; ///< CBP values for luma subblocks + uint8_t *cbp_chroma; ///< CBP values for chroma subblocks + /** 8x8 block available flags (for MV prediction) */ DECLARE_ALIGNED_8(uint32_t, avail_cache[3*4]); |