我正在尝试查找帧中给定宏块的像素值。 我所做的是:
//for all macroblock in this frame
mb_height and mb_width are the number of macroblock horizontally and
vertically in the frame
for(int mby=0; mby<mb_height;mby++)
{
for(int mbx=0; mbx<mb_width;mbx++)
{
int xy = mby*mb_stride+mbx;
//Now for this 16x16 macroblock
16 is the dimension of the macroblock (16x16 macroblock)
for(int y=0; y<16;y++)
{
for(int x=0; x<16;x++)
{
//All pixels YUV value for this macroblock
y = data[0][linesize[0]*y+x];
u = data[1][linesize[1]*(y/2)+x/2]
v = data[2][linesize[2]*(y/2)+x/2]
}
}
#Let's go to an other macroblock
}
}
问题是,对于所有宏块,我都有相同的Y
,u
和v
值。的确如此,因为我对每个宏块仅使用相同的宽度和高度。
我的问题是知道如何在上面的代码中添加差异以查找该帧中每个宏块的像素yuv值。也许我必须使用宏块的坐标(MBX,MBY)或关联的运动矢量的坐标(mvx,mvy)才能做到这一点差异,但我不知道该怎么做。上述循环中的mbx和mby不是mocroblock的坐标,而是循环的整数。
请帮忙。
答案 0 :(得分:0)
您不会在外部循环中增加mbx和mby