diff options
Diffstat (limited to 'libavformat/gxf.c')
-rw-r--r-- | libavformat/gxf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/gxf.c b/libavformat/gxf.c index 3056e35d5a..fbceee1ff8 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_iformat = { +static AVInputFormat gxf_demuxer = { "gxf", "GXF format", 0, @@ -253,7 +253,7 @@ static AVInputFormat gxf_iformat = { }; int gxf_init(void) { - av_register_input_format(&gxf_iformat); + av_register_input_format(&gxf_demuxer); return 0; } |