comparison h263dec.c @ 10821:030e30b050e4 libavcodec

Use h263 tables in msmpeg4v1 dont duplicate them halfway.
author michael
date Fri, 08 Jan 2010 19:10:11 +0000
parents c03a8c6c755b
children 9ccc13d1144d
comparison
equal deleted inserted replaced
10820:22afa8a8f4d5 10821:030e30b050e4
114 if (MPV_common_init(s) < 0) 114 if (MPV_common_init(s) < 0)
115 return -1; 115 return -1;
116 116
117 if (CONFIG_MSMPEG4_DECODER && s->h263_msmpeg4) 117 if (CONFIG_MSMPEG4_DECODER && s->h263_msmpeg4)
118 ff_msmpeg4_decode_init(s); 118 ff_msmpeg4_decode_init(s);
119 else 119
120 h263_decode_init_vlc(s); 120 h263_decode_init_vlc(s);
121 121
122 return 0; 122 return 0;
123 } 123 }
124 124