Skip to content
Snippets Groups Projects
Commit 0439c09d authored by Diego Biurrun's avatar Diego Biurrun
Browse files

Make one comment slightly clearer and more readable.

Originally committed as revision 17272 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 63a21bc0
No related branches found
No related tags found
No related merge requests found
...@@ -165,7 +165,7 @@ void ff_xvmc_decode_mb(MpegEncContext *s) ...@@ -165,7 +165,7 @@ void ff_xvmc_decode_mb(MpegEncContext *s)
if (s->mv_dir & MV_DIR_FORWARD) { if (s->mv_dir & MV_DIR_FORWARD) {
mv_block->macroblock_type |= XVMC_MB_TYPE_MOTION_FORWARD; mv_block->macroblock_type |= XVMC_MB_TYPE_MOTION_FORWARD;
//pmv[n][dir][xy]=mv[dir][n][xy] // PMV[n][dir][xy] = mv[dir][n][xy]
mv_block->PMV[0][0][0] = s->mv[0][0][0]; mv_block->PMV[0][0][0] = s->mv[0][0][0];
mv_block->PMV[0][0][1] = s->mv[0][0][1]; mv_block->PMV[0][0][1] = s->mv[0][0][1];
mv_block->PMV[1][0][0] = s->mv[0][1][0]; mv_block->PMV[1][0][0] = s->mv[0][1][0];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment