]> git.sesse.net Git - ffmpeg/blob - libavutil/video_enc_params.c
doc: mark "ADPCM IMA High Voltage Software ALP" as encodable
[ffmpeg] / libavutil / video_enc_params.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 <limits.h>
20 #include <stddef.h>
21 #include <stdint.h>
22
23 #include "buffer.h"
24 #include "common.h"
25 #include "frame.h"
26 #include "mem.h"
27 #include "video_enc_params.h"
28
29 AVVideoEncParams *av_video_enc_params_alloc(enum AVVideoEncParamsType type,
30                                             unsigned int nb_blocks, size_t *out_size)
31 {
32     AVVideoEncParams *par;
33     size_t size;
34
35     size = sizeof(*par);
36     if (nb_blocks > SIZE_MAX / sizeof(AVVideoBlockParams) ||
37         nb_blocks * sizeof(AVVideoBlockParams) > SIZE_MAX - size)
38         return NULL;
39     size += sizeof(AVVideoBlockParams) * nb_blocks;
40
41     par = av_mallocz(size);
42     if (!par)
43         return NULL;
44
45     par->type          = type;
46     par->nb_blocks     = nb_blocks;
47     par->block_size    = sizeof(AVVideoBlockParams);
48     par->blocks_offset = sizeof(*par);
49
50     if (out_size)
51         *out_size = size;
52
53     return par;
54 }
55
56 AVVideoEncParams*
57 av_video_enc_params_create_side_data(AVFrame *frame, enum AVVideoEncParamsType type,
58                                      unsigned int nb_blocks)
59 {
60     AVBufferRef      *buf;
61     AVVideoEncParams *par;
62     size_t size;
63
64     par = av_video_enc_params_alloc(type, nb_blocks, &size);
65     if (!par)
66         return NULL;
67     buf = av_buffer_create((uint8_t *)par, size, NULL, NULL, 0);
68     if (!buf) {
69         av_freep(&par);
70         return NULL;
71     }
72
73     if (!av_frame_new_side_data_from_buf(frame, AV_FRAME_DATA_VIDEO_ENC_PARAMS, buf)) {
74         av_buffer_unref(&buf);
75         return NULL;
76     }
77
78     return par;
79 }