diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-03-09 14:00:22 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-03-09 14:00:22 +0100 |
commit | 144ef773c7140d1ea49d54e65e989f4edcfe9958 (patch) | |
tree | 651757787a5424a0dad0a4a0df984cdb8aafbd6a /libavcodec/alsdec.c | |
parent | 953b8c5a43ef3f48cc0464857efffe8fdc769b3d (diff) | |
download | ffmpeg-144ef773c7140d1ea49d54e65e989f4edcfe9958.tar.gz |
Use correct msvc type specifiers for ptrdiff_t and size_t.
Diffstat (limited to 'libavcodec/alsdec.c')
-rw-r--r-- | libavcodec/alsdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c index 004351296b..81666c5149 100644 --- a/libavcodec/alsdec.c +++ b/libavcodec/alsdec.c @@ -1292,13 +1292,13 @@ static int revert_channel_correlation(ALSDecContext *ctx, ALSBlockData *bd, if (ch[dep].time_diff_sign) { t = -t; if (begin < t) { - av_log(ctx->avctx, AV_LOG_ERROR, "begin %td smaller than time diff index %d.\n", begin, t); + av_log(ctx->avctx, AV_LOG_ERROR, "begin %"PTRDIFF_SPECIFIER" smaller than time diff index %d.\n", begin, t); return AVERROR_INVALIDDATA; } begin -= t; } else { if (end < t) { - av_log(ctx->avctx, AV_LOG_ERROR, "end %td smaller than time diff index %d.\n", end, t); + av_log(ctx->avctx, AV_LOG_ERROR, "end %"PTRDIFF_SPECIFIER" smaller than time diff index %d.\n", end, t); return AVERROR_INVALIDDATA; } end -= t; |