diff options
author | Reimar Döffinger | 2011-11-02 20:17:25 +0100 |
---|---|---|
committer | Reimar Döffinger | 2011-11-03 19:25:26 +0100 |
commit | 96949dafcca87f65902bd77a0bc56007d9cead70 (patch) | |
tree | e394623e56efc86b70d3e7fbdefc2555457b3aa3 /libavdevice | |
parent | 475fb67d0b391ad1e8e3e8e3d65d7e6892e17e7a (diff) |
Replace all strcasecmp/strncasecmp usages.
All current usages of it are incompatible with localization.
For example strcasecmp("i", "I") != 0 is possible, but would
break many of the places where it is used.
Instead use our own implementations that always treat the data
as ASCII.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavdevice')
-rw-r--r-- | libavdevice/v4l2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c index 9e26b2d48d..e327cb0667 100644 --- a/libavdevice/v4l2.c +++ b/libavdevice/v4l2.c @@ -44,13 +44,13 @@ #include <linux/videodev2.h> #endif #include <time.h> -#include <strings.h> #include "libavutil/imgutils.h" #include "libavutil/log.h" #include "libavutil/opt.h" #include "avdevice.h" #include "libavutil/parseutils.h" #include "libavutil/pixdesc.h" +#include "libavutil/avstring.h" static const int desired_video_buffers = 256; @@ -470,7 +470,7 @@ static int v4l2_set_parameters(AVFormatContext *s1, AVFormatParameters *ap) for (i = 0;; i++) { standard.index = i; ret = ioctl(s->fd, VIDIOC_ENUMSTD, &standard); - if (ret < 0 || !strcasecmp(standard.name, s->standard)) + if (ret < 0 || !av_strcasecmp(standard.name, s->standard)) break; } if (ret < 0) { |