comparison mplayer.c @ 31837:46c25393f99d

Remove useless cast.
author reimar
date Tue, 03 Aug 2010 17:01:13 +0000
parents 8187612b1af8
children 5edb6679ccad
comparison
equal deleted inserted replaced
31836:dcd515ac5f6c 31837:46c25393f99d
1185 vo_spudec=spudec_new_scaled(palette, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, NULL, 0); 1185 vo_spudec=spudec_new_scaled(palette, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, NULL, 0);
1186 } 1186 }
1187 #endif 1187 #endif
1188 1188
1189 if (vo_spudec==NULL) { 1189 if (vo_spudec==NULL) {
1190 sh_sub_t *sh = (sh_sub_t *)mpctx->d_sub->sh; 1190 sh_sub_t *sh = mpctx->d_sub->sh;
1191 current_module="spudec_init_normal"; 1191 current_module="spudec_init_normal";
1192 vo_spudec=spudec_new_scaled(NULL, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, sh->extradata, sh->extradata_len); 1192 vo_spudec=spudec_new_scaled(NULL, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, sh->extradata, sh->extradata_len);
1193 spudec_set_font_factor(vo_spudec,font_factor); 1193 spudec_set_font_factor(vo_spudec,font_factor);
1194 } 1194 }
1195 1195