diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-06-11 05:48:30 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-06-12 07:10:18 -0700 |
commit | dca7ba4bffe3e4aeb620cb62955256a0d87561f4 (patch) | |
tree | 3d769fca651f0a9aad03a8dbd69e39b2dbbb0bbe /libavformat/dv.c | |
parent | 48e50921337984ba4ec2c1cafe45d43787f84498 (diff) | |
download | ffmpeg-dca7ba4bffe3e4aeb620cb62955256a0d87561f4.tar.gz |
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.c | 4 |
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 |