summaryrefslogtreecommitdiff
path: root/libavformat/nuv.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/nuv.c')
-rw-r--r--libavformat/nuv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/nuv.c b/libavformat/nuv.c
index 5cb1a3c88c..4043bdfbd8 100644
--- a/libavformat/nuv.c
+++ b/libavformat/nuv.c
@@ -227,7 +227,7 @@ static int nuv_packet(AVFormatContext *s, AVPacket *pkt) {
return AVERROR_IO;
}
-static AVInputFormat nuv_iformat = {
+static AVInputFormat nuv_demuxer = {
"nuv",
"NuppelVideo format",
sizeof(NUVContext),
@@ -239,7 +239,7 @@ static AVInputFormat nuv_iformat = {
};
int nuv_init(void) {
- av_register_input_format(&nuv_iformat);
+ av_register_input_format(&nuv_demuxer);
return 0;
}