comparison h264.c @ 4390:789336787fcb libavcodec

flame
author michael
date Tue, 23 Jan 2007 13:42:09 +0000
parents 3afddc65631b
children 20944c70a3c0
comparison
equal deleted inserted replaced
4389:3afddc65631b 4390:789336787fcb
2771 const int full_mx= mx>>2; 2771 const int full_mx= mx>>2;
2772 const int full_my= my>>2; 2772 const int full_my= my>>2;
2773 const int pic_width = 16*s->mb_width; 2773 const int pic_width = 16*s->mb_width;
2774 const int pic_height = 16*s->mb_height >> MB_MBAFF; 2774 const int pic_height = 16*s->mb_height >> MB_MBAFF;
2775 2775
2776 if(!pic->data[0]) 2776 if(!pic->data[0]) //FIXME this is unacceptable, some senseable error concealment must be done for missing reference frames
2777 return; 2777 return;
2778 2778
2779 if(mx&7) extra_width -= 3; 2779 if(mx&7) extra_width -= 3;
2780 if(my&7) extra_height -= 3; 2780 if(my&7) extra_height -= 3;
2781 2781