Skip to content
Snippets Groups Projects
Commit 61436073 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

motion_val doxy

Originally committed as revision 3776 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5ad984c9
No related merge requests found
...@@ -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\
*/\ */\
......
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