OSDN Git Service

srt: Adjust signedness of sscanf format strings
authorDiego Biurrun <diego@biurrun.de>
Wed, 11 Nov 2015 16:40:27 +0000 (17:40 +0100)
committerDiego Biurrun <diego@biurrun.de>
Fri, 28 Oct 2016 11:28:36 +0000 (13:28 +0200)
Fixes several warnings from -Wformat.

libavcodec/srtdec.c
libavformat/id3v2.c

index 3bee3c7..4c5f6e5 100644 (file)
@@ -192,7 +192,7 @@ static const char *read_ts(const char *buf, int *ts_start, int *ts_end,
     for (i=0; i<2; i++) {
         /* try to read timestamps in either the first or second line */
         int c = sscanf(buf, "%d:%2d:%2d%*1[,.]%3d --> %d:%2d:%2d%*1[,.]%3d"
-                       "%*[ ]X1:%u X2:%u Y1:%u Y2:%u",
+                       "%*[ ]X1:%d X2:%d Y1:%d Y2:%d",
                        &hs, &ms, &ss, ts_start, &he, &me, &se, ts_end,
                        x1, x2, y1, y2);
         buf += strcspn(buf, "\n") + 1;
index 5e9825d..3f43b4a 100644 (file)
@@ -276,7 +276,7 @@ static void read_ttag(AVFormatContext *s, AVIOContext *pb, int taglen,
     }
 
     if (!(strcmp(key, "TCON") && strcmp(key, "TCO"))                         &&
-        (sscanf(dst, "(%d)", &genre) == 1 || sscanf(dst, "%d", &genre) == 1) &&
+        (sscanf(dst, "(%u)", &genre) == 1 || sscanf(dst, "%u", &genre) == 1) &&
         genre <= ID3v1_GENRE_MAX) {
         av_freep(&dst);
         dst = av_strdup(ff_id3v1_genre_str[genre]);