diff options
author | James Almer <jamrial@gmail.com> | 2021-03-06 13:29:54 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-03-10 20:26:36 -0300 |
commit | e07126f54a11cbfc23288f2e15508872da17f81b (patch) | |
tree | 7955894a3b5da65af4c88095b7aaa22ebb8e577e /libavformat/webvttenc.c | |
parent | d8a18c8fc2907004448cb45e704dc82bcd2df528 (diff) | |
download | ffmpeg-e07126f54a11cbfc23288f2e15508872da17f81b.tar.gz |
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.c | 2 |
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"); |