diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-07-15 14:15:10 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-07-15 14:15:10 +0000 |
commit | 0fd90455ecdf4f9be58c510e0a85d24829cf8845 (patch) | |
tree | a397748c44c59ba8fc26265af9200a2f3615b8d7 /libavcodec/rv10.c | |
parent | cd141f4c22175b7ef976e4ad351afafd2e7838a3 (diff) | |
download | ffmpeg-0fd90455ecdf4f9be58c510e0a85d24829cf8845.tar.gz |
uvlinesize
export has_b_frames
mb_skip with more than 2 ip buffers
Originally committed as revision 762 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv10.c')
-rw-r--r-- | libavcodec/rv10.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c index 9ba12befe3..438d0dd387 100644 --- a/libavcodec/rv10.c +++ b/libavcodec/rv10.c @@ -487,8 +487,8 @@ static int rv10_decode_frame(AVCodecContext *avctx, pict->data[1] = s->current_picture[1]; pict->data[2] = s->current_picture[2]; pict->linesize[0] = s->linesize; - pict->linesize[1] = s->linesize / 2; - pict->linesize[2] = s->linesize / 2; + pict->linesize[1] = s->uvlinesize; + pict->linesize[2] = s->uvlinesize; avctx->quality = s->qscale; *data_size = sizeof(AVPicture); |