Mercurial > mplayer.hg
changeset 21203:235a8e71ed6f
support for -slang and subtitles in dvdnav; patch by Attila Otvos (oattila chello hu) and me. No palette yet
author | nicodvb |
---|---|
date | Sat, 25 Nov 2006 14:46:21 +0000 |
parents | 8ed444639678 |
children | 1ddb1a86e419 |
files | mplayer.c |
diffstat | 1 files changed, 30 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mplayer.c Sat Nov 25 13:39:21 2006 +0000 +++ b/mplayer.c Sat Nov 25 14:46:21 2006 +0000 @@ -1050,6 +1050,13 @@ } #endif +#ifdef USE_DVDNAV + if (vo_spudec==NULL && stream->type==STREAMTYPE_DVDNAV) { + current_module="spudec_init_dvdnav"; + vo_spudec=spudec_new_scaled(NULL, sh_video->disp_w, sh_video->disp_h); + } +#endif + if ((vo_spudec == NULL) && (demuxer->type == DEMUXER_TYPE_MATROSKA) && (d_dvdsub->sh != NULL) && (((sh_sub_t *)d_dvdsub->sh)->type == 'v')) { sh_sub_t *mkv_sh_sub = (sh_sub_t *)d_dvdsub->sh; @@ -2337,7 +2344,14 @@ spudec_reset(vo_spudec); } #endif - if (stream->type != STREAMTYPE_DVD) { + +#ifdef USE_DVDNAV + if (vo_spudec && stream->type == STREAMTYPE_DVDNAV) { + d_dvdsub->id = dvdsub_id; + spudec_reset(vo_spudec); + } +#endif + if (stream->type != STREAMTYPE_DVD && stream->type != STREAMTYPE_DVDNAV) { int i = 0; for (d_dvdsub->id = 0; d_dvdsub->id < MAX_S_STREAMS; d_dvdsub->id++) { if (demuxer->s_streams[d_dvdsub->id]) { @@ -2365,7 +2379,7 @@ if(vo_spudec) vo_osd_changed(OSDTYPE_SPU); } #ifdef USE_DVDREAD - if (vo_spudec && stream->type == STREAMTYPE_DVD && dvdsub_id < 0 && reset_spu) { + if (vo_spudec && (stream->type == STREAMTYPE_DVD || stream->type == STREAMTYPE_DVDNAV) && dvdsub_id < 0 && reset_spu) { dvdsub_id = -2; d_dvdsub->id = dvdsub_id; spudec_reset(vo_spudec); @@ -4156,6 +4170,18 @@ } #endif +#ifdef USE_DVDNAV +if(stream->type==STREAMTYPE_DVDNAV){ + current_module="dvdnav lang->id"; + if(dvdsub_lang && dvdsub_id==-2) dvdsub_id=-1; + if(dvdsub_lang && dvdsub_id==-1) dvdsub_id=dvdnav_sid_from_lang(stream,dvdsub_lang); + // setup global sub numbering + global_sub_indices[SUB_SOURCE_DEMUX] = global_sub_size; // the global # of the first demux-specific sub. + global_sub_size += dvdnav_number_of_subs(stream); + current_module=NULL; +} +#endif + // CACHE2: initial prefill: 20% later: 5% (should be set by -cacheopts) goto_enable_cache: if(stream_cache_size>0){ @@ -4254,7 +4280,7 @@ } inited_flags|=INITED_DEMUXER; -if (stream->type != STREAMTYPE_DVD) { +if (stream->type != STREAMTYPE_DVD && stream->type != STREAMTYPE_DVDNAV) { int i; // setup global sub numbering global_sub_indices[SUB_SOURCE_DEMUX] = global_sub_size; // the global # of the first demux-specific sub. @@ -4368,7 +4394,7 @@ //================== Read SUBTITLES (DVD & TEXT) ========================== if(vo_spudec==NULL && sh_video && - (stream->type==STREAMTYPE_DVD || d_dvdsub->id >= 0)){ + (stream->type==STREAMTYPE_DVD || stream->type == STREAMTYPE_DVDNAV || d_dvdsub->id >= 0)){ init_vo_spudec(); }