diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-11-11 09:40:17 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-11-11 09:40:17 +0000 |
commit | eb4b3dd3c3ea1ca705b51613fb800c10c99a47bb (patch) | |
tree | c8e001972c5212f766a2bf6a41a3059c135f24bb /libavcodec/rv10.c | |
parent | fb602cd15e2401e5305afd57f501783f4b636303 (diff) | |
download | ffmpeg-eb4b3dd3c3ea1ca705b51613fb800c10c99a47bb.tar.gz |
* using DSPContext - so each codec could use its local (sub)set of CPU extension
Originally committed as revision 1194 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv10.c')
-rw-r--r-- | libavcodec/rv10.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c index 5932126c87..02da93a6c5 100644 --- a/libavcodec/rv10.c +++ b/libavcodec/rv10.c @@ -447,7 +447,7 @@ static int rv10_decode_packet(AVCodecContext *avctx, printf("**mb x=%d y=%d\n", s->mb_x, s->mb_y); #endif - clear_blocks(s->block[0]); + s->dsp.clear_blocks(s->block[0]); s->mv_dir = MV_DIR_FORWARD; s->mv_type = MV_TYPE_16X16; if (ff_h263_decode_mb(s, s->block) == SLICE_ERROR) { |