diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-03-10 15:35:59 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-11 13:13:41 +0100 |
commit | d92024f18fa3d69937cb2575f3a8bf973df02430 (patch) | |
tree | b3761f3c586916a0685e125bee9b9ed95b25aa25 /libavformat/mvi.c | |
parent | 7caf48e036583cd5833f5dc07ab14960dff25e04 (diff) | |
download | ffmpeg-d92024f18fa3d69937cb2575f3a8bf973df02430.tar.gz |
lavf: more correct printf format specifiers
Diffstat (limited to 'libavformat/mvi.c')
-rw-r--r-- | libavformat/mvi.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavformat/mvi.c b/libavformat/mvi.c index 69b0aed571..03a1f406cf 100644 --- a/libavformat/mvi.c +++ b/libavformat/mvi.c @@ -19,6 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <inttypes.h> + #include "libavutil/channel_layout.h" #include "avformat.h" #include "internal.h" @@ -95,7 +97,8 @@ static int read_header(AVFormatContext *s) mvi->audio_frame_size = ((uint64_t)mvi->audio_data_size << MVI_FRAC_BITS) / frames_count; if (mvi->audio_frame_size <= 1 << MVI_FRAC_BITS - 1) { - av_log(s, AV_LOG_ERROR, "Invalid audio_data_size (%d) or frames_count (%d)\n", + av_log(s, AV_LOG_ERROR, + "Invalid audio_data_size (%"PRIu32") or frames_count (%u)\n", mvi->audio_data_size, frames_count); return AVERROR_INVALIDDATA; } |