Commit d87283ed authored by Jean-Marc Dressler's avatar Jean-Marc Dressler

Correction de 2 petites erreurs :
- vdec_idct.h : oubli d'un point virgule
- video_parser.h : dupplication du champs pppl_dct_dc_size
parent 1a1ae383
......@@ -147,6 +147,6 @@ typedef void (*f_idct_t)( struct vdec_thread_s *, elem_t*, int );
* Prototypes
*****************************************************************************/
void vdec_DummyIDCT( struct vdec_thread_s *, elem_t*, int );
void vdec_InitIDCT (struct vdec_thread_s * p_vdec)
void vdec_InitIDCT (struct vdec_thread_s * p_vdec);
void vdec_SparseIDCT( struct vdec_thread_s *, elem_t*, int );
void vdec_IDCT( struct vdec_thread_s *, elem_t*, int );
......@@ -67,7 +67,6 @@ typedef struct vpar_thread_s
address increment */
/* variable length codes for the structure dct_dc_size */
lookup_t pppl_dct_dc_size[2][2][32];
lookup_t pppl_dct_dc_size[2][2][32];
/* tables for macroblock types 0=P 1=B */
lookup_t pl_mb_type[2][64];
/* table for coded_block_pattern */
......
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