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 | |
parent | 953b8c5a43ef3f48cc0464857efffe8fdc769b3d (diff) | |
download | ffmpeg-144ef773c7140d1ea49d54e65e989f4edcfe9958.tar.gz |
Use correct msvc type specifiers for ptrdiff_t and size_t.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/alsdec.c | 4 | ||||
-rw-r--r-- | libavcodec/g2meet.c | 2 | ||||
-rw-r--r-- | libavcodec/hq_hqa.c | 4 |
3 files changed, 5 insertions, 5 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; diff --git a/libavcodec/g2meet.c b/libavcodec/g2meet.c index 51e8bbcd7b..b0af3ec046 100644 --- a/libavcodec/g2meet.c +++ b/libavcodec/g2meet.c @@ -900,7 +900,7 @@ static int epic_jb_decode_tile(G2MContext *c, int tile_x, int tile_y, } if (src_size < els_dsize) { - av_log(avctx, AV_LOG_ERROR, "ePIC: data too short, needed %zu, got %zu\n", + av_log(avctx, AV_LOG_ERROR, "ePIC: data too short, needed %"SIZE_SPECIFIER", got %"SIZE_SPECIFIER"\n", els_dsize, src_size); return AVERROR_INVALIDDATA; } diff --git a/libavcodec/hq_hqa.c b/libavcodec/hq_hqa.c index 3ef83d4eb4..8825f3d8b7 100644 --- a/libavcodec/hq_hqa.c +++ b/libavcodec/hq_hqa.c @@ -154,7 +154,7 @@ static int hq_decode_frame(HQContext *ctx, AVFrame *pic, slice_off[slice] >= slice_off[slice + 1] || slice_off[slice + 1] > data_size) { av_log(ctx->avctx, AV_LOG_ERROR, - "Invalid slice size %zu.\n", data_size); + "Invalid slice size %"SIZE_SPECIFIER".\n", data_size); break; } init_get_bits(&gb, src + slice_off[slice], @@ -277,7 +277,7 @@ static int hqa_decode_frame(HQContext *ctx, AVFrame *pic, size_t data_size) slice_off[slice] >= slice_off[slice + 1] || slice_off[slice + 1] > data_size) { av_log(ctx->avctx, AV_LOG_ERROR, - "Invalid slice size %zu.\n", data_size); + "Invalid slice size %"SIZE_SPECIFIER".\n", data_size); break; } init_get_bits(&gb, src + slice_off[slice], |