comparison intrax8.c @ 5896:43eabd0fd21b libavcodec

indention
author michael
date Fri, 09 Nov 2007 21:55:53 +0000
parents 4f599ff338fd
children 6c7074038953
comparison
equal deleted inserted replaced
5895:4f599ff338fd 5896:43eabd0fd21b
651 651
652 s->dest[0] = s->current_picture.data[0]; 652 s->dest[0] = s->current_picture.data[0];
653 s->dest[1] = s->current_picture.data[1]; 653 s->dest[1] = s->current_picture.data[1];
654 s->dest[2] = s->current_picture.data[2]; 654 s->dest[2] = s->current_picture.data[2];
655 655
656 s->dest[0] += s->mb_y * linesize << 3; 656 s->dest[0] += s->mb_y * linesize << 3;
657 s->dest[1] += ( s->mb_y&(~1) ) * uvlinesize << 2;//chroma blocks are on add rows 657 s->dest[1] += ( s->mb_y&(~1) ) * uvlinesize << 2;//chroma blocks are on add rows
658 s->dest[2] += ( s->mb_y&(~1) ) * uvlinesize << 2; 658 s->dest[2] += ( s->mb_y&(~1) ) * uvlinesize << 2;
659 } 659 }
660 660
661 /** 661 /**
662 * Initialize IntraX8 frame decoder. 662 * Initialize IntraX8 frame decoder.
663 * Requires valid MpegEncContext with valid s->mb_width before calling. 663 * Requires valid MpegEncContext with valid s->mb_width before calling.