Mercurial > mplayer.hg
changeset 14046:4802041ab8e3
Output more information about vids, aids, sids, alangs and slangs with -identify. Patch by kiriuja <mplayer-patches@en-directo.net>
author | mosu |
---|---|
date | Thu, 25 Nov 2004 22:24:00 +0000 |
parents | 7a129428a408 |
children | 2cc40708501d |
files | libmpdemux/demux_mkv.c libmpdemux/demux_ogg.c libmpdemux/demux_ts.c libmpdemux/demuxer.c libmpdemux/open.c mencoder.c mp_msg.h mplayer.c vobsub.c |
diffstat | 9 files changed, 103 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpdemux/demux_mkv.c Thu Nov 25 21:47:58 2004 +0000 +++ b/libmpdemux/demux_mkv.c Thu Nov 25 22:24:00 2004 +0000 @@ -228,6 +228,7 @@ extern char *dvdsub_lang; extern char *audio_lang; extern int dvdsub_id; +extern int demux_aid_vid_mismatch; static mkv_track_t * @@ -1484,14 +1485,26 @@ { case MATROSKA_TRACK_VIDEO: type = "video"; + if (identify) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_VIDEO_ID=%d\n", vid); sprintf (str, "-vid %u", vid++); break; case MATROSKA_TRACK_AUDIO: type = "audio"; + if (identify) + { + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AUDIO_ID=%d\n", aid); + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AID_%d_LANG=%s\n", aid, mkv_d->tracks[i]->language); + } sprintf (str, "-aid %u, -alang %.5s",aid++,mkv_d->tracks[i]->language); break; case MATROSKA_TRACK_SUBTITLE: type = "subtitles"; + if (identify) + { + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_SUBTITLE_ID=%d\n", sid); + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_SID_%d_LANG=%s\n", sid, mkv_d->tracks[i]->language); + } sprintf (str, "-sid %u, -slang %.5s",sid++,mkv_d->tracks[i]->language); break; } @@ -2097,6 +2110,8 @@ mp_msg (MSGT_DEMUX, MSGL_V, "[mkv] + a segment...\n"); + demux_aid_vid_mismatch = 1; // don't identify in new_sh_* since ids don't match + mkv_d = (mkv_demuxer_t *) malloc (sizeof (mkv_demuxer_t)); memset (mkv_d, 0, sizeof(mkv_demuxer_t)); demuxer->priv = mkv_d;
--- a/libmpdemux/demux_ogg.c Thu Nov 25 21:47:58 2004 +0000 +++ b/libmpdemux/demux_ogg.c Thu Nov 25 22:24:00 2004 +0000 @@ -116,6 +116,7 @@ int theora; int flac; int text; + int id; } ogg_stream_t; typedef struct ogg_demuxer { @@ -150,6 +151,7 @@ extern char *dvdsub_lang, *audio_lang; extern int dvdsub_id; +extern int demux_aid_vid_mismatch; //-------- subtitle support - should be moved to decoder layer, and queue // - subtitles up in demuxer buffer... @@ -448,6 +450,13 @@ else if (!strncasecmp(*cmt, "LANGUAGE=", 9)) { val = *cmt + 9; + if (identify) + { + if (ogg_d->subs[id].text) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_SID_%d_LANG=%s\n", ogg_d->subs[id].id, val); + else if (id != d->video->id) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AID_%d_LANG=%s\n", ogg_d->subs[id].id, val); + } // copy this language name into the array index = demux_ogg_sub_reverse_id(d, id); if (index >= 0) { @@ -797,11 +806,16 @@ sh_a = NULL; sh_v = NULL; + demux_aid_vid_mismatch = 1; // don't identify in new_sh_* since ids don't match + // Check for Vorbis if(pack.bytes >= 7 && ! strncmp(&pack.packet[1],"vorbis", 6) ) { sh_a = new_sh_audio(demuxer,ogg_d->num_sub); sh_a->format = 0xFFFE; ogg_d->subs[ogg_d->num_sub].vorbis = 1; + if (identify) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AUDIO_ID=%d\n", n_audio); + ogg_d->subs[ogg_d->num_sub].id = n_audio; n_audio++; mp_msg(MSGT_DEMUX,MSGL_V,"Ogg : stream %d is vorbis\n",ogg_d->num_sub); @@ -839,6 +853,9 @@ sh_v->bih->biWidth*sh_v->bih->biHeight); ogg_d->subs[ogg_d->num_sub].samplerate = sh_v->fps; ogg_d->subs[ogg_d->num_sub].theora = 1; + if (identify) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_VIDEO_ID=%d\n", n_video); + ogg_d->subs[ogg_d->num_sub].id = n_video; n_video++; mp_msg(MSGT_DEMUX,MSGL_V, "Ogg : stream %d is theora v%i.%i.%i %i:%i, %.3f FPS," @@ -856,6 +873,9 @@ } else if (pack.bytes >= 4 && !strncmp (&pack.packet[0], "fLaC", 4)) { sh_a = new_sh_audio(demuxer,ogg_d->num_sub); sh_a->format = mmioFOURCC('f', 'L', 'a', 'C'); + if (identify) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AUDIO_ID=%d\n", n_audio); + ogg_d->subs[ogg_d->num_sub].id = n_audio; n_audio++; ogg_d->subs[ogg_d->num_sub].flac = 1; sh_a->wf = NULL; @@ -883,6 +903,9 @@ sh_v->bih->biSizeImage=(sh_v->bih->biBitCount>>3)*sh_v->bih->biWidth*sh_v->bih->biHeight; ogg_d->subs[ogg_d->num_sub].samplerate = sh_v->fps; + if (identify) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_VIDEO_ID=%d\n", n_video); + ogg_d->subs[ogg_d->num_sub].id = n_video; n_video++; mp_msg(MSGT_DEMUX,MSGL_V,"Ogg stream %d is video (old hdr)\n",ogg_d->num_sub); if(verbose>0) print_video_header(sh_v->bih); @@ -904,6 +927,9 @@ memcpy(sh_a->wf+sizeof(WAVEFORMATEX),pack.packet+142,extra_size); ogg_d->subs[ogg_d->num_sub].samplerate = sh_a->samplerate; // * sh_a->channels; + if (identify) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AUDIO_ID=%d\n", n_audio); + ogg_d->subs[ogg_d->num_sub].id = n_audio; n_audio++; mp_msg(MSGT_DEMUX,MSGL_V,"Ogg stream %d is audio (old hdr)\n",ogg_d->num_sub); if(verbose>0) print_wave_header(sh_a->wf); @@ -932,6 +958,9 @@ sh_v->bih->biSizeImage=(sh_v->bih->biBitCount>>3)*sh_v->bih->biWidth*sh_v->bih->biHeight; ogg_d->subs[ogg_d->num_sub].samplerate= sh_v->fps; + if (identify) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_VIDEO_ID=%d\n", n_video); + ogg_d->subs[ogg_d->num_sub].id = n_video; n_video++; mp_msg(MSGT_DEMUX,MSGL_V,"Ogg stream %d is video (new hdr)\n",ogg_d->num_sub); if(verbose>0) print_video_header(sh_v->bih); @@ -955,6 +984,9 @@ memcpy(sh_a->wf+sizeof(WAVEFORMATEX),st+1,extra_size); ogg_d->subs[ogg_d->num_sub].samplerate = sh_a->samplerate; // * sh_a->channels; + if (identify) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AUDIO_ID=%d\n", n_audio); + ogg_d->subs[ogg_d->num_sub].id = n_audio; n_audio++; mp_msg(MSGT_DEMUX,MSGL_V,"Ogg stream %d is audio (new hdr)\n",ogg_d->num_sub); if(verbose>0) print_wave_header(sh_a->wf); @@ -964,6 +996,9 @@ mp_msg(MSGT_DEMUX, MSGL_V, "Ogg stream %d is text\n", ogg_d->num_sub); ogg_d->subs[ogg_d->num_sub].samplerate= get_uint64(&st->time_unit)/10; ogg_d->subs[ogg_d->num_sub].text = 1; + if (identify) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_SUBTITLE_ID=%d\n", ogg_d->n_text); + ogg_d->subs[ogg_d->num_sub].id = ogg_d->n_text; if (demuxer->sub->id == ogg_d->n_text) text_id = ogg_d->num_sub; ogg_d->n_text++;
--- a/libmpdemux/demux_ts.c Thu Nov 25 21:47:58 2004 +0000 +++ b/libmpdemux/demux_ts.c Thu Nov 25 22:24:00 2004 +0000 @@ -54,6 +54,7 @@ int ts_keep_broken=0; off_t ts_probe = TS_MAX_PROBE_SIZE; extern char *dvdsub_lang, *audio_lang; //for -alang +extern int demux_aid_vid_mismatch; typedef enum { @@ -510,12 +511,20 @@ if(is_video) { + if (identify) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_VIDEO_ID=%d\n", es.pid); chosen_pid = (req_vpid == es.pid); if((! chosen_pid) && (req_vpid > 0)) continue; } else if(is_audio) { + if (identify) + { + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AUDIO_ID=%d\n", es.pid); + if (es.lang[0] > 0) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AID_%d_LANG=%s\n", es.pid, es.lang); + } if(req_apid > 0) { chosen_pid = (req_apid == es.pid); @@ -533,6 +542,12 @@ } else if(is_sub) { + if (identify) + { + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_SUBTITLE_ID=%d\n", es.pid); + if (es.lang[0] > 0) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_SID_%d_LANG=%s\n", es.pid, es.lang); + } chosen_pid = (req_spid == es.pid); if((! chosen_pid) && (req_spid > 0)) continue; @@ -788,6 +803,7 @@ demuxer->sub->id = params.spid; priv->prog = params.prog; + demux_aid_vid_mismatch = 1; // don't identify in new_sh_* since ids don't match if(params.vtype != UNKNOWN) {
--- a/libmpdemux/demuxer.c Thu Nov 25 21:47:58 2004 +0000 +++ b/libmpdemux/demuxer.c Thu Nov 25 22:24:00 2004 +0000 @@ -21,6 +21,10 @@ #include "../libao2/afmt.h" #include "../libvo/fastmemcpy.h" +// Should be set to 1 by demux module if ids it passes to new_sh_audio and +// new_sh_video don't match aids and vids it accepts from the command line +int demux_aid_vid_mismatch = 0; + void free_demuxer_stream(demux_stream_t *ds){ ds_free_packs(ds); free(ds); @@ -89,6 +93,8 @@ sh->samplesize=2; sh->sample_format=AFMT_S16_NE; sh->audio_out_minsize=8192;/* default size, maybe not enough for Win32/ACM*/ + if (identify && !demux_aid_vid_mismatch) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AUDIO_ID=%d\n", id); } return demuxer->a_streams[id]; } @@ -112,6 +118,8 @@ mp_msg(MSGT_DEMUXER,MSGL_V,MSGTR_FoundVideoStream,id); demuxer->v_streams[id]=malloc(sizeof(sh_video_t)); memset(demuxer->v_streams[id],0,sizeof(sh_video_t)); + if (identify && !demux_aid_vid_mismatch) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_VIDEO_ID=%d\n", id); } return demuxer->v_streams[id]; } @@ -1404,6 +1412,8 @@ demuxer_t *vd,*ad = NULL,*sd = NULL; int afmt =DEMUXER_TYPE_UNKNOWN,sfmt = DEMUXER_TYPE_UNKNOWN ; + demux_aid_vid_mismatch = 0; + if(audio_stream) { as = open_stream(audio_stream,0,&afmt); if(!as) {
--- a/libmpdemux/open.c Thu Nov 25 21:47:58 2004 +0000 +++ b/libmpdemux/open.c Thu Nov 25 22:24:00 2004 +0000 @@ -378,6 +378,12 @@ tmp, d->audio_streams[d->nr_of_channels].id ); + if (identify) + { + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AUDIO_ID=%d\n", d->audio_streams[d->nr_of_channels].id); + if (language && tmp[0]) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AID_%d_LANG=%s\n", d->audio_streams[d->nr_of_channels].id, tmp); + } d->nr_of_channels++; } @@ -414,6 +420,12 @@ d->nr_of_subtitles, tmp ); + if (identify) + { + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_SUBTITLE_ID=%d\n", d->nr_of_subtitles); + if (language && tmp[0]) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_SID_%d_LANG=%s\n", d->nr_of_subtitles, tmp); + } d->nr_of_subtitles++; } mp_msg(MSGT_OPEN,MSGL_V,"[open] number of subtitles on disk: %d\n",d->nr_of_subtitles );
--- a/mencoder.c Thu Nov 25 21:47:58 2004 +0000 +++ b/mencoder.c Thu Nov 25 22:24:00 2004 +0000 @@ -143,6 +143,7 @@ //void resync_audio_stream(sh_audio_t *sh_audio){} int verbose=0; // must be global! +int identify=0; int quiet=0; double video_time_usage=0; double vout_time_usage=0;
--- a/mp_msg.h Thu Nov 25 21:47:58 2004 +0000 +++ b/mp_msg.h Thu Nov 25 22:24:00 2004 +0000 @@ -2,7 +2,9 @@ #ifndef _MP_MSG_H #define _MP_MSG_H -extern int verbose; // defined in mplayer.c +// defined in mplayer.c and mencoder.c +extern int verbose; +extern int identify; // verbosity elevel:
--- a/mplayer.c Thu Nov 25 21:47:58 2004 +0000 +++ b/mplayer.c Thu Nov 25 22:24:00 2004 +0000 @@ -760,6 +760,11 @@ mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_CantLoadSub, filename); if (subd == NULL || set_of_sub_size >= MAX_SUBTITLE_FILES) return; set_of_subtitles[set_of_sub_size] = subd; + if (identify) + { + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_FILE_SUB_ID=%d\n", set_of_sub_size); + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_FILE_SUB_FILENAME=%s\n", filename); + } ++set_of_sub_size; mp_msg(MSGT_FIXME, MSGL_FIXME, MSGTR_AddedSubtitleFile, set_of_sub_size, filename); }
--- a/vobsub.c Thu Nov 25 21:47:58 2004 +0000 +++ b/vobsub.c Thu Nov 25 22:24:00 2004 +0000 @@ -656,6 +656,12 @@ memcpy(vob->spu_streams[index].id, id, idlen); } vob->spu_streams_current = index; + if (identify) + { + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_VOBSUB_ID=%d\n", index); + if (id && idlen) + mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_VSID_%d_LANG=%s\n", index, vob->spu_streams[index].id); + } mp_msg(MSGT_VOBSUB,MSGL_V,"[vobsub] subtitle (vobsubid): %d language %s\n", index, vob->spu_streams[index].id); return 0;