comparison msmpeg4.c @ 9995:3141f69e3905 libavcodec

Do not check for both CONFIG_VC1_DECODER and CONFIG_WMV3_DECODER, the former depends upon the latter.
author diego
date Wed, 29 Jul 2009 09:54:49 +0000
parents 6cb61c6220c3
children 53d8841d4cc5
comparison
equal deleted inserted replaced
9994:cd2b3ecdb1c9 9995:3141f69e3905
107 case 4: 107 case 4:
108 case 5: 108 case 5:
109 s->y_dc_scale_table= wmv1_y_dc_scale_table; 109 s->y_dc_scale_table= wmv1_y_dc_scale_table;
110 s->c_dc_scale_table= wmv1_c_dc_scale_table; 110 s->c_dc_scale_table= wmv1_c_dc_scale_table;
111 break; 111 break;
112 #if CONFIG_WMV3_DECODER || CONFIG_VC1_DECODER 112 #if CONFIG_VC1_DECODER
113 case 6: 113 case 6:
114 s->y_dc_scale_table= wmv3_dc_scale_table; 114 s->y_dc_scale_table= wmv3_dc_scale_table;
115 s->c_dc_scale_table= wmv3_dc_scale_table; 115 s->c_dc_scale_table= wmv3_dc_scale_table;
116 break; 116 break;
117 #endif 117 #endif