Mercurial > libavcodec.hg
comparison msmpeg4.c @ 468:1e23eae32087 libavcodec
Minor warning cleanup.
author | mellum |
---|---|
date | Mon, 03 Jun 2002 11:16:11 +0000 |
parents | 583dcee270d2 |
children | 97da217aed7f |
comparison
equal
deleted
inserted
replaced
467:ad65941c8eb5 | 468:1e23eae32087 |
---|---|
51 int n, int coded); | 51 int n, int coded); |
52 static int msmpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr); | 52 static int msmpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr); |
53 static int msmpeg4_decode_motion(MpegEncContext * s, | 53 static int msmpeg4_decode_motion(MpegEncContext * s, |
54 int *mx_ptr, int *my_ptr); | 54 int *mx_ptr, int *my_ptr); |
55 static void msmpeg4v2_encode_motion(MpegEncContext * s, int val); | 55 static void msmpeg4v2_encode_motion(MpegEncContext * s, int val); |
56 static void init_h263_dc_for_msmpeg4(); | 56 static void init_h263_dc_for_msmpeg4(void); |
57 | 57 |
58 | 58 |
59 extern UINT32 inverse[256]; | 59 extern UINT32 inverse[256]; |
60 | 60 |
61 #ifdef DEBUG | 61 #ifdef DEBUG |
696 static VLC v2_mv_vlc; | 696 static VLC v2_mv_vlc; |
697 static VLC v1_intra_cbpc_vlc; | 697 static VLC v1_intra_cbpc_vlc; |
698 static VLC v1_inter_cbpc_vlc; | 698 static VLC v1_inter_cbpc_vlc; |
699 | 699 |
700 /* this table is practically identical to the one from h263 except that its inverted */ | 700 /* this table is practically identical to the one from h263 except that its inverted */ |
701 static void init_h263_dc_for_msmpeg4() | 701 static void init_h263_dc_for_msmpeg4(void) |
702 { | 702 { |
703 static int inited=0; | 703 static int inited=0; |
704 | 704 |
705 if(!inited){ | 705 if(!inited){ |
706 int level, uni_code, uni_len; | 706 int level, uni_code, uni_len; |