Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2019-08-28 22:56:35 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2019-09-11 23:43:14 +0300
commitb94cf549e2d9e456d77f8539baca0fffa805ba69 (patch)
tree045cf37e736c4cff8001b1d1897a88a1467c64d6 /libavcodec/htmlsubtitles.c
parent39ff027fd81185d0f8b4dfd49e709f4d0d44e2de (diff)
avcodec/htmlsubtitles: Avoid locale dependant isdigit()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/htmlsubtitles.c')
-rw-r--r--libavcodec/htmlsubtitles.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/htmlsubtitles.c b/libavcodec/htmlsubtitles.c
index d9221ba16b..8ce66e0b27 100644
--- a/libavcodec/htmlsubtitles.c
+++ b/libavcodec/htmlsubtitles.c
@@ -55,7 +55,7 @@ static int scanbraces(const char* in) {
if (strncmp(in, "{\\an", 4) != 0) {
return 0;
}
- if (!isdigit(in[4])) {
+ if (!av_isdigit(in[4])) {
return 0;
}
if (in[5] != '}') {