diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2003-07-27 20:45:09 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2003-07-27 20:45:09 +0000 |
commit | c39c1dcae57823392aaf65dd161bec896b02e5d0 (patch) | |
tree | 70479cd113803c3cf74db04f55d3b7b5925c11b1 /libavcodec | |
parent | 3aff069b580503c1a21315e9fe539d02f210648d (diff) | |
download | ffmpeg-streaming-c39c1dcae57823392aaf65dd161bec896b02e5d0.zip ffmpeg-streaming-c39c1dcae57823392aaf65dd161bec896b02e5d0.tar.gz |
410p -> 411p
Originally committed as revision 2091 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/cljr.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/cljr.c b/libavcodec/cljr.c index 4611d61..cfefb4a 100644 --- a/libavcodec/cljr.c +++ b/libavcodec/cljr.c @@ -67,9 +67,8 @@ static int decode_frame(AVCodecContext *avctx, for(y=0; y<avctx->height; y++){ int offset; uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ]; - uint8_t *cb= &a->picture.data[1][ (y>>2)*a->picture.linesize[1] ]; - uint8_t *cr= &a->picture.data[2][ (y>>2)*a->picture.linesize[2] ]; - + uint8_t *cb= &a->picture.data[1][ y*a->picture.linesize[1] ]; + uint8_t *cr= &a->picture.data[2][ y*a->picture.linesize[2] ]; for(x=0; x<avctx->width; x+=4){ luma[3] = get_bits(&a->gb, 5) << 3; luma[2] = get_bits(&a->gb, 5) << 3; @@ -127,7 +126,7 @@ static int decode_init(AVCodecContext *avctx){ common_init(avctx); - avctx->pix_fmt= PIX_FMT_YUV410P; + avctx->pix_fmt= PIX_FMT_YUV411P; return 0; } |