summaryrefslogtreecommitdiff
path: root/libavformat/allformats.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2014-06-21 21:43:19 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-07-03 18:14:06 +0200
commitd538dd824ee7abf9f3bb6459485f3e804fcc4777 (patch)
treed4ba62f4c9914076b4b3cc211f386512f0a1c3a6 /libavformat/allformats.c
parentdea377fcc0cbb2ffe4b1be860d2e207da28b098a (diff)
avformat: Add image3 demuxers with format autodetection
Reviewed-by: wm4 <nfxjfg@googlemail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/allformats.c')
-rw-r--r--libavformat/allformats.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c
index dc5557c091..dbde4325e1 100644
--- a/libavformat/allformats.c
+++ b/libavformat/allformats.c
@@ -318,6 +318,17 @@ void av_register_all(void)
REGISTER_DEMUXER (YOP, yop);
REGISTER_MUXDEMUX(YUV4MPEGPIPE, yuv4mpegpipe);
+ /* image demuxers */
+ REGISTER_DEMUXER (IMAGE_BMP_PIPE, image_bmp_pipe);
+ REGISTER_DEMUXER (IMAGE_DPX_PIPE, image_dpx_pipe);
+ REGISTER_DEMUXER (IMAGE_EXR_PIPE, image_exr_pipe);
+ REGISTER_DEMUXER (IMAGE_PICTOR_PIPE, image_pictor_pipe);
+ REGISTER_DEMUXER (IMAGE_PNG_PIPE, image_png_pipe);
+ REGISTER_DEMUXER (IMAGE_SGI_PIPE, image_sgi_pipe);
+ REGISTER_DEMUXER (IMAGE_SUNRAST_PIPE, image_sunrast_pipe);
+ REGISTER_DEMUXER (IMAGE_TIFF_PIPE, image_tiff_pipe);
+
+
/* protocols */
REGISTER_PROTOCOL(BLURAY, bluray);
REGISTER_PROTOCOL(CACHE, cache);