]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/srtdec.c
avutil/buffer: Switch AVBuffer API to size_t
[ffmpeg] / libavcodec / srtdec.c
index 98f84ac67301fb1d18cf0c4d59acc06277a30b7a..e77b94f74e9d457786999a50e225a314acdbaf10 100644 (file)
@@ -59,7 +59,7 @@ static int srt_decode_frame(AVCodecContext *avctx,
     AVBPrint buffer;
     int x1 = -1, y1 = -1, x2 = -1, y2 = -1;
     int ret;
-    buffer_size_t size;
+    size_t size;
     const uint8_t *p = av_packet_get_side_data(avpkt, AV_PKT_DATA_SUBTITLE_POSITION, &size);
     FFASSDecoderContext *s = avctx->priv_data;