[Mp4-tech] Is motion vector retrieval wrong in function: void
Conceal_Error( ) in the file decoder.c in the encoder?
Dalei Wu
wu.dalei gmail.com
Thu Jan 31 00:20:23 EST 2008
Dear experts,
I use the simulated decoder in the encoder to simulate decoding with packet
loss, I made the following configuration in the file encoder_extended.cfg:
ProfileIDC: 88 (extended)
RDOptimization: 3 (rd-optimized with losses)
PartitionMode: 1 (three partitions)
LossRateA: 10
LossRateA: 10
LossRateA: 10
When I ran the program, it was stopped by the following MV retrieval in the
function of the encoder:
void Conceal_Error(imgpel **inY, int mb_y, int mb_x, imgpel ***refY, byte
**s_map)
{
...
switch(s_map[mb_y][mb_x])
{
...
case 5
...
mv[i][block_y][block_x]=tmp_mv[mb_y*BLOCK_SIZE+block_y][mb_x*BLOCK_SIZE+block_x
+4][i]
...
}
}
why does it need to plus 4 at the block_x direction?
I think it should be
mv[i][block_y][block_x]=tmp_mv[mb_y*BLOCK_SIZE+block_y][mb_x*BLOCK_SIZE+block_x][i]
Thanks,
Dalei
--
----------------------------------------------------
Dalei Wu
Computer & Electronics Engineering Dept.
University of Nebraska Lincoln
Omaha, NE, USA 68182-0572
----------------------------------------------------
-------------- next part --------------
An HTML attachment was scrubbed...
URL: /pipermail/mp4-tech/attachments/20080131/58614f8f/attachment.html
More information about the Mp4-tech
mailing list