0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

fix spudec bug

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4553 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
pontscho 2002-02-06 20:26:19 +00:00
parent a4396200f1
commit e5f0ff7cbf

View File

@ -1078,7 +1078,7 @@ if(!sh_video){
#ifdef USE_DVDREAD #ifdef USE_DVDREAD
current_module="spudec"; current_module="spudec";
vo_spudec=spudec_new_scaled(stream->priv?((dvd_priv_t *)(stream->priv))->cur_pgc->palette:NULL, vo_spudec=spudec_new_scaled(stream->type==STREAMTYPE_DVD?((dvd_priv_t *)(stream->priv))->cur_pgc->palette:NULL,
sh_video->disp_w, sh_video->disp_h); sh_video->disp_w, sh_video->disp_h);
if (vo_spudec!=NULL) if (vo_spudec!=NULL)
inited_flags|=INITED_SPUDEC; inited_flags|=INITED_SPUDEC;