# HG changeset patch # User corey # Date 1140428170 0 # Node ID 16633b9c0953294544ce598d02fefa3345d11b83 # Parent 9ef8d2944c21eb9b318d2837fcc5796d0e1cde8d New option: -ignore-start Makes mplayer and mencoder ignore dwStart in AVI files. diff -r 9ef8d2944c21 -r 16633b9c0953 DOCS/man/en/mplayer.1 --- a/DOCS/man/en/mplayer.1 Mon Feb 20 04:49:06 2006 +0000 +++ b/DOCS/man/en/mplayer.1 Mon Feb 20 09:36:10 2006 +0000 @@ -1101,6 +1101,18 @@ with \-ovc copy; use \-audio-delay instead. . .TP +.B \-ignore-start +Ignore the specified starting time for streams in AVI files. +In MPlayer, this nullifies stream delays in files encoded with +the \-audio-delay option. +During encoding, this option prevents MEncoder from transferring +original stream start times to the new file; the \-audio-delay option is +not affected. +Note that MEncoder sometimes adjusts stream starting times +automatically to compensate for anticipated decoding delays, so don't +use this option for encoding without testing it first. +. +.TP .B \-demuxer <[+]name> Force demuxer type. Use a '+' before the name to force it, this will skip some checks! diff -r 9ef8d2944c21 -r 16633b9c0953 cfg-common.h --- a/cfg-common.h Mon Feb 20 04:49:06 2006 +0000 +++ b/cfg-common.h Mon Feb 20 09:36:10 2006 +0000 @@ -150,6 +150,10 @@ // set a-v distance {"delay", &audio_delay, CONF_TYPE_FLOAT, CONF_RANGE, -100.0, 100.0, NULL}, + // ignore header-specified delay (dwStart) + {"ignore-start", &ignore_start, CONF_TYPE_FLAG, 0, 0, 1, NULL}, + {"noignore-start", &ignore_start, CONF_TYPE_FLAG, 0, 1, 0, NULL}, + #ifdef USE_LIBA52 {"a52drc", &a52_drc_level, CONF_TYPE_FLOAT, CONF_RANGE, 0, 1, NULL}, #endif diff -r 9ef8d2944c21 -r 16633b9c0953 mencoder.c --- a/mencoder.c Mon Feb 20 04:49:06 2006 +0000 +++ b/mencoder.c Mon Feb 20 09:36:10 2006 +0000 @@ -156,6 +156,7 @@ static float audio_preload=0.5; static float audio_delay_fix=0.0; static float audio_delay=0.0; +static int ignore_start=0; static int audio_density=2; float force_fps=0; @@ -866,6 +867,7 @@ mux_v->bih->biCompression, (char *)&mux_v->bih->biCompression); } +if (! ignore_start) muxer->audio_delay_fix -= sh_video->stream_delay; //if(demuxer->file_format!=DEMUXER_TYPE_AVI) pts_from_bps=0; // it must be 0 for mpeg/asf! @@ -961,6 +963,7 @@ if (verbose>1) print_wave_header(mux_a->wf); +if (! ignore_start) muxer->audio_delay_fix += sh_audio->stream_delay; } // if(sh_audio) diff -r 9ef8d2944c21 -r 16633b9c0953 mplayer.c --- a/mplayer.c Mon Feb 20 04:49:06 2006 +0000 +++ b/mplayer.c Mon Feb 20 09:36:10 2006 +0000 @@ -294,6 +294,7 @@ static float max_pts_correction=0;//default_max_pts_correction; static float c_total=0; float audio_delay=0; +static int ignore_start=0; static int softsleep=0; @@ -2524,9 +2525,11 @@ if(sh_video){ sh_video->timer=0; + if (! ignore_start) audio_delay += sh_video->stream_delay; } if(sh_audio){ + if (! ignore_start) audio_delay -= sh_audio->stream_delay; sh_audio->delay=-audio_delay; }