comparison avcodec.h @ 2397:a579ef4a4f4a libavcodec

motion_val doxy
author michael
date Wed, 29 Dec 2004 12:14:14 +0000
parents 776e37360171
children d0b4f62a63ae
comparison
equal deleted inserted replaced
2396:7e360068b653 2397:a579ef4a4f4a
474 * - decoding: set by lavc\ 474 * - decoding: set by lavc\
475 */\ 475 */\
476 uint8_t *mbskip_table;\ 476 uint8_t *mbskip_table;\
477 \ 477 \
478 /**\ 478 /**\
479 * Motion vector table\ 479 * Motion vector table.\
480 * @code\
481 * example:\
482 * int mv_sample_log2= 4 - motion_subsample_log2;\
483 * int mb_width= (width+15)>>4;\
484 * int mv_stride= (mb_width << mv_sample_log2) + 1;\
485 * motion_val[direction][x + y*mv_stride][0->mv_x, 1->mv_y];\
486 * @endcode\
480 * - encoding: set by user\ 487 * - encoding: set by user\
481 * - decoding: set by lavc\ 488 * - decoding: set by lavc\
482 */\ 489 */\
483 int16_t (*motion_val[2])[2];\ 490 int16_t (*motion_val[2])[2];\
484 \ 491 \