diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-05-26 17:48:52 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-05-26 19:04:02 +0200 |
commit | aaea1490351bfd1e8f21cb4b7e4c25d82d090e94 (patch) | |
tree | 3ecd0c64ae2e893fb14fce99a97aa17360d01cc8 /libavdevice/v4l.c | |
parent | 93681fbd5082a3af896b7a730dacdd27a3052406 (diff) | |
download | ffmpeg-aaea1490351bfd1e8f21cb4b7e4c25d82d090e94.tar.gz |
lavdevice: mark v4l for removal on next major bump.
Diffstat (limited to 'libavdevice/v4l.c')
-rw-r--r-- | libavdevice/v4l.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavdevice/v4l.c b/libavdevice/v4l.c index 54d0394ff5..6742667f05 100644 --- a/libavdevice/v4l.c +++ b/libavdevice/v4l.c @@ -19,6 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#if FF_API_V4L + #undef __STRICT_ANSI__ //workaround due to broken kernel headers #include "config.h" #include "libavutil/rational.h" @@ -83,6 +85,8 @@ static int grab_read_header(AVFormatContext *s1, AVFormatParameters *ap) int j; int vformat_num = FF_ARRAY_ELEMS(video_formats); + av_log(s1, AV_LOG_WARNING, "V4L input device is deprecated and will be removed in the next release."); + if (ap->time_base.den <= 0) { av_log(s1, AV_LOG_ERROR, "Wrong time base (%d)\n", ap->time_base.den); return -1; @@ -368,3 +372,4 @@ AVInputFormat ff_v4l_demuxer = { .flags = AVFMT_NOFILE, .priv_class = &v4l_class, }; +#endif /* FF_API_V4L */ |