diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-04-25 00:57:48 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-04-25 00:57:48 +0000 |
commit | dee6dde66928e427db32afd8730024fcf2a1ac35 (patch) | |
tree | 758c3e3fe71ae280380a170f1887dd50261667ae /libavcodec/h263dec.c | |
parent | f9e0f2a2065e4f6708a93891773fd5a18abefd47 (diff) | |
download | ffmpeg-dee6dde66928e427db32afd8730024fcf2a1ac35.tar.gz |
avoid unneeded clear_blocks()
Originally committed as revision 4157 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 6111f170a5..04c1e2726a 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -195,8 +195,7 @@ static int decode_slice(MpegEncContext *s){ } /* DCT & quantize */ - s->dsp.clear_blocks(s->block[0]); - + s->mv_dir = MV_DIR_FORWARD; s->mv_type = MV_TYPE_16X16; // s->mb_skipped = 0; |