From e07126f54a11cbfc23288f2e15508872da17f81b Mon Sep 17 00:00:00 2001 From: James Almer Date: Sat, 6 Mar 2021 13:29:54 -0300 Subject: avformat: use the buffer_size_t typedef where required Signed-off-by: James Almer --- libavformat/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/utils.c') diff --git a/libavformat/utils.c b/libavformat/utils.c index 98e6c55602..8573117694 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -5698,7 +5698,7 @@ int ff_standardize_creation_time(AVFormatContext *s) int ff_get_packet_palette(AVFormatContext *s, AVPacket *pkt, int ret, uint32_t *palette) { uint8_t *side_data; - int size; + buffer_size_t size; side_data = av_packet_get_side_data(pkt, AV_PKT_DATA_PALETTE, &size); if (side_data) { -- cgit v1.2.3