summaryrefslogtreecommitdiffstats
path: root/demux/demux_lavf.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-10-06 21:49:32 +0200
committerwm4 <wm4@nowhere>2014-10-06 21:49:32 +0200
commit332808bc0df1385633556332c276ab860c971f5c (patch)
tree71b6bdb5f16b577786eb64d4986a3b2696f002c3 /demux/demux_lavf.c
parent4b2f81a36f49c85b0c20f81a5d46b1059f493796 (diff)
downloadmpv-332808bc0df1385633556332c276ab860c971f5c.tar.bz2
mpv-332808bc0df1385633556332c276ab860c971f5c.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
Diffstat (limited to 'demux/demux_lavf.c')
-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
};