2 * Copyright (c) 2001 Fabrice Bellard
3 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5 * This file is part of Libav.
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.
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.
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
24 * Options definition for AVCodecContext.
29 #include "libavutil/avassert.h"
30 #include "libavutil/opt.h"
31 #include <float.h> /* FLT_MIN, FLT_MAX */
33 #include "options_table.h"
35 static const char* context_to_name(void* ptr) {
36 AVCodecContext *avc= ptr;
38 if(avc && avc->codec && avc->codec->name)
39 return avc->codec->name;
44 static void *codec_child_next(void *obj, void *prev)
46 AVCodecContext *s = obj;
47 if (!prev && s->codec && s->codec->priv_class && s->priv_data)
52 static const AVClass *codec_child_class_next(const AVClass *prev)
56 /* find the codec that corresponds to prev */
57 while (prev && (c = av_codec_next(c)))
58 if (c->priv_class == prev)
61 /* find next codec with priv options */
62 while (c = av_codec_next(c))
68 static const AVClass av_codec_context_class = {
69 .class_name = "AVCodecContext",
70 .item_name = context_to_name,
72 .version = LIBAVUTIL_VERSION_INT,
73 .log_level_offset_offset = offsetof(AVCodecContext, log_level_offset),
74 .child_next = codec_child_next,
75 .child_class_next = codec_child_class_next,
78 int avcodec_get_context_defaults3(AVCodecContext *s, AVCodec *codec){
79 memset(s, 0, sizeof(AVCodecContext));
81 s->av_class = &av_codec_context_class;
83 s->codec_type = codec ? codec->type : AVMEDIA_TYPE_UNKNOWN;
85 av_opt_set_defaults(s);
87 s->time_base = (AVRational){0,1};
88 s->get_buffer = avcodec_default_get_buffer;
89 s->release_buffer = avcodec_default_release_buffer;
90 s->get_format = avcodec_default_get_format;
91 s->execute = avcodec_default_execute;
92 s->execute2 = avcodec_default_execute2;
93 s->sample_aspect_ratio = (AVRational){0,1};
94 s->pix_fmt = PIX_FMT_NONE;
95 s->sample_fmt = AV_SAMPLE_FMT_NONE;
97 s->reget_buffer = avcodec_default_reget_buffer;
98 s->reordered_opaque = AV_NOPTS_VALUE;
99 if(codec && codec->priv_data_size){
101 s->priv_data= av_mallocz(codec->priv_data_size);
103 return AVERROR(ENOMEM);
106 if(codec->priv_class){
107 *(const AVClass**)s->priv_data = codec->priv_class;
108 av_opt_set_defaults(s->priv_data);
111 if (codec && codec->defaults) {
113 const AVCodecDefault *d = codec->defaults;
115 ret = av_opt_set(s, d->key, d->value, 0);
116 av_assert0(ret >= 0);
123 AVCodecContext *avcodec_alloc_context3(AVCodec *codec){
124 AVCodecContext *avctx= av_malloc(sizeof(AVCodecContext));
126 if(avctx==NULL) return NULL;
128 if(avcodec_get_context_defaults3(avctx, codec) < 0){
136 int avcodec_copy_context(AVCodecContext *dest, const AVCodecContext *src)
138 if (avcodec_is_open(dest)) { // check that the dest context is uninitialized
139 av_log(dest, AV_LOG_ERROR,
140 "Tried to copy AVCodecContext %p into already-initialized %p\n",
142 return AVERROR(EINVAL);
144 memcpy(dest, src, sizeof(*dest));
146 /* set values specific to opened codecs back to their default state */
147 dest->priv_data = NULL;
149 dest->slice_offset = NULL;
150 dest->hwaccel = NULL;
151 dest->thread_opaque = NULL;
152 dest->internal = NULL;
154 /* reallocate values that should be allocated separately */
156 dest->extradata = NULL;
157 dest->intra_matrix = NULL;
158 dest->inter_matrix = NULL;
159 dest->rc_override = NULL;
161 dest->rc_eq = av_strdup(src->rc_eq);
163 return AVERROR(ENOMEM);
166 #define alloc_and_copy_or_fail(obj, size, pad) \
167 if (src->obj && size > 0) { \
168 dest->obj = av_malloc(size + pad); \
171 memcpy(dest->obj, src->obj, size); \
173 memset(((uint8_t *) dest->obj) + size, 0, pad); \
175 alloc_and_copy_or_fail(extradata, src->extradata_size,
176 FF_INPUT_BUFFER_PADDING_SIZE);
177 alloc_and_copy_or_fail(intra_matrix, 64 * sizeof(int16_t), 0);
178 alloc_and_copy_or_fail(inter_matrix, 64 * sizeof(int16_t), 0);
179 alloc_and_copy_or_fail(rc_override, src->rc_override_count * sizeof(*src->rc_override), 0);
180 #undef alloc_and_copy_or_fail
185 av_freep(&dest->rc_override);
186 av_freep(&dest->intra_matrix);
187 av_freep(&dest->inter_matrix);
188 av_freep(&dest->extradata);
189 av_freep(&dest->rc_eq);
190 return AVERROR(ENOMEM);
193 const AVClass *avcodec_get_class(void)
195 return &av_codec_context_class;