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>
This commit is contained in:
Michael Niedermayer
2013-03-08 15:37:00 +01:00
2 changed files with 6 additions and 6 deletions

View File

@@ -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