comparison ogg2.c @ 2713:d9c256445c14 libavformat

Remove disabled muxer skeleton, blessed by Mans.
author diego
date Wed, 07 Nov 2007 19:09:00 +0000
parents 16aa09b0f20f
children
comparison
equal deleted inserted replaced
2712:53b9a531f490 2713:d9c256445c14
45 &ogm_video_codec, 45 &ogm_video_codec,
46 &ogm_audio_codec, 46 &ogm_audio_codec,
47 &ogm_old_codec, 47 &ogm_old_codec,
48 NULL 48 NULL
49 }; 49 };
50
51 #if 0 // CONFIG_MUXERS
52 static int
53 ogg_write_header (AVFormatContext * avfcontext)
54 {
55 }
56
57 static int
58 ogg_write_packet (AVFormatContext * avfcontext, AVPacket * pkt)
59 {
60 }
61
62
63 static int
64 ogg_write_trailer (AVFormatContext * avfcontext)
65 {
66 }
67
68
69 AVOutputFormat ogg_muxer = {
70 "ogg",
71 "Ogg format",
72 "application/ogg",
73 "ogg",
74 sizeof (OggContext),
75 CODEC_ID_VORBIS,
76 0,
77 ogg_write_header,
78 ogg_write_packet,
79 ogg_write_trailer,
80 };
81 #endif //CONFIG_MUXERS
82 50
83 //FIXME We could avoid some structure duplication 51 //FIXME We could avoid some structure duplication
84 static int 52 static int
85 ogg_save (AVFormatContext * s) 53 ogg_save (AVFormatContext * s)
86 { 54 {