You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
488 B
16 lines
488 B
/*****************************************************************************
|
|
* vpar_motion.h : video parser motion compensation management
|
|
* (c)1999 VideoLAN
|
|
*****************************************************************************/
|
|
|
|
typedef struct
|
|
{
|
|
char i_val, i_len;
|
|
} mv_tab_t;
|
|
|
|
/*
|
|
* Prototypes
|
|
*/
|
|
|
|
void vpar_MPEG1MotionVector ( vpar_thread_t * p_vpar, macroblock_t * p_mb, int i_s );
|
|
void vpar_MPEG2MotionVector ( vpar_thread_t * p_vpar, macroblock_t * p_mb, int i_s );
|
|
|