Commit f798179b authored by michael's avatar michael

motion_val doxy


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3776 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent cc1a537e
...@@ -476,7 +476,14 @@ typedef struct AVPanScan{ ...@@ -476,7 +476,14 @@ typedef struct AVPanScan{
uint8_t *mbskip_table;\ uint8_t *mbskip_table;\
\ \
/**\ /**\
* Motion vector table\ * Motion vector table.\
* @code\
* example:\
* int mv_sample_log2= 4 - motion_subsample_log2;\
* int mb_width= (width+15)>>4;\
* int mv_stride= (mb_width << mv_sample_log2) + 1;\
* motion_val[direction][x + y*mv_stride][0->mv_x, 1->mv_y];\
* @endcode\
* - encoding: set by user\ * - encoding: set by user\
* - decoding: set by lavc\ * - decoding: set by lavc\
*/\ */\
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment