]> git.sesse.net Git - ffmpeg/blob - libavcodec/options.c
vp9: split superframes in the filtering stage before actual decoding
[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 FF_DISABLE_DEPRECATION_WARNINGS
37 #include "options_table.h"
38 FF_ENABLE_DEPRECATION_WARNINGS
39
40 static const char* context_to_name(void* ptr) {
41     AVCodecContext *avc= ptr;
42
43     if(avc && avc->codec && avc->codec->name)
44         return avc->codec->name;
45     else
46         return "NULL";
47 }
48
49 static void *codec_child_next(void *obj, void *prev)
50 {
51     AVCodecContext *s = obj;
52     if (!prev && s->codec && s->codec->priv_class && s->priv_data)
53         return s->priv_data;
54     return NULL;
55 }
56
57 static const AVClass *codec_child_class_next(const AVClass *prev)
58 {
59     AVCodec *c = NULL;
60
61     /* find the codec that corresponds to prev */
62     while (prev && (c = av_codec_next(c)))
63         if (c->priv_class == prev)
64             break;
65
66     /* find next codec with priv options */
67     while (c = av_codec_next(c))
68         if (c->priv_class)
69             return c->priv_class;
70     return NULL;
71 }
72
73 static const AVClass av_codec_context_class = {
74     .class_name              = "AVCodecContext",
75     .item_name               = context_to_name,
76     .option                  = avcodec_options,
77     .version                 = LIBAVUTIL_VERSION_INT,
78     .log_level_offset_offset = offsetof(AVCodecContext, log_level_offset),
79     .child_next              = codec_child_next,
80     .child_class_next        = codec_child_class_next,
81 };
82
83 static int init_context_defaults(AVCodecContext *s, const AVCodec *codec)
84 {
85     memset(s, 0, sizeof(AVCodecContext));
86
87     s->av_class = &av_codec_context_class;
88
89     s->codec_type = codec ? codec->type : AVMEDIA_TYPE_UNKNOWN;
90     s->codec      = codec;
91     av_opt_set_defaults(s);
92
93     s->time_base           = (AVRational){0,1};
94     s->framerate           = (AVRational){ 0, 1 };
95     s->get_buffer2         = avcodec_default_get_buffer2;
96     s->get_format          = avcodec_default_get_format;
97     s->execute             = avcodec_default_execute;
98     s->execute2            = avcodec_default_execute2;
99     s->sample_aspect_ratio = (AVRational){0,1};
100     s->pix_fmt             = AV_PIX_FMT_NONE;
101     s->sw_pix_fmt          = AV_PIX_FMT_NONE;
102     s->sample_fmt          = AV_SAMPLE_FMT_NONE;
103
104     s->reordered_opaque    = AV_NOPTS_VALUE;
105     if(codec && codec->priv_data_size){
106         if(!s->priv_data){
107             s->priv_data= av_mallocz(codec->priv_data_size);
108             if (!s->priv_data) {
109                 return AVERROR(ENOMEM);
110             }
111         }
112         if(codec->priv_class){
113             *(const AVClass**)s->priv_data = codec->priv_class;
114             av_opt_set_defaults(s->priv_data);
115         }
116     }
117     if (codec && codec->defaults) {
118         int ret;
119         const AVCodecDefault *d = codec->defaults;
120         while (d->key) {
121             ret = av_opt_set(s, d->key, d->value, 0);
122             av_assert0(ret >= 0);
123             d++;
124         }
125     }
126     return 0;
127 }
128
129 #if FF_API_GET_CONTEXT_DEFAULTS
130 int avcodec_get_context_defaults3(AVCodecContext *s, const AVCodec *codec)
131 {
132     return init_context_defaults(s, codec);
133 }
134 #endif
135
136 AVCodecContext *avcodec_alloc_context3(const AVCodec *codec)
137 {
138     AVCodecContext *avctx= av_malloc(sizeof(AVCodecContext));
139
140     if (!avctx)
141         return NULL;
142
143     if (init_context_defaults(avctx, codec) < 0) {
144         av_free(avctx);
145         return NULL;
146     }
147
148     return avctx;
149 }
150
151 void avcodec_free_context(AVCodecContext **pavctx)
152 {
153     AVCodecContext *avctx = *pavctx;
154
155     if (!avctx)
156         return;
157
158     avcodec_close(avctx);
159
160     av_freep(&avctx->extradata);
161     av_freep(&avctx->subtitle_header);
162
163     av_freep(pavctx);
164 }
165
166 #if FF_API_COPY_CONTEXT
167 int avcodec_copy_context(AVCodecContext *dest, const AVCodecContext *src)
168 {
169     const AVCodec *orig_codec = dest->codec;
170     uint8_t *orig_priv_data = dest->priv_data;
171
172     if (avcodec_is_open(dest)) { // check that the dest context is uninitialized
173         av_log(dest, AV_LOG_ERROR,
174                "Tried to copy AVCodecContext %p into already-initialized %p\n",
175                src, dest);
176         return AVERROR(EINVAL);
177     }
178     memcpy(dest, src, sizeof(*dest));
179
180     dest->priv_data       = orig_priv_data;
181     dest->codec           = orig_codec;
182
183     /* set values specific to opened codecs back to their default state */
184     dest->slice_offset    = NULL;
185     dest->hwaccel         = NULL;
186     dest->internal        = NULL;
187
188     /* reallocate values that should be allocated separately */
189     dest->extradata       = NULL;
190     dest->intra_matrix    = NULL;
191     dest->inter_matrix    = NULL;
192     dest->rc_override     = NULL;
193     dest->subtitle_header = NULL;
194     dest->hw_frames_ctx   = NULL;
195 #if FF_API_MPV_OPT
196     FF_DISABLE_DEPRECATION_WARNINGS
197     dest->rc_eq           = NULL;
198     if (src->rc_eq) {
199         dest->rc_eq = av_strdup(src->rc_eq);
200         if (!dest->rc_eq)
201             return AVERROR(ENOMEM);
202     }
203     FF_ENABLE_DEPRECATION_WARNINGS
204 #endif
205
206 #define alloc_and_copy_or_fail(obj, size, pad) \
207     if (src->obj && size > 0) { \
208         dest->obj = av_malloc(size + pad); \
209         if (!dest->obj) \
210             goto fail; \
211         memcpy(dest->obj, src->obj, size); \
212         if (pad) \
213             memset(((uint8_t *) dest->obj) + size, 0, pad); \
214     }
215     alloc_and_copy_or_fail(extradata,    src->extradata_size,
216                            AV_INPUT_BUFFER_PADDING_SIZE);
217     alloc_and_copy_or_fail(intra_matrix, 64 * sizeof(int16_t), 0);
218     alloc_and_copy_or_fail(inter_matrix, 64 * sizeof(int16_t), 0);
219     alloc_and_copy_or_fail(rc_override,  src->rc_override_count * sizeof(*src->rc_override), 0);
220     alloc_and_copy_or_fail(subtitle_header, src->subtitle_header_size, 0);
221     dest->subtitle_header_size = src->subtitle_header_size;
222 #undef alloc_and_copy_or_fail
223
224     if (src->hw_frames_ctx) {
225         dest->hw_frames_ctx = av_buffer_ref(src->hw_frames_ctx);
226         if (!dest->hw_frames_ctx)
227             goto fail;
228     }
229
230     return 0;
231
232 fail:
233     av_freep(&dest->subtitle_header);
234     av_freep(&dest->rc_override);
235     av_freep(&dest->intra_matrix);
236     av_freep(&dest->inter_matrix);
237     av_freep(&dest->extradata);
238     av_buffer_unref(&dest->hw_frames_ctx);
239 #if FF_API_MPV_OPT
240     FF_DISABLE_DEPRECATION_WARNINGS
241     av_freep(&dest->rc_eq);
242     FF_ENABLE_DEPRECATION_WARNINGS
243 #endif
244     return AVERROR(ENOMEM);
245 }
246 #endif
247
248 const AVClass *avcodec_get_class(void)
249 {
250     return &av_codec_context_class;
251 }