]> git.sesse.net Git - ffmpeg/blob - libavcodec/options.c
h264.c: constify all uses of H264Context in slice and lower-level functions
[ffmpeg] / libavcodec / options.c
1 /*
2  * Copyright (c) 2001 Fabrice Bellard
3  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * Options definition for AVCodecContext.
25  */
26
27 #include "avcodec.h"
28 #include "internal.h"
29 #include "libavutil/avassert.h"
30 #include "libavutil/internal.h"
31 #include "libavutil/mem.h"
32 #include "libavutil/opt.h"
33 #include <float.h>              /* FLT_MIN, FLT_MAX */
34 #include <string.h>
35
36 #include "options_table.h"
37
38 static const char* context_to_name(void* ptr) {
39     AVCodecContext *avc= ptr;
40
41     if(avc && avc->codec && avc->codec->name)
42         return avc->codec->name;
43     else
44         return "NULL";
45 }
46
47 static void *codec_child_next(void *obj, void *prev)
48 {
49     AVCodecContext *s = obj;
50     if (!prev && s->codec && s->codec->priv_class && s->priv_data)
51         return s->priv_data;
52     return NULL;
53 }
54
55 static const AVClass *codec_child_class_next(const AVClass *prev)
56 {
57     AVCodec *c = NULL;
58
59     /* find the codec that corresponds to prev */
60     while (prev && (c = av_codec_next(c)))
61         if (c->priv_class == prev)
62             break;
63
64     /* find next codec with priv options */
65     while (c = av_codec_next(c))
66         if (c->priv_class)
67             return c->priv_class;
68     return NULL;
69 }
70
71 static const AVClass av_codec_context_class = {
72     .class_name              = "AVCodecContext",
73     .item_name               = context_to_name,
74     .option                  = avcodec_options,
75     .version                 = LIBAVUTIL_VERSION_INT,
76     .log_level_offset_offset = offsetof(AVCodecContext, log_level_offset),
77     .child_next              = codec_child_next,
78     .child_class_next        = codec_child_class_next,
79 };
80
81 int avcodec_get_context_defaults3(AVCodecContext *s, const AVCodec *codec)
82 {
83     memset(s, 0, sizeof(AVCodecContext));
84
85     s->av_class = &av_codec_context_class;
86
87     s->codec_type = codec ? codec->type : AVMEDIA_TYPE_UNKNOWN;
88     s->codec      = codec;
89     av_opt_set_defaults(s);
90
91     s->time_base           = (AVRational){0,1};
92     s->framerate           = (AVRational){ 0, 1 };
93     s->get_buffer2         = avcodec_default_get_buffer2;
94     s->get_format          = avcodec_default_get_format;
95     s->execute             = avcodec_default_execute;
96     s->execute2            = avcodec_default_execute2;
97     s->sample_aspect_ratio = (AVRational){0,1};
98     s->pix_fmt             = AV_PIX_FMT_NONE;
99     s->sample_fmt          = AV_SAMPLE_FMT_NONE;
100
101     s->reordered_opaque    = AV_NOPTS_VALUE;
102     if(codec && codec->priv_data_size){
103         if(!s->priv_data){
104             s->priv_data= av_mallocz(codec->priv_data_size);
105             if (!s->priv_data) {
106                 return AVERROR(ENOMEM);
107             }
108         }
109         if(codec->priv_class){
110             *(const AVClass**)s->priv_data = codec->priv_class;
111             av_opt_set_defaults(s->priv_data);
112         }
113     }
114     if (codec && codec->defaults) {
115         int ret;
116         const AVCodecDefault *d = codec->defaults;
117         while (d->key) {
118             ret = av_opt_set(s, d->key, d->value, 0);
119             av_assert0(ret >= 0);
120             d++;
121         }
122     }
123     return 0;
124 }
125
126 AVCodecContext *avcodec_alloc_context3(const AVCodec *codec)
127 {
128     AVCodecContext *avctx= av_malloc(sizeof(AVCodecContext));
129
130     if (!avctx)
131         return NULL;
132
133     if(avcodec_get_context_defaults3(avctx, codec) < 0){
134         av_free(avctx);
135         return NULL;
136     }
137
138     return avctx;
139 }
140
141 void avcodec_free_context(AVCodecContext **pavctx)
142 {
143     AVCodecContext *avctx = *pavctx;
144
145     if (!avctx)
146         return;
147
148     avcodec_close(avctx);
149
150     av_freep(&avctx->extradata);
151     av_freep(&avctx->subtitle_header);
152
153     av_freep(pavctx);
154 }
155
156 int avcodec_copy_context(AVCodecContext *dest, const AVCodecContext *src)
157 {
158     const AVCodec *orig_codec = dest->codec;
159     uint8_t *orig_priv_data = dest->priv_data;
160
161     if (avcodec_is_open(dest)) { // check that the dest context is uninitialized
162         av_log(dest, AV_LOG_ERROR,
163                "Tried to copy AVCodecContext %p into already-initialized %p\n",
164                src, dest);
165         return AVERROR(EINVAL);
166     }
167     memcpy(dest, src, sizeof(*dest));
168
169     dest->priv_data       = orig_priv_data;
170     dest->codec           = orig_codec;
171
172     /* set values specific to opened codecs back to their default state */
173     dest->slice_offset    = NULL;
174     dest->hwaccel         = NULL;
175     dest->internal        = NULL;
176
177     /* reallocate values that should be allocated separately */
178     dest->extradata       = NULL;
179     dest->intra_matrix    = NULL;
180     dest->inter_matrix    = NULL;
181     dest->rc_override     = NULL;
182     dest->subtitle_header = NULL;
183 #if FF_API_MPV_OPT
184     FF_DISABLE_DEPRECATION_WARNINGS
185     dest->rc_eq           = NULL;
186     if (src->rc_eq) {
187         dest->rc_eq = av_strdup(src->rc_eq);
188         if (!dest->rc_eq)
189             return AVERROR(ENOMEM);
190     }
191     FF_ENABLE_DEPRECATION_WARNINGS
192 #endif
193
194 #define alloc_and_copy_or_fail(obj, size, pad) \
195     if (src->obj && size > 0) { \
196         dest->obj = av_malloc(size + pad); \
197         if (!dest->obj) \
198             goto fail; \
199         memcpy(dest->obj, src->obj, size); \
200         if (pad) \
201             memset(((uint8_t *) dest->obj) + size, 0, pad); \
202     }
203     alloc_and_copy_or_fail(extradata,    src->extradata_size,
204                            FF_INPUT_BUFFER_PADDING_SIZE);
205     alloc_and_copy_or_fail(intra_matrix, 64 * sizeof(int16_t), 0);
206     alloc_and_copy_or_fail(inter_matrix, 64 * sizeof(int16_t), 0);
207     alloc_and_copy_or_fail(rc_override,  src->rc_override_count * sizeof(*src->rc_override), 0);
208     alloc_and_copy_or_fail(subtitle_header, src->subtitle_header_size, 0);
209     dest->subtitle_header_size = src->subtitle_header_size;
210 #undef alloc_and_copy_or_fail
211
212     return 0;
213
214 fail:
215     av_freep(&dest->rc_override);
216     av_freep(&dest->intra_matrix);
217     av_freep(&dest->inter_matrix);
218     av_freep(&dest->extradata);
219 #if FF_API_MPV_OPT
220     FF_DISABLE_DEPRECATION_WARNINGS
221     av_freep(&dest->rc_eq);
222     FF_ENABLE_DEPRECATION_WARNINGS
223 #endif
224     return AVERROR(ENOMEM);
225 }
226
227 const AVClass *avcodec_get_class(void)
228 {
229     return &av_codec_context_class;
230 }