Merge commit 'efa7f42020
'
* commit 'efa7f42020
':
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:
commit
6c17ff84ad
6 changed files with 38 additions and 26 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue