]> git.sesse.net Git - ffmpeg/blob - libavutil/detection_bbox.c
avutil/buffer: Switch AVBuffer API to size_t
[ffmpeg] / libavutil / detection_bbox.c
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
21 AVDetectionBBoxHeader *av_detection_bbox_alloc(uint32_t nb_bboxes, size_t *out_size)
22 {
23     size_t size;
24     struct {
25         AVDetectionBBoxHeader header;
26         AVDetectionBBox boxes[1];
27     } *ret;
28
29     size = sizeof(*ret);
30     if (nb_bboxes - 1 > (SIZE_MAX - size) / sizeof(*ret->boxes))
31         return NULL;
32     size += sizeof(*ret->boxes) * (nb_bboxes - 1);
33
34     ret = av_mallocz(size);
35     if (!ret)
36         return NULL;
37
38     ret->header.nb_bboxes = nb_bboxes;
39     ret->header.bbox_size = sizeof(*ret->boxes);
40     ret->header.bboxes_offset = (char *)&ret->boxes - (char *)&ret->header;
41
42     if (out_size)
43         *out_size = size;
44
45     return &ret->header;
46 }
47
48 AVDetectionBBoxHeader *av_detection_bbox_create_side_data(AVFrame *frame, uint32_t nb_bboxes)
49 {
50     AVBufferRef         *buf;
51     AVDetectionBBoxHeader *header;
52     size_t size;
53
54     header = av_detection_bbox_alloc(nb_bboxes, &size);
55     if (!header)
56         return NULL;
57     buf = av_buffer_create((uint8_t *)header, size, NULL, NULL, 0);
58     if (!buf) {
59         av_freep(&header);
60         return NULL;
61     }
62
63     if (!av_frame_new_side_data_from_buf(frame, AV_FRAME_DATA_DETECTION_BBOXES, buf)) {
64         av_buffer_unref(&buf);
65         return NULL;
66     }
67
68     return header;
69 }