summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-10-06 21:49:32 +0200
committerAlessandro Ghedini <alessandro@ghedini.me>2014-10-11 13:59:54 +0200
commitf22061726715b8579f378d0978437afcfe8b89ca (patch)
tree601a6acd3d4b0b869c040e0f6b592d882c844dc8
parent381843eb88785980b8905e4da76407d0af000b48 (diff)
downloadmpv-f22061726715b8579f378d0978437afcfe8b89ca.tar.bz2
mpv-f22061726715b8579f378d0978437afcfe8b89ca.tar.xz
demux_lavf: blacklist jpeg files
We handle them under demux_mf.c for stupid reasons; mostly so that an image is shown for a second instead of just flashing it. CC: @mpv-player/stable
-rw-r--r--demux/demux_lavf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/demux/demux_lavf.c b/demux/demux_lavf.c
index bfcda2b2c4..fd3a38ea89 100644
--- a/demux/demux_lavf.c
+++ b/demux/demux_lavf.c
@@ -131,6 +131,7 @@ static const char *const format_blacklist[] = {
// Image demuxers, disabled in favor of demux_mf:
"image2", "image2pipe",
"bmp_pipe", "dpx_pipe", "exr_pipe", "j2k_pipe", "png_pipe", "tiff_pipe",
+ "jpeg_pipe",
0
};