diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-12-21 11:25:34 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-12-23 19:30:00 +0100 |
commit | 0b77a5933635293508e7289e7cf191ed166cf070 (patch) | |
tree | 2dd54951ec6e63b1f9e7dadecb0c737c97e8fc36 /libavformat/rpl.c | |
parent | 92db5083077a8b0f8e1050507671b456fd155125 (diff) | |
download | ffmpeg-0b77a5933635293508e7289e7cf191ed166cf070.tar.gz |
Use correct printf conversion specifiers for POSIX integer types
Diffstat (limited to 'libavformat/rpl.c')
-rw-r--r-- | libavformat/rpl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rpl.c b/libavformat/rpl.c index 0fa940e524..6f6119c685 100644 --- a/libavformat/rpl.c +++ b/libavformat/rpl.c @@ -171,7 +171,7 @@ static int rpl_read_header(AVFormatContext *s) break; default: av_log(s, AV_LOG_WARNING, - "RPL video format %i not supported yet!\n", + "RPL video format %"PRIu32" not supported yet!\n", vst->codecpar->codec_tag); vst->codecpar->codec_id = AV_CODEC_ID_NONE; } @@ -236,7 +236,7 @@ static int rpl_read_header(AVFormatContext *s) rpl->frames_per_chunk = read_line_and_int(pb, &error); // video frames per chunk if (rpl->frames_per_chunk > 1 && vst->codecpar->codec_tag != 124) av_log(s, AV_LOG_WARNING, - "Don't know how to split frames for video format %i. " + "Don't know how to split frames for video format %"PRIu32". " "Video stream will be broken!\n", vst->codecpar->codec_tag); number_of_chunks = read_line_and_int(pb, &error); // number of chunks in the file |