Home | History | Annotate | Download | only in source

Lines Matching refs:mbNum

458           mbNum         current macroblock number
474 image_t *image, u32 mbNum, u32 constrainedIntraPred, u8 *data)
493 ASSERT(mbNum < image->width * image->height);
496 h264bsdGetNeighbourPels(image, pelAbove, pelLeft, mbNum);
540 void h264bsdGetNeighbourPels(image_t *image, u8 *above, u8 *left, u32 mbNum)
555 ASSERT(mbNum < image->width * image->height);
557 if (!mbNum)
562 row = mbNum / width;
563 col = mbNum - row * width;