diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2011-10-02 23:05:29 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2011-10-12 17:03:52 +0200 |
commit | 82df8c39975e7a719b06a91f248b1b2a07244101 (patch) | |
tree | 7e2fe5c238d61493902d31d8130d9458643f7577 /libavformat/allformats.c | |
parent | 8d80f3cb877b890889b1673029387229648901ed (diff) | |
download | ffmpeg-82df8c39975e7a719b06a91f248b1b2a07244101.tar.gz |
segment: introduce segmented chain muxer
Initial test code, the filename isn't yet guessed and the file index
isn't printed yet.
Diffstat (limited to 'libavformat/allformats.c')
-rw-r--r-- | libavformat/allformats.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c index 8e89b2f4ff..72b4a985b7 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -194,6 +194,7 @@ void av_register_all(void) av_register_rdt_dynamic_payload_handlers(); #endif REGISTER_DEMUXER (SEGAFILM, segafilm); + REGISTER_MUXER (SEGMENT, segment); REGISTER_DEMUXER (SHORTEN, shorten); REGISTER_DEMUXER (SIFF, siff); REGISTER_DEMUXER (SMACKER, smacker); |