comparison cavs.c @ 8795:e18df4791658 libavcodec

fix multiple slices per frame
author stefang
date Tue, 10 Feb 2009 20:51:35 +0000
parents e9d9d946f213
children c6dd98bff427
comparison
equal deleted inserted replaced
8794:1f98fc269920 8795:e18df4791658
606 h->cy = h->picture.data[0] + h->mby*16*h->l_stride; 606 h->cy = h->picture.data[0] + h->mby*16*h->l_stride;
607 h->cu = h->picture.data[1] + h->mby*8*h->c_stride; 607 h->cu = h->picture.data[1] + h->mby*8*h->c_stride;
608 h->cv = h->picture.data[2] + h->mby*8*h->c_stride; 608 h->cv = h->picture.data[2] + h->mby*8*h->c_stride;
609 if(h->mby == h->mb_height) { //frame end 609 if(h->mby == h->mb_height) { //frame end
610 return 0; 610 return 0;
611 } else {
612 //check_for_slice(h);
613 } 611 }
614 } 612 }
615 return 1; 613 return 1;
616 } 614 }
617 615