Commit 7cea891a authored by diego's avatar diego

Remove disabled muxer skeleton, blessed by Mans.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10942 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent cc685f0e
...@@ -48,38 +48,6 @@ static ogg_codec_t *ogg_codecs[] = { ...@@ -48,38 +48,6 @@ static ogg_codec_t *ogg_codecs[] = {
NULL NULL
}; };
#if 0 // CONFIG_MUXERS
static int
ogg_write_header (AVFormatContext * avfcontext)
{
}
static int
ogg_write_packet (AVFormatContext * avfcontext, AVPacket * pkt)
{
}
static int
ogg_write_trailer (AVFormatContext * avfcontext)
{
}
AVOutputFormat ogg_muxer = {
"ogg",
"Ogg format",
"application/ogg",
"ogg",
sizeof (OggContext),
CODEC_ID_VORBIS,
0,
ogg_write_header,
ogg_write_packet,
ogg_write_trailer,
};
#endif //CONFIG_MUXERS
//FIXME We could avoid some structure duplication //FIXME We could avoid some structure duplication
static int static int
ogg_save (AVFormatContext * s) ogg_save (AVFormatContext * s)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment