mirror of https://git.ffmpeg.org/ffmpeg.git
avdevice: use the buffer_size_t typedef where required
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
e07126f54a
commit
f7abb53cb4
|
@ -1437,7 +1437,7 @@ int ff_decklink_read_packet(AVFormatContext *avctx, AVPacket *pkt)
|
|||
avpacket_queue_get(&ctx->queue, pkt, 1);
|
||||
|
||||
if (ctx->tc_format && !(av_dict_get(ctx->video_st->metadata, "timecode", NULL, 0))) {
|
||||
int size;
|
||||
buffer_size_t size;
|
||||
const uint8_t *side_metadata = av_packet_get_side_data(pkt, AV_PKT_DATA_STRINGS_METADATA, &size);
|
||||
if (side_metadata) {
|
||||
if (av_packet_unpack_dictionary(side_metadata, size, &ctx->video_st->metadata) < 0)
|
||||
|
|
|
@ -312,7 +312,8 @@ static void construct_cc(AVFormatContext *avctx, struct decklink_ctx *ctx,
|
|||
uint16_t *cdp_words;
|
||||
uint16_t len;
|
||||
uint8_t cc_count;
|
||||
int size, ret, i;
|
||||
buffer_size_t size;
|
||||
int ret, i;
|
||||
|
||||
const uint8_t *data = av_packet_get_side_data(pkt, AV_PKT_DATA_A53_CC, &size);
|
||||
if (!data)
|
||||
|
|
|
@ -236,7 +236,7 @@ static void free_shm_buffer(void *opaque, uint8_t *data)
|
|||
shmdt(data);
|
||||
}
|
||||
|
||||
static AVBufferRef *allocate_shm_buffer(void *opaque, int size)
|
||||
static AVBufferRef *allocate_shm_buffer(void *opaque, buffer_size_t size)
|
||||
{
|
||||
xcb_connection_t *conn = opaque;
|
||||
xcb_shm_seg_t segment;
|
||||
|
|
Loading…
Reference in New Issue