From 0842d58998f441768b5e4376aa0c1d7be0e07a8b Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 17 Oct 2011 10:12:51 +0200 Subject: lavc: use avpriv_ prefix for ff_toupper4. It's used in lavf. --- libavcodec/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/utils.c') diff --git a/libavcodec/utils.c b/libavcodec/utils.c index ac4de7da4a..c1a5c19e04 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -1269,7 +1269,7 @@ int av_lockmgr_register(int (*cb)(void **mutex, enum AVLockOp op)) return 0; } -unsigned int ff_toupper4(unsigned int x) +unsigned int avpriv_toupper4(unsigned int x) { return toupper( x &0xFF) + (toupper((x>>8 )&0xFF)<<8 ) -- cgit v1.2.3