From 0b2540a0c1236d7cfe72849ecec2d9408adb20b6 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 7 Feb 2002 23:48:24 +0000 Subject: [PATCH] avoid copying input when encoding non intra stuff too Originally committed as revision 288 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpegvideo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 7937be4955..0d5695440d 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -470,16 +470,16 @@ int MPV_encode_picture(AVCodecContext *avctx, h >>= 1; } - if(s->intra_only && dest_wrap==src_wrap){ - s->current_picture[i] = pict->data[i]; + if(dest_wrap==src_wrap){ + s->new_picture[i] = pict->data[i]; }else { for(j=0;jnew_picture[i] = s->current_picture[i]; } - s->new_picture[i] = s->current_picture[i]; } encode_picture(s, s->picture_number);