diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-06 21:56:20 +0100 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-04-27 10:43:13 -0300 |
commit | a240097ecd4fb1639db99e7becb888ae478405cd (patch) | |
tree | 26a70d86c81463ced96d1123bb0d06621668dffd /tests/api | |
parent | 6e30b35b85b81c802e52a1078ec7a3097e353c6d (diff) | |
download | ffmpeg-a240097ecd4fb1639db99e7becb888ae478405cd.tar.gz |
avutil: Switch crypto APIs to size_t
Announced in e435beb1ea5380a90774dbf51fdc8c941e486551.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tests/api')
-rw-r--r-- | tests/api/api-h264-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/api/api-h264-test.c b/tests/api/api-h264-test.c index 04bdfbc9d2..6f13e773f9 100644 --- a/tests/api/api-h264-test.c +++ b/tests/api/api-h264-test.c @@ -153,7 +153,7 @@ static int video_decode_example(const char *input_filename) av_frame_unref(fr); return number_of_written_bytes; } - printf("%d, %s, %s, %8"PRId64", %8d, 0x%08lx\n", video_stream, + printf("%d, %s, %s, %8"PRId64", %8d, 0x%08"PRIx32"\n", video_stream, av_ts2str(fr->pts), av_ts2str(fr->pkt_dts), fr->pkt_duration, number_of_written_bytes, av_adler32_update(0, (const uint8_t*)byte_buffer, number_of_written_bytes)); |