comparison mpegvideo.c @ 628:f596db4aa871 libavcodec

sun solaris compilation bugfix, patch by (Martin Olschewski <olschewski at zpr dot uni-koeln dot de>)
author michaelni
date Fri, 30 Aug 2002 18:17:20 +0000
parents bb6a69f9d409
children 3e0f62e5eed6
comparison
equal deleted inserted replaced
627:79c43f519d02 628:f596db4aa871
150 #ifdef HAVE_MMX 150 #ifdef HAVE_MMX
151 MPV_common_init_mmx(s); 151 MPV_common_init_mmx(s);
152 #endif 152 #endif
153 #ifdef ARCH_ALPHA 153 #ifdef ARCH_ALPHA
154 MPV_common_init_axp(s); 154 MPV_common_init_axp(s);
155 #endif
156 #ifdef HAVE_MLIB
157 MPV_common_init_mlib(s);
155 #endif 158 #endif
156 159
157 s->mb_width = (s->width + 15) / 16; 160 s->mb_width = (s->width + 15) / 16;
158 s->mb_height = (s->height + 15) / 16; 161 s->mb_height = (s->height + 15) / 16;
159 162