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/hq_hqa.c | |
parent | 953b8c5a43ef3f48cc0464857efffe8fdc769b3d (diff) | |
download | ffmpeg-144ef773c7140d1ea49d54e65e989f4edcfe9958.tar.gz |
Use correct msvc type specifiers for ptrdiff_t and size_t.
Diffstat (limited to 'libavcodec/hq_hqa.c')
-rw-r--r-- | libavcodec/hq_hqa.c | 4 |
1 files changed, 2 insertions, 2 deletions
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], |