mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
Replace all occurrences of PRI in sscanf() calls with SCN
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
committed by
Clément Bœsch
parent
2383068cbf
commit
89388a953a
+1
-1
@@ -91,7 +91,7 @@ int main(int argc, char **argv)
|
||||
av_ts2str(packet.pts), av_ts2timestr(packet.pts, tb));
|
||||
av_free_packet(&packet);
|
||||
}
|
||||
} else if (sscanf(*argv, "seek:%i:%"PRIi64":%"PRIi64":%"PRIi64":%i",
|
||||
} else if (sscanf(*argv, "seek:%i:%"SCNi64":%"SCNi64":%"SCNi64":%i",
|
||||
&stream, &min_ts, &ts, &max_ts, &flags) == 5) {
|
||||
ret = avformat_seek_file(avf, stream, min_ts, ts, max_ts, flags);
|
||||
printf("seek: %d (%s)\n", ret, av_err2str(ret));
|
||||
|
||||
Reference in New Issue
Block a user