options.c 3.49 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
 *
 * 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
 */
#include "avformat.h"
21
#include "avio_internal.h"
22
#include "internal.h"
23
#include "libavutil/opt.h"
24 25

/**
26
 * @file
27 28 29
 * Options definition for AVFormatContext.
 */

30 31
#include "options_table.h"

32 33 34 35 36 37 38 39
static const char* format_to_name(void* ptr)
{
    AVFormatContext* fc = (AVFormatContext*) ptr;
    if(fc->iformat) return fc->iformat->name;
    else if(fc->oformat) return fc->oformat->name;
    else return "NULL";
}

40 41 42 43 44 45 46
static void *format_child_next(void *obj, void *prev)
{
    AVFormatContext *s = obj;
    if (!prev && s->priv_data &&
        ((s->iformat && s->iformat->priv_class) ||
          s->oformat && s->oformat->priv_class))
        return s->priv_data;
47 48
    if (s->pb && s->pb->av_class && prev != s->pb)
        return s->pb;
49 50 51 52
    return NULL;
}

static const AVClass *format_child_class_next(const AVClass *prev)
53 54 55
{
    AVInputFormat  *ifmt = NULL;
    AVOutputFormat *ofmt = NULL;
56

57
    if (!prev)
58 59 60
        return &ffio_url_class;

    while ((ifmt = av_iformat_next(ifmt)))
61 62
        if (ifmt->priv_class == prev)
            break;
63 64 65 66 67 68

    if (!ifmt)
        while ((ofmt = av_oformat_next(ofmt)))
            if (ofmt->priv_class == prev)
                break;
    if (!ofmt)
69 70 71 72
        while (ifmt = av_iformat_next(ifmt))
            if (ifmt->priv_class)
                return ifmt->priv_class;

73 74 75
    while (ofmt = av_oformat_next(ofmt))
        if (ofmt->priv_class)
            return ofmt->priv_class;
76

77 78 79
    return NULL;
}

80
static AVClassCategory get_category(void *ptr)
81
{
82
    AVFormatContext* s = ptr;
83 84 85 86
    if(s->iformat) return AV_CLASS_CATEGORY_DEMUXER;
    else           return AV_CLASS_CATEGORY_MUXER;
}

87 88 89
static const AVClass av_format_context_class = {
    .class_name     = "AVFormatContext",
    .item_name      = format_to_name,
90
    .option         = avformat_options,
91
    .version        = LIBAVUTIL_VERSION_INT,
92 93
    .child_next     = format_child_next,
    .child_class_next = format_child_class_next,
94
    .category       = AV_CLASS_CATEGORY_MUXER,
95
    .get_category   = get_category,
96
};
97 98 99 100 101 102 103 104 105 106

static void avformat_get_context_defaults(AVFormatContext *s)
{
    memset(s, 0, sizeof(AVFormatContext));

    s->av_class = &av_format_context_class;

    av_opt_set_defaults(s);
}

107
AVFormatContext *avformat_alloc_context(void)
108 109 110 111 112
{
    AVFormatContext *ic;
    ic = av_malloc(sizeof(AVFormatContext));
    if (!ic) return ic;
    avformat_get_context_defaults(ic);
113 114 115 116 117 118 119

    ic->internal = av_mallocz(sizeof(*ic->internal));
    if (!ic->internal) {
        avformat_free_context(ic);
        return NULL;
    }

120 121
    return ic;
}
122

123
enum AVDurationEstimationMethod av_fmt_ctx_get_duration_estimation_method(const AVFormatContext* ctx)
124 125 126 127
{
    return ctx->duration_estimation_method;
}

128 129 130 131
const AVClass *avformat_get_class(void)
{
    return &av_format_context_class;
}