annotate ffmpeg/libavcodec/options.c @ 13:844d341cf643 tip

Back up before ISMIR
author Yading Song <yading.song@eecs.qmul.ac.uk>
date Thu, 31 Oct 2013 13:17:06 +0000
parents 6840f77b83aa
children
rev   line source
yading@10 1 /*
yading@10 2 * Copyright (c) 2001 Fabrice Bellard
yading@10 3 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
yading@10 4 *
yading@10 5 * This file is part of FFmpeg.
yading@10 6 *
yading@10 7 * FFmpeg is free software; you can redistribute it and/or
yading@10 8 * modify it under the terms of the GNU Lesser General Public
yading@10 9 * License as published by the Free Software Foundation; either
yading@10 10 * version 2.1 of the License, or (at your option) any later version.
yading@10 11 *
yading@10 12 * FFmpeg is distributed in the hope that it will be useful,
yading@10 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
yading@10 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
yading@10 15 * Lesser General Public License for more details.
yading@10 16 *
yading@10 17 * You should have received a copy of the GNU Lesser General Public
yading@10 18 * License along with FFmpeg; if not, write to the Free Software
yading@10 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
yading@10 20 */
yading@10 21
yading@10 22 /**
yading@10 23 * @file
yading@10 24 * Options definition for AVCodecContext.
yading@10 25 */
yading@10 26
yading@10 27 #include "avcodec.h"
yading@10 28 #include "internal.h"
yading@10 29 #include "libavutil/avassert.h"
yading@10 30 #include "libavutil/mem.h"
yading@10 31 #include "libavutil/opt.h"
yading@10 32 #include <float.h> /* FLT_MIN, FLT_MAX */
yading@10 33 #include <string.h>
yading@10 34
yading@10 35 #include "options_table.h"
yading@10 36
yading@10 37 static const char* context_to_name(void* ptr) {
yading@10 38 AVCodecContext *avc= ptr;
yading@10 39
yading@10 40 if(avc && avc->codec && avc->codec->name)
yading@10 41 return avc->codec->name;
yading@10 42 else
yading@10 43 return "NULL";
yading@10 44 }
yading@10 45
yading@10 46 static void *codec_child_next(void *obj, void *prev)
yading@10 47 {
yading@10 48 AVCodecContext *s = obj;
yading@10 49 if (!prev && s->codec && s->codec->priv_class && s->priv_data)
yading@10 50 return s->priv_data;
yading@10 51 return NULL;
yading@10 52 }
yading@10 53
yading@10 54 static const AVClass *codec_child_class_next(const AVClass *prev)
yading@10 55 {
yading@10 56 AVCodec *c = NULL;
yading@10 57
yading@10 58 /* find the codec that corresponds to prev */
yading@10 59 while (prev && (c = av_codec_next(c)))
yading@10 60 if (c->priv_class == prev)
yading@10 61 break;
yading@10 62
yading@10 63 /* find next codec with priv options */
yading@10 64 while (c = av_codec_next(c))
yading@10 65 if (c->priv_class)
yading@10 66 return c->priv_class;
yading@10 67 return NULL;
yading@10 68 }
yading@10 69
yading@10 70 static AVClassCategory get_category(void *ptr)
yading@10 71 {
yading@10 72 AVCodecContext* avctx = ptr;
yading@10 73 if(avctx->codec && avctx->codec->decode) return AV_CLASS_CATEGORY_DECODER;
yading@10 74 else return AV_CLASS_CATEGORY_ENCODER;
yading@10 75 }
yading@10 76
yading@10 77 static const AVClass av_codec_context_class = {
yading@10 78 .class_name = "AVCodecContext",
yading@10 79 .item_name = context_to_name,
yading@10 80 .option = options,
yading@10 81 .version = LIBAVUTIL_VERSION_INT,
yading@10 82 .log_level_offset_offset = offsetof(AVCodecContext, log_level_offset),
yading@10 83 .child_next = codec_child_next,
yading@10 84 .child_class_next = codec_child_class_next,
yading@10 85 .category = AV_CLASS_CATEGORY_ENCODER,
yading@10 86 .get_category = get_category,
yading@10 87 };
yading@10 88
yading@10 89 #if FF_API_ALLOC_CONTEXT
yading@10 90 void avcodec_get_context_defaults2(AVCodecContext *s, enum AVMediaType codec_type){
yading@10 91 AVCodec c= {0};
yading@10 92 c.type= codec_type;
yading@10 93 avcodec_get_context_defaults3(s, &c);
yading@10 94 }
yading@10 95 #endif
yading@10 96
yading@10 97 int avcodec_get_context_defaults3(AVCodecContext *s, const AVCodec *codec)
yading@10 98 {
yading@10 99 int flags=0;
yading@10 100 memset(s, 0, sizeof(AVCodecContext));
yading@10 101
yading@10 102 s->av_class = &av_codec_context_class;
yading@10 103
yading@10 104 s->codec_type = codec ? codec->type : AVMEDIA_TYPE_UNKNOWN;
yading@10 105 if(s->codec_type == AVMEDIA_TYPE_AUDIO)
yading@10 106 flags= AV_OPT_FLAG_AUDIO_PARAM;
yading@10 107 else if(s->codec_type == AVMEDIA_TYPE_VIDEO)
yading@10 108 flags= AV_OPT_FLAG_VIDEO_PARAM;
yading@10 109 else if(s->codec_type == AVMEDIA_TYPE_SUBTITLE)
yading@10 110 flags= AV_OPT_FLAG_SUBTITLE_PARAM;
yading@10 111 av_opt_set_defaults2(s, flags, flags);
yading@10 112
yading@10 113 s->time_base = (AVRational){0,1};
yading@10 114 s->get_buffer2 = avcodec_default_get_buffer2;
yading@10 115 s->get_format = avcodec_default_get_format;
yading@10 116 s->execute = avcodec_default_execute;
yading@10 117 s->execute2 = avcodec_default_execute2;
yading@10 118 s->sample_aspect_ratio = (AVRational){0,1};
yading@10 119 s->pix_fmt = AV_PIX_FMT_NONE;
yading@10 120 s->sample_fmt = AV_SAMPLE_FMT_NONE;
yading@10 121 s->timecode_frame_start = -1;
yading@10 122
yading@10 123 s->reordered_opaque = AV_NOPTS_VALUE;
yading@10 124 if(codec && codec->priv_data_size){
yading@10 125 if(!s->priv_data){
yading@10 126 s->priv_data= av_mallocz(codec->priv_data_size);
yading@10 127 if (!s->priv_data) {
yading@10 128 return AVERROR(ENOMEM);
yading@10 129 }
yading@10 130 }
yading@10 131 if(codec->priv_class){
yading@10 132 *(const AVClass**)s->priv_data = codec->priv_class;
yading@10 133 av_opt_set_defaults(s->priv_data);
yading@10 134 }
yading@10 135 }
yading@10 136 if (codec && codec->defaults) {
yading@10 137 int ret;
yading@10 138 const AVCodecDefault *d = codec->defaults;
yading@10 139 while (d->key) {
yading@10 140 ret = av_opt_set(s, d->key, d->value, 0);
yading@10 141 av_assert0(ret >= 0);
yading@10 142 d++;
yading@10 143 }
yading@10 144 }
yading@10 145 return 0;
yading@10 146 }
yading@10 147
yading@10 148 AVCodecContext *avcodec_alloc_context3(const AVCodec *codec)
yading@10 149 {
yading@10 150 AVCodecContext *avctx= av_malloc(sizeof(AVCodecContext));
yading@10 151
yading@10 152 if(avctx==NULL) return NULL;
yading@10 153
yading@10 154 if(avcodec_get_context_defaults3(avctx, codec) < 0){
yading@10 155 av_free(avctx);
yading@10 156 return NULL;
yading@10 157 }
yading@10 158
yading@10 159 return avctx;
yading@10 160 }
yading@10 161
yading@10 162 #if FF_API_ALLOC_CONTEXT
yading@10 163 AVCodecContext *avcodec_alloc_context2(enum AVMediaType codec_type){
yading@10 164 AVCodecContext *avctx= av_malloc(sizeof(AVCodecContext));
yading@10 165
yading@10 166 if(avctx==NULL) return NULL;
yading@10 167
yading@10 168 avcodec_get_context_defaults2(avctx, codec_type);
yading@10 169
yading@10 170 return avctx;
yading@10 171 }
yading@10 172
yading@10 173 void avcodec_get_context_defaults(AVCodecContext *s){
yading@10 174 avcodec_get_context_defaults2(s, AVMEDIA_TYPE_UNKNOWN);
yading@10 175 }
yading@10 176
yading@10 177 AVCodecContext *avcodec_alloc_context(void){
yading@10 178 return avcodec_alloc_context2(AVMEDIA_TYPE_UNKNOWN);
yading@10 179 }
yading@10 180 #endif
yading@10 181
yading@10 182 int avcodec_copy_context(AVCodecContext *dest, const AVCodecContext *src)
yading@10 183 {
yading@10 184 if (avcodec_is_open(dest)) { // check that the dest context is uninitialized
yading@10 185 av_log(dest, AV_LOG_ERROR,
yading@10 186 "Tried to copy AVCodecContext %p into already-initialized %p\n",
yading@10 187 src, dest);
yading@10 188 return AVERROR(EINVAL);
yading@10 189 }
yading@10 190 memcpy(dest, src, sizeof(*dest));
yading@10 191
yading@10 192 /* set values specific to opened codecs back to their default state */
yading@10 193 dest->priv_data = NULL;
yading@10 194 dest->codec = NULL;
yading@10 195 dest->slice_offset = NULL;
yading@10 196 dest->hwaccel = NULL;
yading@10 197 dest->thread_opaque = NULL;
yading@10 198 dest->internal = NULL;
yading@10 199
yading@10 200 /* reallocate values that should be allocated separately */
yading@10 201 dest->rc_eq = NULL;
yading@10 202 dest->extradata = NULL;
yading@10 203 dest->intra_matrix = NULL;
yading@10 204 dest->inter_matrix = NULL;
yading@10 205 dest->rc_override = NULL;
yading@10 206 if (src->rc_eq) {
yading@10 207 dest->rc_eq = av_strdup(src->rc_eq);
yading@10 208 if (!dest->rc_eq)
yading@10 209 return AVERROR(ENOMEM);
yading@10 210 }
yading@10 211
yading@10 212 #define alloc_and_copy_or_fail(obj, size, pad) \
yading@10 213 if (src->obj && size > 0) { \
yading@10 214 dest->obj = av_malloc(size + pad); \
yading@10 215 if (!dest->obj) \
yading@10 216 goto fail; \
yading@10 217 memcpy(dest->obj, src->obj, size); \
yading@10 218 if (pad) \
yading@10 219 memset(((uint8_t *) dest->obj) + size, 0, pad); \
yading@10 220 }
yading@10 221 alloc_and_copy_or_fail(extradata, src->extradata_size,
yading@10 222 FF_INPUT_BUFFER_PADDING_SIZE);
yading@10 223 alloc_and_copy_or_fail(intra_matrix, 64 * sizeof(int16_t), 0);
yading@10 224 alloc_and_copy_or_fail(inter_matrix, 64 * sizeof(int16_t), 0);
yading@10 225 alloc_and_copy_or_fail(rc_override, src->rc_override_count * sizeof(*src->rc_override), 0);
yading@10 226 #undef alloc_and_copy_or_fail
yading@10 227
yading@10 228 return 0;
yading@10 229
yading@10 230 fail:
yading@10 231 av_freep(&dest->rc_override);
yading@10 232 av_freep(&dest->intra_matrix);
yading@10 233 av_freep(&dest->inter_matrix);
yading@10 234 av_freep(&dest->extradata);
yading@10 235 av_freep(&dest->rc_eq);
yading@10 236 return AVERROR(ENOMEM);
yading@10 237 }
yading@10 238
yading@10 239 const AVClass *avcodec_get_class(void)
yading@10 240 {
yading@10 241 return &av_codec_context_class;
yading@10 242 }
yading@10 243
yading@10 244 #define FOFFSET(x) offsetof(AVFrame,x)
yading@10 245
yading@10 246 static const AVOption frame_options[]={
yading@10 247 {"best_effort_timestamp", "", FOFFSET(best_effort_timestamp), AV_OPT_TYPE_INT64, {.i64 = AV_NOPTS_VALUE }, INT64_MIN, INT64_MAX, 0},
yading@10 248 {"pkt_pos", "", FOFFSET(pkt_pos), AV_OPT_TYPE_INT64, {.i64 = -1 }, INT64_MIN, INT64_MAX, 0},
yading@10 249 {"pkt_size", "", FOFFSET(pkt_size), AV_OPT_TYPE_INT64, {.i64 = -1 }, INT64_MIN, INT64_MAX, 0},
yading@10 250 {"sample_aspect_ratio", "", FOFFSET(sample_aspect_ratio), AV_OPT_TYPE_RATIONAL, {.dbl = 0 }, 0, INT_MAX, 0},
yading@10 251 {"width", "", FOFFSET(width), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
yading@10 252 {"height", "", FOFFSET(height), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
yading@10 253 {"format", "", FOFFSET(format), AV_OPT_TYPE_INT, {.i64 = -1 }, 0, INT_MAX, 0},
yading@10 254 {"channel_layout", "", FOFFSET(channel_layout), AV_OPT_TYPE_INT64, {.i64 = 0 }, 0, INT64_MAX, 0},
yading@10 255 {"sample_rate", "", FOFFSET(sample_rate), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
yading@10 256 {NULL},
yading@10 257 };
yading@10 258
yading@10 259 static const AVClass av_frame_class = {
yading@10 260 .class_name = "AVFrame",
yading@10 261 .item_name = NULL,
yading@10 262 .option = frame_options,
yading@10 263 .version = LIBAVUTIL_VERSION_INT,
yading@10 264 };
yading@10 265
yading@10 266 const AVClass *avcodec_get_frame_class(void)
yading@10 267 {
yading@10 268 return &av_frame_class;
yading@10 269 }
yading@10 270
yading@10 271 #define SROFFSET(x) offsetof(AVSubtitleRect,x)
yading@10 272
yading@10 273 static const AVOption subtitle_rect_options[]={
yading@10 274 {"x", "", SROFFSET(x), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
yading@10 275 {"y", "", SROFFSET(y), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
yading@10 276 {"w", "", SROFFSET(w), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
yading@10 277 {"h", "", SROFFSET(h), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
yading@10 278 {"type", "", SROFFSET(type), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
yading@10 279 {"flags", "", SROFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, 0, 1, 0, "flags"},
yading@10 280 {"forced", "", SROFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, 0, 1, 0},
yading@10 281 {NULL},
yading@10 282 };
yading@10 283
yading@10 284 static const AVClass av_subtitle_rect_class = {
yading@10 285 .class_name = "AVSubtitleRect",
yading@10 286 .item_name = NULL,
yading@10 287 .option = subtitle_rect_options,
yading@10 288 .version = LIBAVUTIL_VERSION_INT,
yading@10 289 };
yading@10 290
yading@10 291 const AVClass *avcodec_get_subtitle_rect_class(void)
yading@10 292 {
yading@10 293 return &av_subtitle_rect_class;
yading@10 294 }