diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2008-11-07 07:18:22 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2008-11-07 07:18:22 +0000 |
commit | e1223112615cfc35779b9d0380332ed7c4085bb0 (patch) | |
tree | 2e38c40032978f611b6b6c9db8e791bc1b0fe52c /libavcodec/rv34.h | |
parent | e3b07e1a74abea3534f6e922d364c70c47521f2c (diff) | |
download | ffmpeg-e1223112615cfc35779b9d0380332ed7c4085bb0.tar.gz |
Calculating an additional MV-based deblocking pattern is the same
for both RV3 and RV4, so move it into common code.
Originally committed as revision 15786 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv34.h')
-rw-r--r-- | libavcodec/rv34.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/rv34.h b/libavcodec/rv34.h index e521dbbbf9..16e0faa423 100644 --- a/libavcodec/rv34.h +++ b/libavcodec/rv34.h @@ -115,7 +115,6 @@ typedef struct RV34DecContext{ int (*parse_slice_header)(struct RV34DecContext *r, GetBitContext *gb, SliceInfo *si); int (*decode_mb_info)(struct RV34DecContext *r); int (*decode_intra_types)(struct RV34DecContext *r, GetBitContext *gb, int8_t *dst); - int (*set_deblock_coef)(struct RV34DecContext *r); void (*loop_filter)(struct RV34DecContext *r); }RV34DecContext; |