diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-05-23 21:40:44 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-05-25 15:55:47 +0200 |
commit | fc68a8f7030227fc4fa8d83b9051aaf598cd12dd (patch) | |
tree | cb2db6603f6cd1adea0bbc91c150e2d0036dee81 /libavdevice/v4l2.c | |
parent | b3da2692115ea17190544883d15efa36219da99e (diff) | |
download | ffmpeg-fc68a8f7030227fc4fa8d83b9051aaf598cd12dd.tar.gz |
lavf: deprecate AVFormatParameters.standard.
Diffstat (limited to 'libavdevice/v4l2.c')
-rw-r--r-- | libavdevice/v4l2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c index dca31a8140..1c3059d850 100644 --- a/libavdevice/v4l2.c +++ b/libavdevice/v4l2.c @@ -470,10 +470,12 @@ static int v4l2_set_parameters(AVFormatContext *s1, AVFormatParameters *ap) } } +#if FF_API_FORMAT_PARAMETERS if (ap->standard) { av_freep(&s->standard); s->standard = av_strdup(ap->standard); } +#endif if (s->standard) { av_log(s1, AV_LOG_DEBUG, "The V4L2 driver set standard: %s\n", |