mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-13 10:30:05 +01:00
Use correct msvc type specifiers for ptrdiff_t and size_t.
The Windows runtime aborts if it finds %t or %z. Fixes ticket #3472. Reviewed-by: Ronald Bultje
This commit is contained in:
@@ -256,7 +256,7 @@ parse_packed_headers(const uint8_t * packed_headers,
|
||||
|
||||
if (packed_headers_end - packed_headers < 9) {
|
||||
av_log(codec, AV_LOG_ERROR,
|
||||
"Invalid %td byte packed header.",
|
||||
"Invalid %"PTRDIFF_SPECIFIER" byte packed header.",
|
||||
packed_headers_end - packed_headers);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
@@ -278,7 +278,7 @@ parse_packed_headers(const uint8_t * packed_headers,
|
||||
if (packed_headers_end - packed_headers != length ||
|
||||
length1 > length || length2 > length - length1) {
|
||||
av_log(codec, AV_LOG_ERROR,
|
||||
"Bad packed header lengths (%d,%d,%td,%d)\n", length1,
|
||||
"Bad packed header lengths (%d,%d,%"PTRDIFF_SPECIFIER",%d)\n", length1,
|
||||
length2, packed_headers_end - packed_headers, length);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user