2009-01-10 09:53:21 +00:00
|
|
|
/*
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2001 Fabrice Bellard
|
2009-01-10 09:53:21 +00:00
|
|
|
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2009-01-10 09:53:21 +00:00
|
|
|
* Options definition for AVCodecContext.
|
|
|
|
*/
|
|
|
|
|
2024-04-25 09:18:18 +00:00
|
|
|
#include "config_components.h"
|
|
|
|
|
2009-01-10 09:53:21 +00:00
|
|
|
#include "avcodec.h"
|
2024-04-25 09:18:18 +00:00
|
|
|
#include "codec_internal.h"
|
2011-06-08 06:27:53 +00:00
|
|
|
#include "libavutil/avassert.h"
|
2013-10-27 12:51:16 +00:00
|
|
|
#include "libavutil/internal.h"
|
2012-08-06 13:49:32 +00:00
|
|
|
#include "libavutil/mem.h"
|
2010-09-26 14:25:22 +00:00
|
|
|
#include "libavutil/opt.h"
|
2012-08-06 13:49:32 +00:00
|
|
|
#include <string.h>
|
2009-01-10 09:53:21 +00:00
|
|
|
|
2015-07-03 18:25:30 +00:00
|
|
|
FF_DISABLE_DEPRECATION_WARNINGS
|
2012-03-14 12:18:20 +00:00
|
|
|
#include "options_table.h"
|
2015-07-03 18:25:30 +00:00
|
|
|
FF_ENABLE_DEPRECATION_WARNINGS
|
2012-03-14 12:18:20 +00:00
|
|
|
|
2009-01-10 09:53:21 +00:00
|
|
|
static const char* context_to_name(void* ptr) {
|
|
|
|
AVCodecContext *avc= ptr;
|
|
|
|
|
2024-04-25 09:18:18 +00:00
|
|
|
if (avc && avc->codec)
|
2009-01-10 09:53:21 +00:00
|
|
|
return avc->codec->name;
|
|
|
|
else
|
|
|
|
return "NULL";
|
|
|
|
}
|
|
|
|
|
2011-10-03 17:49:12 +00:00
|
|
|
static void *codec_child_next(void *obj, void *prev)
|
2011-06-17 04:39:42 +00:00
|
|
|
{
|
|
|
|
AVCodecContext *s = obj;
|
2011-10-03 17:49:12 +00:00
|
|
|
if (!prev && s->codec && s->codec->priv_class && s->priv_data)
|
|
|
|
return s->priv_data;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2022-05-23 03:23:35 +00:00
|
|
|
static const AVClass *codec_child_class_iterate(void **iter)
|
|
|
|
{
|
|
|
|
const AVCodec *c;
|
|
|
|
/* find next codec with priv options */
|
|
|
|
while (c = av_codec_iterate(iter))
|
|
|
|
if (c->priv_class)
|
|
|
|
return c->priv_class;
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-06-17 04:39:42 +00:00
|
|
|
|
2012-07-27 16:11:01 +00:00
|
|
|
static AVClassCategory get_category(void *ptr)
|
2012-06-03 20:40:37 +00:00
|
|
|
{
|
2012-07-27 16:11:01 +00:00
|
|
|
AVCodecContext* avctx = ptr;
|
2024-04-25 09:18:18 +00:00
|
|
|
if (avctx->codec && av_codec_is_decoder(avctx->codec))
|
|
|
|
return AV_CLASS_CATEGORY_DECODER;
|
|
|
|
else
|
|
|
|
return AV_CLASS_CATEGORY_ENCODER;
|
2012-06-03 20:40:37 +00:00
|
|
|
}
|
|
|
|
|
2011-10-03 12:13:17 +00:00
|
|
|
static const AVClass av_codec_context_class = {
|
|
|
|
.class_name = "AVCodecContext",
|
|
|
|
.item_name = context_to_name,
|
2013-08-01 12:35:01 +00:00
|
|
|
.option = avcodec_options,
|
2011-10-03 12:13:17 +00:00
|
|
|
.version = LIBAVUTIL_VERSION_INT,
|
2012-03-14 12:18:20 +00:00
|
|
|
.log_level_offset_offset = offsetof(AVCodecContext, log_level_offset),
|
2011-10-03 17:49:12 +00:00
|
|
|
.child_next = codec_child_next,
|
2022-05-23 03:23:35 +00:00
|
|
|
.child_class_iterate = codec_child_class_iterate,
|
2012-05-28 10:50:06 +00:00
|
|
|
.category = AV_CLASS_CATEGORY_ENCODER,
|
2012-07-27 16:11:01 +00:00
|
|
|
.get_category = get_category,
|
2011-10-03 12:13:17 +00:00
|
|
|
};
|
2009-01-10 09:53:21 +00:00
|
|
|
|
2016-05-21 09:57:28 +00:00
|
|
|
static int init_context_defaults(AVCodecContext *s, const AVCodec *codec)
|
2012-08-11 12:50:36 +00:00
|
|
|
{
|
2024-04-25 09:18:18 +00:00
|
|
|
const FFCodec *const codec2 = ffcodec(codec);
|
2009-01-10 09:53:21 +00:00
|
|
|
int flags=0;
|
|
|
|
memset(s, 0, sizeof(AVCodecContext));
|
|
|
|
|
2011-10-08 06:47:47 +00:00
|
|
|
s->av_class = &av_codec_context_class;
|
2009-01-10 09:53:21 +00:00
|
|
|
|
2011-10-08 06:47:47 +00:00
|
|
|
s->codec_type = codec ? codec->type : AVMEDIA_TYPE_UNKNOWN;
|
2014-11-12 17:25:45 +00:00
|
|
|
if (codec) {
|
|
|
|
s->codec = codec;
|
2013-04-22 19:37:25 +00:00
|
|
|
s->codec_id = codec->id;
|
2014-11-12 17:25:45 +00:00
|
|
|
}
|
2013-04-22 19:37:25 +00:00
|
|
|
|
2011-10-20 00:23:36 +00:00
|
|
|
if(s->codec_type == AVMEDIA_TYPE_AUDIO)
|
2009-01-10 09:53:21 +00:00
|
|
|
flags= AV_OPT_FLAG_AUDIO_PARAM;
|
2011-10-20 00:23:36 +00:00
|
|
|
else if(s->codec_type == AVMEDIA_TYPE_VIDEO)
|
2009-01-10 09:53:21 +00:00
|
|
|
flags= AV_OPT_FLAG_VIDEO_PARAM;
|
2011-10-20 00:23:36 +00:00
|
|
|
else if(s->codec_type == AVMEDIA_TYPE_SUBTITLE)
|
2009-01-10 09:53:21 +00:00
|
|
|
flags= AV_OPT_FLAG_SUBTITLE_PARAM;
|
|
|
|
av_opt_set_defaults2(s, flags, flags);
|
|
|
|
|
2024-04-25 09:18:18 +00:00
|
|
|
av_channel_layout_uninit(&s->ch_layout);
|
|
|
|
|
2011-10-08 06:47:47 +00:00
|
|
|
s->time_base = (AVRational){0,1};
|
2014-04-04 10:47:44 +00:00
|
|
|
s->framerate = (AVRational){ 0, 1 };
|
2014-11-15 19:57:14 +00:00
|
|
|
s->pkt_timebase = (AVRational){ 0, 1 };
|
2012-11-21 20:34:46 +00:00
|
|
|
s->get_buffer2 = avcodec_default_get_buffer2;
|
2011-10-08 06:47:47 +00:00
|
|
|
s->get_format = avcodec_default_get_format;
|
2022-05-23 03:23:35 +00:00
|
|
|
s->get_encode_buffer = avcodec_default_get_encode_buffer;
|
2011-10-08 06:47:47 +00:00
|
|
|
s->execute = avcodec_default_execute;
|
|
|
|
s->execute2 = avcodec_default_execute2;
|
|
|
|
s->sample_aspect_ratio = (AVRational){0,1};
|
2024-04-25 09:18:18 +00:00
|
|
|
s->ch_layout.order = AV_CHANNEL_ORDER_UNSPEC;
|
2012-10-06 10:10:34 +00:00
|
|
|
s->pix_fmt = AV_PIX_FMT_NONE;
|
2016-07-14 10:16:17 +00:00
|
|
|
s->sw_pix_fmt = AV_PIX_FMT_NONE;
|
2011-10-08 06:47:47 +00:00
|
|
|
s->sample_fmt = AV_SAMPLE_FMT_NONE;
|
2009-01-10 09:53:21 +00:00
|
|
|
|
2011-10-08 06:47:47 +00:00
|
|
|
s->reordered_opaque = AV_NOPTS_VALUE;
|
2024-04-25 09:18:18 +00:00
|
|
|
if(codec && codec2->priv_data_size){
|
|
|
|
s->priv_data = av_mallocz(codec2->priv_data_size);
|
|
|
|
if (!s->priv_data)
|
|
|
|
return AVERROR(ENOMEM);
|
2010-09-29 15:05:47 +00:00
|
|
|
if(codec->priv_class){
|
2011-11-19 06:09:48 +00:00
|
|
|
*(const AVClass**)s->priv_data = codec->priv_class;
|
2010-09-29 15:05:47 +00:00
|
|
|
av_opt_set_defaults(s->priv_data);
|
|
|
|
}
|
|
|
|
}
|
2024-04-25 09:18:18 +00:00
|
|
|
if (codec && codec2->defaults) {
|
2011-06-08 06:27:53 +00:00
|
|
|
int ret;
|
2024-04-25 09:18:18 +00:00
|
|
|
const FFCodecDefault *d = codec2->defaults;
|
2011-06-08 06:27:53 +00:00
|
|
|
while (d->key) {
|
2011-11-19 06:14:27 +00:00
|
|
|
ret = av_opt_set(s, d->key, d->value, 0);
|
2011-06-08 06:27:53 +00:00
|
|
|
av_assert0(ret >= 0);
|
|
|
|
d++;
|
|
|
|
}
|
|
|
|
}
|
2010-09-29 15:05:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-11 12:50:36 +00:00
|
|
|
AVCodecContext *avcodec_alloc_context3(const AVCodec *codec)
|
|
|
|
{
|
2010-09-29 15:05:47 +00:00
|
|
|
AVCodecContext *avctx= av_malloc(sizeof(AVCodecContext));
|
|
|
|
|
2014-08-14 20:31:24 +00:00
|
|
|
if (!avctx)
|
|
|
|
return NULL;
|
2010-09-29 15:05:47 +00:00
|
|
|
|
2016-05-21 09:57:28 +00:00
|
|
|
if (init_context_defaults(avctx, codec) < 0) {
|
2010-09-29 15:05:47 +00:00
|
|
|
av_free(avctx);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return avctx;
|
|
|
|
}
|
|
|
|
|
2014-04-05 06:36:00 +00:00
|
|
|
void avcodec_free_context(AVCodecContext **pavctx)
|
|
|
|
{
|
|
|
|
AVCodecContext *avctx = *pavctx;
|
|
|
|
|
|
|
|
if (!avctx)
|
|
|
|
return;
|
|
|
|
|
|
|
|
avcodec_close(avctx);
|
|
|
|
|
|
|
|
av_freep(&avctx->extradata);
|
|
|
|
av_freep(&avctx->subtitle_header);
|
2014-11-22 19:43:47 +00:00
|
|
|
av_freep(&avctx->intra_matrix);
|
|
|
|
av_freep(&avctx->inter_matrix);
|
|
|
|
av_freep(&avctx->rc_override);
|
2024-04-25 09:18:18 +00:00
|
|
|
av_channel_layout_uninit(&avctx->ch_layout);
|
2014-04-05 06:36:00 +00:00
|
|
|
|
|
|
|
av_freep(pavctx);
|
|
|
|
}
|
|
|
|
|
2011-08-23 05:23:52 +00:00
|
|
|
const AVClass *avcodec_get_class(void)
|
|
|
|
{
|
|
|
|
return &av_codec_context_class;
|
|
|
|
}
|
2011-12-03 20:17:52 +00:00
|
|
|
|
2022-05-23 03:23:35 +00:00
|
|
|
#if FF_API_GET_FRAME_CLASS
|
2024-04-25 09:18:18 +00:00
|
|
|
FF_DISABLE_DEPRECATION_WARNINGS
|
2011-12-03 20:17:52 +00:00
|
|
|
#define FOFFSET(x) offsetof(AVFrame,x)
|
|
|
|
|
|
|
|
static const AVOption frame_options[]={
|
2012-08-24 12:51:51 +00:00
|
|
|
{"best_effort_timestamp", "", FOFFSET(best_effort_timestamp), AV_OPT_TYPE_INT64, {.i64 = AV_NOPTS_VALUE }, INT64_MIN, INT64_MAX, 0},
|
|
|
|
{"pkt_pos", "", FOFFSET(pkt_pos), AV_OPT_TYPE_INT64, {.i64 = -1 }, INT64_MIN, INT64_MAX, 0},
|
2012-12-14 10:58:21 +00:00
|
|
|
{"pkt_size", "", FOFFSET(pkt_size), AV_OPT_TYPE_INT64, {.i64 = -1 }, INT64_MIN, INT64_MAX, 0},
|
2011-12-03 20:17:52 +00:00
|
|
|
{"sample_aspect_ratio", "", FOFFSET(sample_aspect_ratio), AV_OPT_TYPE_RATIONAL, {.dbl = 0 }, 0, INT_MAX, 0},
|
2012-09-05 12:26:01 +00:00
|
|
|
{"width", "", FOFFSET(width), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
|
|
|
|
{"height", "", FOFFSET(height), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
|
|
|
|
{"format", "", FOFFSET(format), AV_OPT_TYPE_INT, {.i64 = -1 }, 0, INT_MAX, 0},
|
2024-04-25 09:18:18 +00:00
|
|
|
#if FF_API_OLD_CHANNEL_LAYOUT
|
2012-08-24 12:51:51 +00:00
|
|
|
{"channel_layout", "", FOFFSET(channel_layout), AV_OPT_TYPE_INT64, {.i64 = 0 }, 0, INT64_MAX, 0},
|
2024-04-25 09:18:18 +00:00
|
|
|
#endif
|
2012-09-05 12:26:01 +00:00
|
|
|
{"sample_rate", "", FOFFSET(sample_rate), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
|
2011-12-03 20:17:52 +00:00
|
|
|
{NULL},
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVClass av_frame_class = {
|
|
|
|
.class_name = "AVFrame",
|
|
|
|
.item_name = NULL,
|
|
|
|
.option = frame_options,
|
|
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
|
|
};
|
|
|
|
|
|
|
|
const AVClass *avcodec_get_frame_class(void)
|
|
|
|
{
|
|
|
|
return &av_frame_class;
|
|
|
|
}
|
2024-04-25 09:18:18 +00:00
|
|
|
FF_ENABLE_DEPRECATION_WARNINGS
|
2022-05-23 03:23:35 +00:00
|
|
|
#endif
|
2012-04-18 06:08:25 +00:00
|
|
|
|
|
|
|
#define SROFFSET(x) offsetof(AVSubtitleRect,x)
|
|
|
|
|
|
|
|
static const AVOption subtitle_rect_options[]={
|
2012-09-05 12:26:01 +00:00
|
|
|
{"x", "", SROFFSET(x), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
|
|
|
|
{"y", "", SROFFSET(y), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
|
|
|
|
{"w", "", SROFFSET(w), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
|
|
|
|
{"h", "", SROFFSET(h), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
|
|
|
|
{"type", "", SROFFSET(type), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
|
2012-11-03 13:13:45 +00:00
|
|
|
{"flags", "", SROFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, 0, 1, 0, "flags"},
|
|
|
|
{"forced", "", SROFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, 0, 1, 0},
|
2012-04-18 06:08:25 +00:00
|
|
|
{NULL},
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVClass av_subtitle_rect_class = {
|
|
|
|
.class_name = "AVSubtitleRect",
|
|
|
|
.item_name = NULL,
|
|
|
|
.option = subtitle_rect_options,
|
|
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
|
|
};
|
|
|
|
|
|
|
|
const AVClass *avcodec_get_subtitle_rect_class(void)
|
|
|
|
{
|
|
|
|
return &av_subtitle_rect_class;
|
|
|
|
}
|