summaryrefslogtreecommitdiff
path: root/libavformat/nsvdec.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/nsvdec.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/nsvdec.c')
-rw-r--r--libavformat/nsvdec.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c
index b59fa60e09..5ae5b8c061 100644
--- a/libavformat/nsvdec.c
+++ b/libavformat/nsvdec.c
@@ -742,7 +742,7 @@ static int nsv_probe(AVProbeData *p)
return 0;
}
-static AVInputFormat nsv_demuxer = {
+AVInputFormat nsv_demuxer = {
"nsv",
"NullSoft Video format",
sizeof(NSVContext),
@@ -752,9 +752,3 @@ static AVInputFormat nsv_demuxer = {
nsv_read_close,
nsv_read_seek,
};
-
-int nsvdec_init(void)
-{
- av_register_input_format(&nsv_demuxer);
- return 0;
-}