FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
options.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 #include "avformat.h"
21 #include "avio_internal.h"
22 #include "internal.h"
23 #include "libavutil/opt.h"
24 
25 /**
26  * @file
27  * Options definition for AVFormatContext.
28  */
29 
30 #include "options_table.h"
31 
32 static const char* format_to_name(void* ptr)
33 {
35  if(fc->iformat) return fc->iformat->name;
36  else if(fc->oformat) return fc->oformat->name;
37  else return "NULL";
38 }
39 
40 static void *format_child_next(void *obj, void *prev)
41 {
42  AVFormatContext *s = obj;
43  if (!prev && s->priv_data &&
44  ((s->iformat && s->iformat->priv_class) ||
45  s->oformat && s->oformat->priv_class))
46  return s->priv_data;
47  if (s->pb && s->pb->av_class && prev != s->pb)
48  return s->pb;
49  return NULL;
50 }
51 
52 static const AVClass *format_child_class_next(const AVClass *prev)
53 {
54  AVInputFormat *ifmt = NULL;
55  AVOutputFormat *ofmt = NULL;
56 
57  if (!prev)
58  return &ff_avio_class;
59 
60  while ((ifmt = av_iformat_next(ifmt)))
61  if (ifmt->priv_class == prev)
62  break;
63 
64  if (!ifmt)
65  while ((ofmt = av_oformat_next(ofmt)))
66  if (ofmt->priv_class == prev)
67  break;
68  if (!ofmt)
69  while (ifmt = av_iformat_next(ifmt))
70  if (ifmt->priv_class)
71  return ifmt->priv_class;
72 
73  while (ofmt = av_oformat_next(ofmt))
74  if (ofmt->priv_class)
75  return ofmt->priv_class;
76 
77  return NULL;
78 }
79 
80 static AVClassCategory get_category(void *ptr)
81 {
82  AVFormatContext* s = ptr;
83  if(s->iformat) return AV_CLASS_CATEGORY_DEMUXER;
84  else return AV_CLASS_CATEGORY_MUXER;
85 }
86 
88  .class_name = "AVFormatContext",
89  .item_name = format_to_name,
90  .option = avformat_options,
91  .version = LIBAVUTIL_VERSION_INT,
92  .child_next = format_child_next,
93  .child_class_next = format_child_class_next,
95  .get_category = get_category,
96 };
97 
99 {
100  memset(s, 0, sizeof(AVFormatContext));
101 
103 
105 }
106 
108 {
109  AVFormatContext *ic;
110  ic = av_malloc(sizeof(AVFormatContext));
111  if (!ic) return ic;
113 
114  ic->internal = av_mallocz(sizeof(*ic->internal));
115  if (!ic->internal) {
117  return NULL;
118  }
121 
122  return ic;
123 }
124 
126 {
127  return ctx->duration_estimation_method;
128 }
129 
131 {
132  return &av_format_context_class;
133 }
#define NULL
Definition: coverity.c:32
const char * s
Definition: avisynth_c.h:631
static const AVClass av_format_context_class
Definition: options.c:87
enum AVDurationEstimationMethod duration_estimation_method
The duration field can be estimated through various ways, and this field can be used to know how the ...
Definition: avformat.h:1629
#define LIBAVUTIL_VERSION_INT
Definition: version.h:62
void av_opt_set_defaults(void *s)
Set the values of all AVOption fields to their default values.
Definition: opt.c:1178
AVFormatInternal * internal
An opaque field for libavformat internal usage.
Definition: avformat.h:1695
enum AVDurationEstimationMethod av_fmt_ctx_get_duration_estimation_method(const AVFormatContext *ctx)
Returns the method used to set ctx->duration.
Definition: options.c:125
int64_t offset
Offset to remap timestamps to be non-negative.
Definition: internal.h:92
Format I/O context.
Definition: avformat.h:1272
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
#define av_malloc(s)
AVOptions.
AVDurationEstimationMethod
The duration of a video can be estimated through various ways, and this enum can be used to know how ...
Definition: avformat.h:1256
static void avformat_get_context_defaults(AVFormatContext *s)
Definition: options.c:98
const AVClass * av_class
A class for private options.
Definition: avio.h:124
AVFormatContext * avformat_alloc_context(void)
Allocate an AVFormatContext.
Definition: options.c:107
const AVClass * priv_class
AVClass for the private context.
Definition: avformat.h:653
static AVClassCategory get_category(void *ptr)
Definition: options.c:80
const AVClass ff_avio_class
Definition: aviobuf.c:60
const AVClass * avformat_get_class(void)
Get the AVClass for AVFormatContext.
Definition: options.c:130
int raw_packet_buffer_remaining_size
Definition: internal.h:85
struct AVOutputFormat * oformat
The output container format.
Definition: avformat.h:1291
static const AVOption avformat_options[]
Definition: options_table.h:36
AVClassCategory category
Category used for visualization (like color) This is only set if the category is equal for all object...
Definition: log.h:130
static const AVClass * format_child_class_next(const AVClass *prev)
Definition: options.c:52
static const uint16_t fc[]
Definition: dcaenc.h:41
const char * name
Definition: avformat.h:513
AVOutputFormat * av_oformat_next(const AVOutputFormat *f)
If f is NULL, returns the first registered output format, if f is non-NULL, returns the next register...
Definition: format.c:53
const AVClass * priv_class
AVClass for the private context.
Definition: avformat.h:541
AVIOContext * pb
I/O context.
Definition: avformat.h:1314
Describe the class of an AVClass context structure.
Definition: log.h:67
static void * format_child_next(void *obj, void *prev)
Definition: options.c:40
const AVClass * av_class
A class for logging and AVOptions.
Definition: avformat.h:1277
#define RAW_PACKET_BUFFER_SIZE
Remaining size available for raw_packet_buffer, in bytes.
Definition: internal.h:84
void avformat_free_context(AVFormatContext *s)
Free an AVFormatContext and all its streams.
Definition: utils.c:3609
Main libavformat public API header.
struct AVInputFormat * iformat
The input container format.
Definition: avformat.h:1284
AVClassCategory
Definition: log.h:29
void * priv_data
Format private data.
Definition: avformat.h:1300
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:628
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:250
AVInputFormat * av_iformat_next(const AVInputFormat *f)
If f is NULL, returns the first registered input format, if f is non-NULL, returns the next registere...
Definition: format.c:45
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:241
static const char * format_to_name(void *ptr)
Definition: options.c:32