"README.md" did not exist on "c66216ed5d3ba252b794aee10e6dba01a020bcda"
Newer
Older
* avprobe : Simple Media Prober based on the Libav libraries
* This file is part of Libav.
* Libav 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.
*
* Libav 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 Libav; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavformat/avformat.h"
#include "libavcodec/avcodec.h"
#include "libavutil/avstring.h"
#include "libavutil/display.h"
#include "libavutil/dict.h"
#include "libavutil/libm.h"
#include "libavdevice/avdevice.h"
typedef struct InputStream {
AVStream *st;
typedef struct InputFile {
AVFormatContext *fmt_ctx;
InputStream *streams;
int nb_streams;
const int program_birth_year = 2007;
static int do_show_format = 0;
static AVDictionary *fmt_entries_to_show = NULL;
static int nb_fmt_entries_to_show;
static int do_show_streams = 0;
static int show_value_unit = 0;
static int use_value_prefix = 0;
static int use_byte_value_binary_prefix = 0;
static int use_value_sexagesimal_format = 0;
/* globals */
static const OptionDef *options;
static AVInputFormat *iformat = NULL;
static const char *const binary_unit_prefixes [] = { "", "Ki", "Mi", "Gi", "Ti", "Pi" };
static const char *const decimal_unit_prefixes[] = { "", "K" , "M" , "G" , "T" , "P" };
static const char unit_second_str[] = "s" ;
static const char unit_hertz_str[] = "Hz" ;
static const char unit_byte_str[] = "byte" ;
static const char unit_bit_per_second_str[] = "bit/s";
av_dict_free(&fmt_entries_to_show);
/*
* The output is structured in array and objects that might contain items
* Array could require the objects within to not be named.
* Object could require the items within to be named.
*
* For flat representation the name of each section is saved on prefix so it
* can be rendered in order to represent nested structures (e.g. array of
* objects for the packets list).
*
* Within an array each element can need an unique identifier or an index.
*
* Nesting level is accounted separately.
*/
typedef enum {
ARRAY,
OBJECT
void (*print_header)(void);
void (*print_footer)(void);
void (*print_array_header) (const char *name, int plain_values);
void (*print_array_footer) (const char *name, int plain_values);
void (*print_object_header)(const char *name);
void (*print_object_footer)(const char *name);
void (*print_integer) (const char *key, int64_t value);
void (*print_string) (const char *key, const char *value);
static AVIOContext *probe_out = NULL;
#define AVP_INDENT() avio_printf(probe_out, "%*c", octx.level * 2, ' ')
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
* Default format, INI
*
* - all key and values are utf8
* - '.' is the subgroup separator
* - newlines and the following characters are escaped
* - '\' is the escape character
* - '#' is the comment
* - '=' is the key/value separators
* - ':' is not used but usually parsed as key/value separator
*/
static void ini_print_header(void)
{
avio_printf(probe_out, "# avprobe output\n\n");
}
static void ini_print_footer(void)
{
avio_w8(probe_out, '\n');
}
static void ini_escape_print(const char *s)
{
int i = 0;
char c = 0;
while (c = s[i++]) {
switch (c) {
case '\r': avio_printf(probe_out, "%s", "\\r"); break;
case '\n': avio_printf(probe_out, "%s", "\\n"); break;
case '\f': avio_printf(probe_out, "%s", "\\f"); break;
case '\b': avio_printf(probe_out, "%s", "\\b"); break;
case '\t': avio_printf(probe_out, "%s", "\\t"); break;
case '\\':
case '#' :
case '=' :
case ':' : avio_w8(probe_out, '\\');
default:
if ((unsigned char)c < 32)
avio_printf(probe_out, "\\x00%02x", c & 0xff);
else
avio_w8(probe_out, c);
break;
}
}
}
static void ini_print_array_header(const char *name, int plain_values)
if (!plain_values) {
/* Add a new line if we create a new full group */
if (octx.prefix[octx.level -1].nb_elems)
avio_printf(probe_out, "\n");
} else {
ini_escape_print(name);
avio_w8(probe_out, '=');
}
}
static void ini_print_array_footer(const char *name, int plain_values)
{
if (plain_values)
avio_printf(probe_out, "\n");
}
static void ini_print_object_header(const char *name)
{
int i;
PrintElement *el = octx.prefix + octx.level -1;
if (el->nb_elems)
avio_printf(probe_out, "\n");
avio_printf(probe_out, "[");
for (i = 1; i < octx.level; i++) {
el = octx.prefix + i;
avio_printf(probe_out, "%s.", el->name);
if (el->index >= 0)
avio_printf(probe_out, "%"PRId64".", el->index);
}
avio_printf(probe_out, "%s", name);
avio_printf(probe_out, ".%"PRId64"", el->nb_elems);
avio_printf(probe_out, "]\n");
}
static void ini_print_integer(const char *key, int64_t value)
{
if (key) {
ini_escape_print(key);
avio_printf(probe_out, "=%"PRId64"\n", value);
} else {
if (octx.prefix[octx.level -1].nb_elems)
avio_printf(probe_out, ",");
avio_printf(probe_out, "%"PRId64, value);
}
}
static void ini_print_string(const char *key, const char *value)
{
ini_escape_print(key);
avio_printf(probe_out, "=");
ini_escape_print(value);
avio_w8(probe_out, '\n');
}
/*
* Alternate format, JSON
*/
static void json_print_header(void)
{
avio_printf(probe_out, "{");
}
static void json_print_footer(void)
{
avio_printf(probe_out, "}\n");
}
static void json_print_array_header(const char *name, int plain_values)
{
if (octx.prefix[octx.level -1].nb_elems)
avio_printf(probe_out, ",\n");
AVP_INDENT();
avio_printf(probe_out, "\"%s\" : ", name);
avio_printf(probe_out, "[\n");
}
static void json_print_array_footer(const char *name, int plain_values)
{
avio_printf(probe_out, "\n");
AVP_INDENT();
avio_printf(probe_out, "]");
}
static void json_print_object_header(const char *name)
{
if (octx.prefix[octx.level -1].nb_elems)
avio_printf(probe_out, ",\n");
AVP_INDENT();
if (octx.prefix[octx.level -1].type == OBJECT)
avio_printf(probe_out, "\"%s\" : ", name);
avio_printf(probe_out, "{\n");
}
static void json_print_object_footer(const char *name)
{
avio_printf(probe_out, "\n");
AVP_INDENT();
avio_printf(probe_out, "}");
}
static void json_print_integer(const char *key, int64_t value)
{
if (key) {
if (octx.prefix[octx.level -1].nb_elems)
avio_printf(probe_out, ",\n");
AVP_INDENT();
avio_printf(probe_out, "\"%s\" : ", key);
} else {
if (octx.prefix[octx.level -1].nb_elems)
avio_printf(probe_out, ", ");
else
AVP_INDENT();
}
avio_printf(probe_out, "%"PRId64, value);
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
}
static void json_escape_print(const char *s)
{
int i = 0;
char c = 0;
while (c = s[i++]) {
switch (c) {
case '\r': avio_printf(probe_out, "%s", "\\r"); break;
case '\n': avio_printf(probe_out, "%s", "\\n"); break;
case '\f': avio_printf(probe_out, "%s", "\\f"); break;
case '\b': avio_printf(probe_out, "%s", "\\b"); break;
case '\t': avio_printf(probe_out, "%s", "\\t"); break;
case '\\':
case '"' : avio_w8(probe_out, '\\');
default:
if ((unsigned char)c < 32)
avio_printf(probe_out, "\\u00%02x", c & 0xff);
else
avio_w8(probe_out, c);
break;
}
}
}
static void json_print_string(const char *key, const char *value)
{
if (octx.prefix[octx.level -1].nb_elems)
avio_printf(probe_out, ",\n");
AVP_INDENT();
avio_w8(probe_out, '\"');
json_escape_print(key);
avio_printf(probe_out, "\" : \"");
json_escape_print(value);
avio_w8(probe_out, '\"');
}
/*
* old-style pseudo-INI
*/
static void old_print_object_header(const char *name)
{
char *str, *p;
if (!strcmp(name, "tags"))
return;
str = p = av_strdup(name);
while (*p) {
*p = av_toupper(*p);
p++;
}
avio_printf(probe_out, "[%s]\n", str);
av_freep(&str);
}
static void old_print_object_footer(const char *name)
{
char *str, *p;
if (!strcmp(name, "tags"))
return;
str = p = av_strdup(name);
while (*p) {
*p = av_toupper(*p);
p++;
}
avio_printf(probe_out, "[/%s]\n", str);
av_freep(&str);
}
static void old_print_string(const char *key, const char *value)
{
if (!strcmp(octx.prefix[octx.level - 1].name, "tags"))
avio_printf(probe_out, "TAG:");
ini_print_string(key, value);
}
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
/*
* Simple Formatter for single entries.
*/
static void show_format_entry_integer(const char *key, int64_t value)
{
if (key && av_dict_get(fmt_entries_to_show, key, NULL, 0)) {
if (nb_fmt_entries_to_show > 1)
avio_printf(probe_out, "%s=", key);
avio_printf(probe_out, "%"PRId64"\n", value);
}
}
static void show_format_entry_string(const char *key, const char *value)
{
if (key && av_dict_get(fmt_entries_to_show, key, NULL, 0)) {
if (nb_fmt_entries_to_show > 1)
avio_printf(probe_out, "%s=", key);
avio_printf(probe_out, "%s\n", value);
}
}
static void probe_group_enter(const char *name, int type)
{
int64_t count = -1;
octx.prefix =
av_realloc(octx.prefix, sizeof(PrintElement) * (octx.level + 1));
if (!octx.prefix || !name) {
fprintf(stderr, "Out of memory\n");
PrintElement *parent = octx.prefix + octx.level -1;
if (parent->type == ARRAY)
count = parent->nb_elems;
parent->nb_elems++;
}
octx.prefix[octx.level++] = (PrintElement){name, type, count, 0};
}
static void probe_group_leave(void)
{
--octx.level;
}
static void probe_header(void)
{
if (octx.print_header)
octx.print_header();
probe_group_enter("root", OBJECT);
}
static void probe_footer(void)
{
if (octx.print_footer)
octx.print_footer();
static void probe_array_header(const char *name, int plain_values)
if (octx.print_array_header)
octx.print_array_header(name, plain_values);
probe_group_enter(name, ARRAY);
}
static void probe_array_footer(const char *name, int plain_values)
if (octx.print_array_footer)
octx.print_array_footer(name, plain_values);
}
static void probe_object_header(const char *name)
{
if (octx.print_object_header)
octx.print_object_header(name);
probe_group_enter(name, OBJECT);
}
static void probe_object_footer(const char *name)
{
probe_group_leave();
if (octx.print_object_footer)
octx.print_object_footer(name);
}
static void probe_int(const char *key, int64_t value)
{
octx.print_integer(key, value);
octx.prefix[octx.level -1].nb_elems++;
}
static void probe_str(const char *key, const char *value)
{
octx.print_string(key, value);
octx.prefix[octx.level -1].nb_elems++;
}
static void probe_dict(AVDictionary *dict, const char *name)
{
AVDictionaryEntry *entry = NULL;
if (!dict)
return;
probe_object_header(name);
while ((entry = av_dict_get(dict, "", entry, AV_DICT_IGNORE_SUFFIX))) {
probe_str(entry->key, entry->value);
}
probe_object_footer(name);
}
static char *value_string(char *buf, int buf_size, double val, const char *unit)
{
if (unit == unit_second_str && use_value_sexagesimal_format) {
double secs;
int hours, mins;
secs = val;
mins = (int)secs / 60;
secs = secs - mins * 60;
hours = mins / 60;
mins %= 60;
snprintf(buf, buf_size, "%d:%02d:%09.6f", hours, mins, secs);
} else if (use_value_prefix) {
const char *prefix_string;
int index;
if (unit == unit_byte_str && use_byte_value_binary_prefix) {
index = av_clip(index, 0, FF_ARRAY_ELEMS(binary_unit_prefixes) - 1);
val /= pow(2, index * 10);
prefix_string = binary_unit_prefixes[index];
} else {
index = (int) (log10(val)) / 3;
index = av_clip(index, 0, FF_ARRAY_ELEMS(decimal_unit_prefixes) - 1);
val /= pow(10, index * 3);
prefix_string = decimal_unit_prefixes[index];
}
snprintf(buf, buf_size, "%.*f%s%s",
index ? 3 : 0, val,
prefix_string,
show_value_unit ? unit : "");
snprintf(buf, buf_size, "%f%s", val, show_value_unit ? unit : "");
static char *time_value_string(char *buf, int buf_size, int64_t val,
const AVRational *time_base)
{
if (val == AV_NOPTS_VALUE) {
snprintf(buf, buf_size, "N/A");
} else {
value_string(buf, buf_size, val * av_q2d(*time_base), unit_second_str);
}
return buf;
}
static char *ts_value_string(char *buf, int buf_size, int64_t ts)
{
if (ts == AV_NOPTS_VALUE) {
snprintf(buf, buf_size, "N/A");
} else {
snprintf(buf, buf_size, "%"PRId64, ts);
}
return buf;
}
static char *rational_string(char *buf, int buf_size, const char *sep,
const AVRational *rat)
{
snprintf(buf, buf_size, "%d%s%d", rat->num, sep, rat->den);
return buf;
}
static char *tag_string(char *buf, int buf_size, int tag)
{
snprintf(buf, buf_size, "0x%04x", tag);
return buf;
}
static void show_packet(AVFormatContext *fmt_ctx, AVPacket *pkt)
{
char val_str[128];
AVStream *st = fmt_ctx->streams[pkt->stream_index];
probe_str("codec_type", media_type_string(st->codecpar->codec_type));
probe_int("stream_index", pkt->stream_index);
probe_str("pts", ts_value_string(val_str, sizeof(val_str), pkt->pts));
probe_str("pts_time", time_value_string(val_str, sizeof(val_str),
pkt->pts, &st->time_base));
probe_str("dts", ts_value_string(val_str, sizeof(val_str), pkt->dts));
probe_str("dts_time", time_value_string(val_str, sizeof(val_str),
pkt->dts, &st->time_base));
probe_str("duration", ts_value_string(val_str, sizeof(val_str),
pkt->duration));
probe_str("duration_time", time_value_string(val_str, sizeof(val_str),
pkt->duration,
&st->time_base));
probe_str("size", value_string(val_str, sizeof(val_str),
pkt->size, unit_byte_str));
probe_int("pos", pkt->pos);
probe_str("flags", pkt->flags & AV_PKT_FLAG_KEY ? "K" : "_");
probe_object_footer("packet");
static void show_packets(InputFile *ifile)
AVFormatContext *fmt_ctx = ifile->fmt_ctx;
AVPacket pkt;
av_init_packet(&pkt);
probe_array_header("packets", 0);
while (!av_read_frame(fmt_ctx, &pkt)) {
probe_array_footer("packets", 0);
static void show_stream(InputFile *ifile, InputStream *ist)
AVFormatContext *fmt_ctx = ifile->fmt_ctx;
AVStream *stream = ist->st;
AVCodecParameters *par;
const AVCodecDescriptor *codec_desc;
const char *profile;
AVRational display_aspect_ratio, *sar = NULL;
const AVPixFmtDescriptor *desc;
par = stream->codecpar;
dec_ctx = ist->dec_ctx;
codec_desc = avcodec_descriptor_get(par->codec_id);
if (codec_desc) {
probe_str("codec_name", codec_desc->name);
probe_str("codec_long_name", codec_desc->long_name);
} else {
probe_str("codec_name", "unknown");
}
probe_str("codec_type", media_type_string(par->codec_type));
/* print AVI/FourCC tag */
av_get_codec_tag_string(val_str, sizeof(val_str), par->codec_tag);
probe_str("codec_tag_string", val_str);
probe_str("codec_tag", tag_string(val_str, sizeof(val_str),
/* print profile, if there is one */
profile = avcodec_profile_name(par->codec_id, par->profile);
probe_str("profile", profile);
case AVMEDIA_TYPE_VIDEO:
probe_int("width", par->width);
probe_int("height", par->height);
if (dec_ctx) {
probe_int("coded_width", dec_ctx->coded_width);
probe_int("coded_height", dec_ctx->coded_height);
probe_int("has_b_frames", dec_ctx->has_b_frames);
}
if (dec_ctx && dec_ctx->sample_aspect_ratio.num)
sar = &dec_ctx->sample_aspect_ratio;
else if (par->sample_aspect_ratio.num)
sar = &par->sample_aspect_ratio;
else if (stream->sample_aspect_ratio.num)
sar = &stream->sample_aspect_ratio;
if (sar) {
probe_str("sample_aspect_ratio",
rational_string(val_str, sizeof(val_str), ":", sar));
av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
par->width * sar->num, par->height * sar->den,
1024*1024);
probe_str("display_aspect_ratio",
rational_string(val_str, sizeof(val_str), ":",
&display_aspect_ratio));
probe_str("pix_fmt", desc ? desc->name : "unknown");
probe_str("color_range", av_color_range_name (par->color_range));
probe_str("color_space", av_color_space_name (par->color_space));
probe_str("color_trc", av_color_transfer_name (par->color_trc));
probe_str("color_pri", av_color_primaries_name(par->color_primaries));
probe_str("chroma_loc", av_chroma_location_name (par->chroma_location));
break;
case AVMEDIA_TYPE_AUDIO:
probe_str("sample_rate",
value_string(val_str, sizeof(val_str),
unit_hertz_str));
probe_int("bits_per_sample",
}
if (fmt_ctx->iformat->flags & AVFMT_SHOW_IDS)
probe_int("id", stream->id);
probe_str("avg_frame_rate",
rational_string(val_str, sizeof(val_str), "/",
&stream->avg_frame_rate));
probe_str("bit_rate",
value_string(val_str, sizeof(val_str),
probe_str("time_base",
rational_string(val_str, sizeof(val_str), "/",
&stream->time_base));
probe_str("start_time",
time_value_string(val_str, sizeof(val_str),
stream->start_time, &stream->time_base));
probe_str("duration",
time_value_string(val_str, sizeof(val_str),
stream->duration, &stream->time_base));
if (stream->nb_frames)
probe_int("nb_frames", stream->nb_frames);
if (stream->nb_side_data) {
int i, j;
probe_object_header("sidedata");
for (i = 0; i < stream->nb_side_data; i++) {
const AVPacketSideData* sd = &stream->side_data[i];
switch (sd->type) {
case AV_PKT_DATA_DISPLAYMATRIX:
probe_object_header("displaymatrix");
probe_array_header("matrix", 1);
for (j = 0; j < 9; j++)
probe_int(NULL, ((int32_t *)sd->data)[j]);
probe_array_footer("matrix", 1);
probe_int("rotation",
av_display_rotation_get((int32_t *)sd->data));
probe_object_footer("displaymatrix");
break;
case AV_PKT_DATA_STEREO3D:
stereo = (AVStereo3D *)sd->data;
probe_object_header("stereo3d");
probe_str("type", av_stereo3d_type_name(stereo->type));
probe_int("inverted",
!!(stereo->flags & AV_STEREO3D_FLAG_INVERT));
probe_object_footer("stereo3d");
break;
}
}
probe_object_footer("sidedata");
}
static void show_format(InputFile *ifile)
AVFormatContext *fmt_ctx = ifile->fmt_ctx;
int64_t size = fmt_ctx->pb ? avio_size(fmt_ctx->pb) : -1;
probe_object_header("format");
probe_str("filename", fmt_ctx->filename);
probe_int("nb_streams", fmt_ctx->nb_streams);
probe_str("format_name", fmt_ctx->iformat->name);
probe_str("format_long_name", fmt_ctx->iformat->long_name);
probe_str("start_time",
time_value_string(val_str, sizeof(val_str),
fmt_ctx->start_time, &AV_TIME_BASE_Q));
time_value_string(val_str, sizeof(val_str),
fmt_ctx->duration, &AV_TIME_BASE_Q));
size >= 0 ? value_string(val_str, sizeof(val_str),
size, unit_byte_str)
value_string(val_str, sizeof(val_str),
fmt_ctx->bit_rate, unit_bit_per_second_str));
static int open_input_file(InputFile *ifile, const char *filename)
AVFormatContext *fmt_ctx = NULL;
AVDictionaryEntry *t;
if ((err = avformat_open_input(&fmt_ctx, filename,
iformat, &format_opts)) < 0) {
if ((t = av_dict_get(format_opts, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
av_log(NULL, AV_LOG_ERROR, "Option %s not found.\n", t->key);
return AVERROR_OPTION_NOT_FOUND;
}
if ((err = avformat_find_stream_info(fmt_ctx, NULL)) < 0) {
print_error(filename, err);
return err;
}
av_dump_format(fmt_ctx, 0, filename, 0);
ifile->streams = av_mallocz_array(fmt_ctx->nb_streams,
sizeof(*ifile->streams));
if (!ifile->streams)
exit(1);
ifile->nb_streams = fmt_ctx->nb_streams;
/* bind a decoder to each input stream */
for (i = 0; i < fmt_ctx->nb_streams; i++) {
InputStream *ist = &ifile->streams[i];
AVStream *stream = fmt_ctx->streams[i];
AVCodec *codec;
if (stream->codecpar->codec_id == AV_CODEC_ID_PROBE) {
Alex Converse
committed
fprintf(stderr, "Failed to probe codec for input stream %d\n",
stream->index);
continue;
}
codec = avcodec_find_decoder(stream->codecpar->codec_id);
if (!codec) {
fprintf(stderr,
"Unsupported codec with id %d for input stream %d\n",
stream->codecpar->codec_id, stream->index);
continue;
}
ist->dec_ctx = avcodec_alloc_context3(codec);
if (!ist->dec_ctx)
exit(1);
err = avcodec_parameters_to_context(ist->dec_ctx, stream->codecpar);
if (err < 0)
exit(1);
err = avcodec_open2(ist->dec_ctx, NULL, NULL);
if (err < 0) {
fprintf(stderr, "Error while opening codec for input stream %d\n",
stream->index);
static void close_input_file(InputFile *ifile)
{
int i;
/* close decoder for each stream */
for (i = 0; i < ifile->nb_streams; i++) {
InputStream *ist = &ifile->streams[i];
av_freep(&ifile->streams);
ifile->nb_streams = 0;
avformat_close_input(&ifile->fmt_ctx);
ret = open_input_file(&ifile, filename);
if (ret < 0)
probe_array_header("streams", 0);
for (i = 0; i < ifile.nb_streams; i++)
show_stream(&ifile, &ifile.streams[i]);
probe_array_footer("streams", 0);
return 0;
}
static void show_usage(void)
{
printf("Simple multimedia streams analyzer\n");
printf("usage: %s [OPTIONS] [INPUT_FILE]\n", program_name);
static int opt_format(void *optctx, const char *opt, const char *arg)
{
iformat = av_find_input_format(arg);
if (!iformat) {
fprintf(stderr, "Unknown input format: %s\n", arg);
}
}
static int opt_output_format(void *optctx, const char *opt, const char *arg)
octx.print_header = json_print_header;
octx.print_footer = json_print_footer;
octx.print_array_header = json_print_array_header;
octx.print_array_footer = json_print_array_footer;
octx.print_object_header = json_print_object_header;
octx.print_object_footer = json_print_object_footer;
octx.print_integer = json_print_integer;
octx.print_string = json_print_string;
octx.print_header = ini_print_header;
octx.print_footer = ini_print_footer;
octx.print_array_header = ini_print_array_header;
octx.print_array_footer = ini_print_array_footer;
octx.print_object_header = ini_print_object_header;
octx.print_integer = ini_print_integer;
octx.print_string = ini_print_string;
} else if (!strcmp(arg, "old")) {
octx.print_header = NULL;
octx.print_object_header = old_print_object_header;
octx.print_object_footer = old_print_object_footer;
octx.print_string = old_print_string;
} else {
av_log(NULL, AV_LOG_ERROR, "Unsupported formatter %s\n", arg);
static int opt_show_format_entry(void *optctx, const char *opt, const char *arg)
{
do_show_format = 1;
nb_fmt_entries_to_show++;
octx.print_header = NULL;
octx.print_footer = NULL;
octx.print_array_header = NULL;
octx.print_array_footer = NULL;
octx.print_object_header = NULL;
octx.print_object_footer = NULL;
octx.print_integer = show_format_entry_integer;
octx.print_string = show_format_entry_string;
av_dict_set(&fmt_entries_to_show, arg, "", 0);
return 0;
}
static void opt_input_file(void *optctx, const char *arg)
fprintf(stderr,
"Argument '%s' provided as input filename, but '%s' was already specified.\n",
arg, input_filename);
if (!strcmp(arg, "-"))
arg = "pipe:";
input_filename = arg;
void show_help_default(const char *opt, const char *arg)
av_log_set_callback(log_callback_help);
show_help_options(options, "Main options:", 0, 0, 0);
show_help_children(avformat_get_class(), AV_OPT_FLAG_DECODING_PARAM);
static int opt_pretty(void *optctx, const char *opt, const char *arg)