summaryrefslogtreecommitdiff
path: root/libavformat/webvttenc.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2021-03-06 13:29:54 -0300
committerJames Almer <jamrial@gmail.com>2021-03-10 20:26:36 -0300
commite07126f54a11cbfc23288f2e15508872da17f81b (patch)
tree7955894a3b5da65af4c88095b7aaa22ebb8e577e /libavformat/webvttenc.c
parentd8a18c8fc2907004448cb45e704dc82bcd2df528 (diff)
avformat: use the buffer_size_t typedef where required
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/webvttenc.c')
-rw-r--r--libavformat/webvttenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/webvttenc.c b/libavformat/webvttenc.c
index cbd989dcb6..552bc38b65 100644
--- a/libavformat/webvttenc.c
+++ b/libavformat/webvttenc.c
@@ -64,7 +64,7 @@ static int webvtt_write_header(AVFormatContext *ctx)
static int webvtt_write_packet(AVFormatContext *ctx, AVPacket *pkt)
{
AVIOContext *pb = ctx->pb;
- int id_size, settings_size;
+ buffer_size_t id_size, settings_size;
uint8_t *id, *settings;
avio_printf(pb, "\n");