]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/htmlsubtitles.c
avformat/avformat: Constify AVFormatContext.*_codec pointers
[ffmpeg] / libavcodec / htmlsubtitles.c
index d9221ba16b0fb7f6265c8365144fda1507dee97f..8ce66e0b27e3602b5b16a8c9990d66853760f689 100644 (file)
@@ -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] != '}') {