summaryrefslogtreecommitdiff
path: root/libavformat/gxf.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-07-10 21:14:37 +0000
committerMåns Rullgård <mans@mansr.com>2006-07-10 21:14:37 +0000
commitff70e60176056daf646109b8e42654a3036fa02b (patch)
tree42e32d1e4bff334964cf93766ff2da6ee9a8f1d3 /libavformat/gxf.c
parent4cac0d5589ab1a076e977425925015f2c8e591a8 (diff)
allow individual selection of muxers and demuxers
Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/gxf.c')
-rw-r--r--libavformat/gxf.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/libavformat/gxf.c b/libavformat/gxf.c
index fbceee1ff8..3e854773bf 100644
--- a/libavformat/gxf.c
+++ b/libavformat/gxf.c
@@ -241,7 +241,7 @@ static int gxf_packet(AVFormatContext *s, AVPacket *pkt) {
return AVERROR_IO;
}
-static AVInputFormat gxf_demuxer = {
+AVInputFormat gxf_demuxer = {
"gxf",
"GXF format",
0,
@@ -251,9 +251,3 @@ static AVInputFormat gxf_demuxer = {
NULL,
NULL,
};
-
-int gxf_init(void) {
- av_register_input_format(&gxf_demuxer);
- return 0;
-}
-