FFmpeg
Loading...
Searching...
No Matches
detection_bbox.c
Go to the documentation of this file.
1/*
2 * This file is part of FFmpeg.
3 *
4 * FFmpeg is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * FFmpeg is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#include "detection_bbox.h"
20#include "mem.h"
21
23{
24 size_t size;
25 struct BBoxContext {
27 AVDetectionBBox boxes;
28 };
29 const size_t bboxes_offset = offsetof(struct BBoxContext, boxes);
30 const size_t bbox_size = sizeof(AVDetectionBBox);
32
33 size = bboxes_offset;
34 if (nb_bboxes > (SIZE_MAX - size) / bbox_size)
35 return NULL;
36 size += bbox_size * nb_bboxes;
37
39 if (!header)
40 return NULL;
41
42 header->nb_bboxes = nb_bboxes;
43 header->bbox_size = bbox_size;
44 header->bboxes_offset = bboxes_offset;
45
46 if (out_size)
47 *out_size = size;
48
49 return header;
50}
51
53{
54 AVBufferRef *buf;
56 size_t size;
57
58 header = av_detection_bbox_alloc(nb_bboxes, &size);
59 if (!header)
60 return NULL;
61 buf = av_buffer_create((uint8_t *)header, size, NULL, NULL, 0);
62 if (!buf) {
64 return NULL;
65 }
66
68 av_buffer_unref(&buf);
69 return NULL;
70 }
71
72 return header;
73}
#define NULL
Definition coverity.c:32
static AVFrame * frame
AVDetectionBBoxHeader * av_detection_bbox_alloc(uint32_t nb_bboxes, size_t *out_size)
Allocates memory for AVDetectionBBoxHeader, plus an array of nb_bboxes AVDetectionBBox,...
AVDetectionBBoxHeader * av_detection_bbox_create_side_data(AVFrame *frame, uint32_t nb_bboxes)
Allocates memory for AVDetectionBBoxHeader, plus an array of nb_bboxes AVDetectionBBox,...
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it.
Definition buffer.c:139
AVBufferRef * av_buffer_create(uint8_t *data, size_t size, void(*free)(void *opaque, uint8_t *data), void *opaque, int flags)
Create an AVBuffer from an existing array.
Definition buffer.c:55
AVFrameSideData * av_frame_new_side_data_from_buf(AVFrame *frame, enum AVFrameSideDataType type, AVBufferRef *buf)
Add a new side data to a frame from an existing AVBufferRef.
Definition frame.c:638
@ AV_FRAME_DATA_DETECTION_BBOXES
Bounding boxes for object detection and classification, as described by AVDetectionBBoxHeader.
Definition frame.h:194
Memory handling functions.
static const uint8_t header[24]
Definition sdr2.c:68
A reference to a data buffer.
Definition buffer.h:82
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
#define av_mallocz(s)
#define av_freep(p)
static int out_size
Definition movenc.c:56
int size