summaryrefslogtreecommitdiff
path: root/libavformat/nuv.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/nuv.c')
-rw-r--r--libavformat/nuv.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/libavformat/nuv.c b/libavformat/nuv.c
index 4043bdfbd8..4364cd4276 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_demuxer = {
+AVInputFormat nuv_demuxer = {
"nuv",
"NuppelVideo format",
sizeof(NUVContext),
@@ -237,9 +237,3 @@ static AVInputFormat nuv_demuxer = {
NULL,
NULL,
};
-
-int nuv_init(void) {
- av_register_input_format(&nuv_demuxer);
- return 0;
-}
-