summaryrefslogtreecommitdiff
path: root/libavformat/gxf.c
diff options
context:
space:
mode:
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;
-}
-