further allow jpeg_pipe demuxer
This commit is contained in:
parent
884115e0f7
commit
06b5a6d917
|
@ -5,6 +5,7 @@ static int valid_demuxer(AVInputFormat *fmt)
|
||||||
// apng: animated PNG
|
// apng: animated PNG
|
||||||
// png_pipe: static PNG
|
// png_pipe: static PNG
|
||||||
// image2: JPEG
|
// image2: JPEG
|
||||||
|
// jpeg_pipe: JPEG
|
||||||
// gif: GIF
|
// gif: GIF
|
||||||
// svg_pipe: SVG (recommended not to use this currently)
|
// svg_pipe: SVG (recommended not to use this currently)
|
||||||
// matroska: MKV/WebM
|
// matroska: MKV/WebM
|
||||||
|
@ -13,6 +14,7 @@ static int valid_demuxer(AVInputFormat *fmt)
|
||||||
fmt == av_find_input_format("apng") ||
|
fmt == av_find_input_format("apng") ||
|
||||||
fmt == av_find_input_format("png_pipe") ||
|
fmt == av_find_input_format("png_pipe") ||
|
||||||
fmt == av_find_input_format("image2") ||
|
fmt == av_find_input_format("image2") ||
|
||||||
|
fmt == av_find_input_format("jpeg_pipe") ||
|
||||||
fmt == av_find_input_format("gif") ||
|
fmt == av_find_input_format("gif") ||
|
||||||
fmt == av_find_input_format("svg_pipe") ||
|
fmt == av_find_input_format("svg_pipe") ||
|
||||||
fmt == av_find_input_format("matroska");
|
fmt == av_find_input_format("matroska");
|
||||||
|
|
Loading…
Reference in a new issue