projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b935781
)
avoid copying input when encoding non intra stuff too
author
Michael Niedermayer
<michaelni@gmx.at>
Thu, 7 Feb 2002 23:48:24 +0000
(23:48 +0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Thu, 7 Feb 2002 23:48:24 +0000
(23:48 +0000)
Originally committed as revision 288 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/mpegvideo.c
patch
|
blob
|
history
diff --git
a/libavcodec/mpegvideo.c
b/libavcodec/mpegvideo.c
index 7937be495515d8ed7ba49e6a4b9d70aabe486715..0d5695440dfbd9d81a6fd1a53c830e64a83f4847 100644
(file)
--- 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;j<h;j++) {
memcpy(dest, src, w);
dest += dest_wrap;
src += src_wrap;
}
+ s->new_picture[i] = s->current_picture[i];
}
- s->new_picture[i] = s->current_picture[i];
}
encode_picture(s, s->picture_number);