diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-11-08 11:22:29 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-11-08 11:22:29 +0000 |
commit | f9e4ed19d20103220b51bf1d2bd661fc48224036 (patch) | |
tree | 79746cf84968cb288182b259b93e61df7427f825 /libavformat/allformats.c | |
parent | 3240941b2552ec9b6373163240bb89a4bab40c50 (diff) | |
download | ffmpeg-f9e4ed19d20103220b51bf1d2bd661fc48224036.tar.gz |
Give Ogg muxer a lib prefix in the name like we do with all other formats
implemented through external libraries, plus rename the files accordingly.
Originally committed as revision 10956 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/allformats.c')
-rw-r--r-- | libavformat/allformats.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c index 52529974d1..ad5c6af028 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -122,7 +122,7 @@ void av_register_all(void) REGISTER_MUXER (NULL, null); REGISTER_MUXDEMUX (NUT, nut); REGISTER_DEMUXER (NUV, nuv); - REGISTER_MUXDEMUX (OGG, ogg); + REGISTER_DEMUXER (OGG, ogg); REGISTER_MUXDEMUX (OSS, oss); REGISTER_MUXDEMUX (PCM_ALAW, pcm_alaw); REGISTER_MUXDEMUX (PCM_MULAW, pcm_mulaw); @@ -172,6 +172,7 @@ void av_register_all(void) /* external libraries */ REGISTER_DEMUXER (LIBDC1394, libdc1394); REGISTER_MUXDEMUX (LIBNUT, libnut); + REGISTER_MUXER (LIBOGG, libogg); /* protocols */ REGISTER_PROTOCOL (FILE, file); |