]> git.sesse.net Git - ffmpeg/blob - libavcodec/options.c
WMAL: Shift output samples by the specified number of padding zeroes.
[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/opt.h"
31 #include <float.h>              /* FLT_MIN, FLT_MAX */
32
33 #include "options_table.h"
34
35 static const char* context_to_name(void* ptr) {
36     AVCodecContext *avc= ptr;
37
38     if(avc && avc->codec && avc->codec->name)
39         return avc->codec->name;
40     else
41         return "NULL";
42 }
43
44 static void *codec_child_next(void *obj, void *prev)
45 {
46     AVCodecContext *s = obj;
47     if (!prev && s->codec && s->codec->priv_class && s->priv_data)
48         return s->priv_data;
49     return NULL;
50 }
51
52 static const AVClass *codec_child_class_next(const AVClass *prev)
53 {
54     AVCodec *c = NULL;
55
56     /* find the codec that corresponds to prev */
57     while (prev && (c = av_codec_next(c)))
58         if (c->priv_class == prev)
59             break;
60
61     /* find next codec with priv options */
62     while (c = av_codec_next(c))
63         if (c->priv_class)
64             return c->priv_class;
65     return NULL;
66 }
67
68 static const AVClass av_codec_context_class = {
69     .class_name              = "AVCodecContext",
70     .item_name               = context_to_name,
71     .option                  = options,
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,
76 };
77
78 int avcodec_get_context_defaults3(AVCodecContext *s, AVCodec *codec){
79     memset(s, 0, sizeof(AVCodecContext));
80
81     s->av_class = &av_codec_context_class;
82
83     s->codec_type = codec ? codec->type : AVMEDIA_TYPE_UNKNOWN;
84     s->codec      = codec;
85     av_opt_set_defaults(s);
86
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;
96
97     s->reget_buffer        = avcodec_default_reget_buffer;
98     s->reordered_opaque    = AV_NOPTS_VALUE;
99     if(codec && codec->priv_data_size){
100         if(!s->priv_data){
101             s->priv_data= av_mallocz(codec->priv_data_size);
102             if (!s->priv_data) {
103                 return AVERROR(ENOMEM);
104             }
105         }
106         if(codec->priv_class){
107             *(const AVClass**)s->priv_data = codec->priv_class;
108             av_opt_set_defaults(s->priv_data);
109         }
110     }
111     if (codec && codec->defaults) {
112         int ret;
113         const AVCodecDefault *d = codec->defaults;
114         while (d->key) {
115             ret = av_opt_set(s, d->key, d->value, 0);
116             av_assert0(ret >= 0);
117             d++;
118         }
119     }
120     return 0;
121 }
122
123 AVCodecContext *avcodec_alloc_context3(AVCodec *codec){
124     AVCodecContext *avctx= av_malloc(sizeof(AVCodecContext));
125
126     if(avctx==NULL) return NULL;
127
128     if(avcodec_get_context_defaults3(avctx, codec) < 0){
129         av_free(avctx);
130         return NULL;
131     }
132
133     return avctx;
134 }
135
136 int avcodec_copy_context(AVCodecContext *dest, const AVCodecContext *src)
137 {
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",
141                src, dest);
142         return AVERROR(EINVAL);
143     }
144     memcpy(dest, src, sizeof(*dest));
145
146     /* set values specific to opened codecs back to their default state */
147     dest->priv_data       = NULL;
148     dest->codec           = NULL;
149     dest->slice_offset    = NULL;
150     dest->hwaccel         = NULL;
151     dest->thread_opaque   = NULL;
152     dest->internal        = NULL;
153
154     /* reallocate values that should be allocated separately */
155     dest->rc_eq           = NULL;
156     dest->extradata       = NULL;
157     dest->intra_matrix    = NULL;
158     dest->inter_matrix    = NULL;
159     dest->rc_override     = NULL;
160     if (src->rc_eq) {
161         dest->rc_eq = av_strdup(src->rc_eq);
162         if (!dest->rc_eq)
163             return AVERROR(ENOMEM);
164     }
165
166 #define alloc_and_copy_or_fail(obj, size, pad) \
167     if (src->obj && size > 0) { \
168         dest->obj = av_malloc(size + pad); \
169         if (!dest->obj) \
170             goto fail; \
171         memcpy(dest->obj, src->obj, size); \
172         if (pad) \
173             memset(((uint8_t *) dest->obj) + size, 0, pad); \
174     }
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
181
182     return 0;
183
184 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);
191 }
192
193 const AVClass *avcodec_get_class(void)
194 {
195     return &av_codec_context_class;
196 }