summaryrefslogtreecommitdiff
path: root/libavformat/dv.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-06-11 05:48:30 -0700
committerDiego Biurrun <diego@biurrun.de>2014-06-12 07:10:18 -0700
commitdca7ba4bffe3e4aeb620cb62955256a0d87561f4 (patch)
tree3d769fca651f0a9aad03a8dbd69e39b2dbbb0bbe /libavformat/dv.c
parent48e50921337984ba4ec2c1cafe45d43787f84498 (diff)
Remove some unnecessary CONFIG_FOO_COMPONENT ifdefs
The files are only ever compiled if that condition is true.
Diffstat (limited to 'libavformat/dv.c')
-rw-r--r--libavformat/dv.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/dv.c b/libavformat/dv.c
index 2181405ab8..d7d62f1991 100644
--- a/libavformat/dv.c
+++ b/libavformat/dv.c
@@ -1,5 +1,5 @@
/*
- * General DV muxer/demuxer
+ * General DV demuxer
* Copyright (c) 2003 Roman Shaposhnik
*
* Many thanks to Dan Dennedy <dan@dennedy.org> for providing wealth
@@ -553,7 +553,6 @@ static int dv_probe(AVProbeData *p)
return 0;
}
-#if CONFIG_DV_DEMUXER
AVInputFormat ff_dv_demuxer = {
.name = "dv",
.long_name = NULL_IF_CONFIG_SMALL("DV (Digital Video)"),
@@ -565,4 +564,3 @@ AVInputFormat ff_dv_demuxer = {
.read_seek = dv_read_seek,
.extensions = "dv,dif",
};
-#endif