From 222a5cf7c0a4de094f368f7154122a72312dbf39 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 8 Dec 2012 20:14:13 +0100 Subject: demux_lavf: make minimum probe score customizable, remove lavf_preferred libavformat wants to read a full ~400KB of data to determine whether it's really AAC. This causes slow startup with AAC web radio streams [1] (possible due to a broken initial packet). There are similar issues with other file formats. Make the probe "score" (libavformat's mechanism for testing file formats) configurable with the -lavfdtops:probescore option. This allows lowering the amount of data read on probing. If the probe score is below the probescore option value, demux_lavf will try to get a higher score by feeding more data to libavformat, until the required score or the max. probe size is reached. Remove the lavf_preferred demuxer entry. This had a purpose in mplayer-svn, but now there doesn't seem to be any good reason for it to exist. Make sure that our native "good" demuxers are above demux_lavf in demuxer_list[] instead (so that they are preferred). [1] http://lr2mp0.latvijasradio.lv:8000 --- demux/demux.h | 1 - 1 file changed, 1 deletion(-) (limited to 'demux/demux.h') diff --git a/demux/demux.h b/demux/demux.h index 470b8ed880..c2b8ce69c1 100644 --- a/demux/demux.h +++ b/demux/demux.h @@ -68,7 +68,6 @@ enum demuxer_type { DEMUXER_TYPE_AVS, DEMUXER_TYPE_AAC, DEMUXER_TYPE_MPC, - DEMUXER_TYPE_LAVF_PREFERRED, DEMUXER_TYPE_MNG, DEMUXER_TYPE_EDL, DEMUXER_TYPE_CUE, -- cgit v1.2.3