Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-08 18:37:00 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-03-08 18:37:21 +0400
commit1f3a577353ed684ca1d91a86dea62ed7bb334c87 (patch)
tree4b312060bcdb556f79c2b72afe5a1c04219de61f /libavutil/avstring.c
parente9fbb9783c825250b4d06dded8ac2b712284b4e9 (diff)
parent4be368b504c6f4a03051448728fc62cd0ed506b2 (diff)
Merge commit '4be368b504c6f4a03051448728fc62cd0ed506b2'
* commit '4be368b504c6f4a03051448728fc62cd0ed506b2': avstring: Fix isxdigit to not accept non-hex characters configure: Add missing videodsp dependencies to some decoders Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/avstring.c')
-rw-r--r--libavutil/avstring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/avstring.c b/libavutil/avstring.c
index 788667e9d6..cf9be2a0d5 100644
--- a/libavutil/avstring.c
+++ b/libavutil/avstring.c
@@ -304,7 +304,7 @@ int av_isspace(int c)
int av_isxdigit(int c)
{
c = av_tolower(c);
- return av_isdigit(c) || (c >= 'a' && c <= 'z');
+ return av_isdigit(c) || (c >= 'a' && c <= 'f');
}
#ifdef TEST