summaryrefslogtreecommitdiffstats
path: root/misc/bstr.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/bstr.c')
-rw-r--r--misc/bstr.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/misc/bstr.c b/misc/bstr.c
index 4117514457..772ca9c66d 100644
--- a/misc/bstr.c
+++ b/misc/bstr.c
@@ -22,8 +22,6 @@
#include <stdint.h>
#include <stdlib.h>
-#include <libavutil/common.h>
-
#include "mpv_talloc.h"
#include "common/common.h"
@@ -272,7 +270,7 @@ int bstr_parse_utf8_code_length(unsigned char b)
{
if (b < 128)
return 1;
- int bytes = 7 - av_log2(b ^ 255);
+ int bytes = 7 - mp_log2(b ^ 255);
return (bytes >= 2 && bytes <= 4) ? bytes : -1;
}