summaryrefslogtreecommitdiff
path: root/libavcodec/mjpeg.c
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2002-06-05 18:35:28 +0000
committerFabrice Bellard <fabrice@bellard.org>2002-06-05 18:35:28 +0000
commitee4b748b7f0f612260e18991be4e39d266c82614 (patch)
tree466a62ba01ca7e64f323a435697aa610bd90d27f /libavcodec/mjpeg.c
parent5bcfd1ad987fc2e602c439b101826bea8ecf28d8 (diff)
use ff_idct_put()
Originally committed as revision 669 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mjpeg.c')
-rw-r--r--libavcodec/mjpeg.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/mjpeg.c b/libavcodec/mjpeg.c
index 016ccd7307..577e9d884a 100644
--- a/libavcodec/mjpeg.c
+++ b/libavcodec/mjpeg.c
@@ -992,13 +992,12 @@ static int mjpeg_decode_sos(MJpegDecodeContext *s,
goto the_end;
}
// dprintf("mb: %d %d processed\n", mb_y, mb_x);
- ff_idct (s->block);
ptr = s->current_picture[c] +
(s->linesize[c] * (v * mb_y + y) * 8) +
(h * mb_x + x) * 8;
if (s->interlaced && s->bottom_field)
ptr += s->linesize[c] >> 1;
- put_pixels_clamped(s->block, ptr, s->linesize[c]);
+ ff_idct_put(ptr, s->linesize[c], s->block);
if (++x == h) {
x = 0;
y++;