Merge commit 'efa7f4202088c70caba11d7834641bc6eaf41830'
* commit 'efa7f4202088c70caba11d7834641bc6eaf41830': Use the avstring.h locale-independent character type functions avstring: Add locale independent versions of some ctype.h functions Conflicts: avprobe.c doc/APIchanges libavcodec/dvdsubdec.c libavcodec/utils.c libavutil/avstring.c libavutil/avstring.h libavutil/eval.c libavutil/parseutils.c libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -2777,10 +2777,10 @@ int avpriv_unlock_avformat(void)
|
||||
|
||||
unsigned int avpriv_toupper4(unsigned int x)
|
||||
{
|
||||
return av_toupper(x & 0xFF)
|
||||
+ (av_toupper((x >> 8) & 0xFF) << 8)
|
||||
+ (av_toupper((x >> 16) & 0xFF) << 16)
|
||||
+ (av_toupper((x >> 24) & 0xFF) << 24);
|
||||
return av_toupper(x & 0xFF) +
|
||||
(av_toupper((x >> 8) & 0xFF) << 8) +
|
||||
(av_toupper((x >> 16) & 0xFF) << 16) +
|
||||
(av_toupper((x >> 24) & 0xFF) << 24);
|
||||
}
|
||||
|
||||
#if !HAVE_THREADS
|
||||
|
Reference in New Issue
Block a user