diff options
author | wm4 <wm4@nowhere> | 2017-06-12 22:04:44 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2017-06-12 22:04:44 +0200 |
commit | 4e663566dda9fea8cbff8e58f65e91863cbf42a4 (patch) | |
tree | ad2bb0a5781dead1403d6f56e84aef1cf01b00e2 | |
parent | eb22569ff082bd3e8b32d78d0ac050568ab8b130 (diff) |
demux_lavf: by default probe info for HLS again
This switches back the --demuxer-lavf-probe-info default for HLS from
"no" to "yes".
Apparently the old default caused problems with the FFmpeg MediaCodec
wrapper. I'm not sure whether it's due to the extradata (which would not
make any sense as MediaCodec takes in Annex B formatted h264 data), or
something else. Reportedly, enabling probing fixes it though, so enable
it again.
Add disparaging comment about Google software/APIs here.
-rw-r--r-- | demux/demux_lavf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demux/demux_lavf.c b/demux/demux_lavf.c index 4328c9d782..da5967f1dd 100644 --- a/demux/demux_lavf.c +++ b/demux/demux_lavf.c @@ -149,7 +149,7 @@ static const struct format_hack format_hacks[] = { {"mp3", "audio/mpeg", 24, 0.5}, {"mp3", NULL, 24, .max_probe = true}, - {"hls", .no_stream = true, .clear_filepos = true, .skipinfo = true}, + {"hls", .no_stream = true, .clear_filepos = true}, {"mpeg", .use_stream_ids = true}, {"mpegts", .use_stream_ids = true}, |