2010-02-21 11:43:01 +00:00
|
|
|
/*
|
2011-07-26 17:04:43 +00:00
|
|
|
* avprobe : Simple Media Prober based on the Libav libraries
|
2010-02-21 11:43:01 +00:00
|
|
|
* Copyright (c) 2007-2010 Stefano Sabatini
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2010-02-21 11:43:01 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2010-02-21 11:43:01 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2010-02-21 11:43:01 +00:00
|
|
|
* 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
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2010-02-21 11:43:01 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2010-03-06 13:06:45 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2010-02-21 11:43:01 +00:00
|
|
|
#include "libavformat/avformat.h"
|
|
|
|
#include "libavcodec/avcodec.h"
|
2011-02-03 13:58:59 +00:00
|
|
|
#include "libavutil/opt.h"
|
2010-02-21 11:43:01 +00:00
|
|
|
#include "libavutil/pixdesc.h"
|
2011-05-22 10:46:29 +00:00
|
|
|
#include "libavutil/dict.h"
|
2010-03-06 13:06:45 +00:00
|
|
|
#include "libavdevice/avdevice.h"
|
2010-02-21 11:43:01 +00:00
|
|
|
#include "cmdutils.h"
|
|
|
|
|
2011-07-26 17:04:43 +00:00
|
|
|
const char program_name[] = "avprobe";
|
2010-02-21 11:43:01 +00:00
|
|
|
const int program_birth_year = 2007;
|
|
|
|
|
|
|
|
static int do_show_format = 0;
|
2012-05-03 18:23:01 +00:00
|
|
|
static AVDictionary *fmt_entries_to_show = NULL;
|
2010-07-28 23:17:59 +00:00
|
|
|
static int do_show_packets = 0;
|
2010-02-21 11:43:01 +00:00
|
|
|
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[];
|
|
|
|
|
2011-07-26 17:04:43 +00:00
|
|
|
/* AVprobe context */
|
2010-02-21 11:43:01 +00:00
|
|
|
static const char *input_filename;
|
2010-02-21 18:33:24 +00:00
|
|
|
static AVInputFormat *iformat = NULL;
|
2010-02-21 11:43:01 +00:00
|
|
|
|
2012-02-20 08:42:33 +00:00
|
|
|
static const char *const binary_unit_prefixes [] = { "", "Ki", "Mi", "Gi", "Ti", "Pi" };
|
|
|
|
static const char *const decimal_unit_prefixes[] = { "", "K" , "M" , "G" , "T" , "P" };
|
2010-02-21 11:43:01 +00:00
|
|
|
|
2012-02-20 08:42:33 +00:00
|
|
|
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";
|
2010-02-21 11:43:01 +00:00
|
|
|
|
2011-08-29 05:03:24 +00:00
|
|
|
void exit_program(int ret)
|
|
|
|
{
|
2012-05-03 18:23:01 +00:00
|
|
|
av_dict_free(&fmt_entries_to_show);
|
2011-08-29 05:03:24 +00:00
|
|
|
exit(ret);
|
|
|
|
}
|
|
|
|
|
2010-02-21 11:43:01 +00:00
|
|
|
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) {
|
2010-02-21 16:24:05 +00:00
|
|
|
index = (int) (log(val)/log(2)) / 10;
|
2012-01-18 19:54:04 +00:00
|
|
|
index = av_clip(index, 0, FF_ARRAY_ELEMS(binary_unit_prefixes) - 1);
|
|
|
|
val /= pow(2, index * 10);
|
2010-02-21 11:43:01 +00:00
|
|
|
prefix_string = binary_unit_prefixes[index];
|
|
|
|
} else {
|
|
|
|
index = (int) (log10(val)) / 3;
|
2012-01-18 19:54:04 +00:00
|
|
|
index = av_clip(index, 0, FF_ARRAY_ELEMS(decimal_unit_prefixes) - 1);
|
|
|
|
val /= pow(10, index * 3);
|
2010-02-21 11:43:01 +00:00
|
|
|
prefix_string = decimal_unit_prefixes[index];
|
|
|
|
}
|
|
|
|
|
2012-01-18 19:54:04 +00:00
|
|
|
snprintf(buf, buf_size, "%.3f %s%s", val, prefix_string,
|
|
|
|
show_value_unit ? unit : "");
|
2010-02-21 11:43:01 +00:00
|
|
|
} else {
|
|
|
|
snprintf(buf, buf_size, "%f %s", val, show_value_unit ? unit : "");
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2012-01-18 19:54:04 +00:00
|
|
|
static char *time_value_string(char *buf, int buf_size, int64_t val,
|
|
|
|
const AVRational *time_base)
|
2010-02-21 11:43:01 +00:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2010-07-28 23:17:59 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2010-03-30 23:30:55 +00:00
|
|
|
static const char *media_type_string(enum AVMediaType media_type)
|
2010-02-21 11:43:01 +00:00
|
|
|
{
|
2010-03-30 23:30:55 +00:00
|
|
|
switch (media_type) {
|
|
|
|
case AVMEDIA_TYPE_VIDEO: return "video";
|
|
|
|
case AVMEDIA_TYPE_AUDIO: return "audio";
|
|
|
|
case AVMEDIA_TYPE_DATA: return "data";
|
|
|
|
case AVMEDIA_TYPE_SUBTITLE: return "subtitle";
|
|
|
|
case AVMEDIA_TYPE_ATTACHMENT: return "attachment";
|
2010-02-21 11:43:01 +00:00
|
|
|
default: return "unknown";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-28 23:17:59 +00:00
|
|
|
static void show_packet(AVFormatContext *fmt_ctx, AVPacket *pkt)
|
|
|
|
{
|
|
|
|
char val_str[128];
|
|
|
|
AVStream *st = fmt_ctx->streams[pkt->stream_index];
|
|
|
|
|
|
|
|
printf("[PACKET]\n");
|
2012-01-18 19:54:04 +00:00
|
|
|
printf("codec_type=%s\n", media_type_string(st->codec->codec_type));
|
|
|
|
printf("stream_index=%d\n", pkt->stream_index);
|
|
|
|
printf("pts=%s\n", ts_value_string(val_str, sizeof(val_str), pkt->pts));
|
|
|
|
printf("pts_time=%s\n", time_value_string(val_str, sizeof(val_str),
|
|
|
|
pkt->pts, &st->time_base));
|
|
|
|
printf("dts=%s\n", ts_value_string(val_str, sizeof(val_str), pkt->dts));
|
|
|
|
printf("dts_time=%s\n", time_value_string(val_str, sizeof(val_str),
|
|
|
|
pkt->dts, &st->time_base));
|
|
|
|
printf("duration=%s\n", ts_value_string(val_str, sizeof(val_str),
|
|
|
|
pkt->duration));
|
|
|
|
printf("duration_time=%s\n", time_value_string(val_str, sizeof(val_str),
|
|
|
|
pkt->duration,
|
|
|
|
&st->time_base));
|
|
|
|
printf("size=%s\n", value_string(val_str, sizeof(val_str),
|
|
|
|
pkt->size, unit_byte_str));
|
|
|
|
printf("pos=%"PRId64"\n", pkt->pos);
|
|
|
|
printf("flags=%c\n", pkt->flags & AV_PKT_FLAG_KEY ? 'K' : '_');
|
2010-07-28 23:17:59 +00:00
|
|
|
printf("[/PACKET]\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void show_packets(AVFormatContext *fmt_ctx)
|
|
|
|
{
|
|
|
|
AVPacket pkt;
|
|
|
|
|
|
|
|
av_init_packet(&pkt);
|
|
|
|
|
|
|
|
while (!av_read_frame(fmt_ctx, &pkt))
|
|
|
|
show_packet(fmt_ctx, &pkt);
|
|
|
|
}
|
|
|
|
|
2010-02-21 11:43:01 +00:00
|
|
|
static void show_stream(AVFormatContext *fmt_ctx, int stream_idx)
|
|
|
|
{
|
|
|
|
AVStream *stream = fmt_ctx->streams[stream_idx];
|
|
|
|
AVCodecContext *dec_ctx;
|
|
|
|
AVCodec *dec;
|
|
|
|
char val_str[128];
|
2011-05-22 10:46:29 +00:00
|
|
|
AVDictionaryEntry *tag = NULL;
|
2010-04-13 23:41:46 +00:00
|
|
|
AVRational display_aspect_ratio;
|
2010-02-21 11:43:01 +00:00
|
|
|
|
|
|
|
printf("[STREAM]\n");
|
|
|
|
|
2012-01-18 19:54:04 +00:00
|
|
|
printf("index=%d\n", stream->index);
|
2010-02-21 11:43:01 +00:00
|
|
|
|
|
|
|
if ((dec_ctx = stream->codec)) {
|
|
|
|
if ((dec = dec_ctx->codec)) {
|
2012-01-18 19:54:04 +00:00
|
|
|
printf("codec_name=%s\n", dec->name);
|
|
|
|
printf("codec_long_name=%s\n", dec->long_name);
|
2010-02-21 11:43:01 +00:00
|
|
|
} else {
|
|
|
|
printf("codec_name=unknown\n");
|
|
|
|
}
|
|
|
|
|
2012-01-18 19:54:04 +00:00
|
|
|
printf("codec_type=%s\n", media_type_string(dec_ctx->codec_type));
|
|
|
|
printf("codec_time_base=%d/%d\n",
|
|
|
|
dec_ctx->time_base.num, dec_ctx->time_base.den);
|
2010-02-21 11:43:01 +00:00
|
|
|
|
|
|
|
/* print AVI/FourCC tag */
|
2010-06-02 10:54:45 +00:00
|
|
|
av_get_codec_tag_string(val_str, sizeof(val_str), dec_ctx->codec_tag);
|
|
|
|
printf("codec_tag_string=%s\n", val_str);
|
|
|
|
printf("codec_tag=0x%04x\n", dec_ctx->codec_tag);
|
2010-02-21 11:43:01 +00:00
|
|
|
|
|
|
|
switch (dec_ctx->codec_type) {
|
2010-03-30 23:30:55 +00:00
|
|
|
case AVMEDIA_TYPE_VIDEO:
|
2012-01-18 19:54:04 +00:00
|
|
|
printf("width=%d\n", dec_ctx->width);
|
|
|
|
printf("height=%d\n", dec_ctx->height);
|
|
|
|
printf("has_b_frames=%d\n", dec_ctx->has_b_frames);
|
2010-04-27 23:22:27 +00:00
|
|
|
if (dec_ctx->sample_aspect_ratio.num) {
|
2012-01-18 19:54:04 +00:00
|
|
|
printf("sample_aspect_ratio=%d:%d\n",
|
|
|
|
dec_ctx->sample_aspect_ratio.num,
|
|
|
|
dec_ctx->sample_aspect_ratio.den);
|
2010-04-27 23:22:30 +00:00
|
|
|
av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
|
|
|
|
dec_ctx->width * dec_ctx->sample_aspect_ratio.num,
|
|
|
|
dec_ctx->height * dec_ctx->sample_aspect_ratio.den,
|
|
|
|
1024*1024);
|
2012-01-18 19:54:04 +00:00
|
|
|
printf("display_aspect_ratio=%d:%d\n",
|
|
|
|
display_aspect_ratio.num, display_aspect_ratio.den);
|
2010-04-27 23:22:27 +00:00
|
|
|
}
|
2012-01-18 19:54:04 +00:00
|
|
|
printf("pix_fmt=%s\n",
|
|
|
|
dec_ctx->pix_fmt != PIX_FMT_NONE ? av_pix_fmt_descriptors[dec_ctx->pix_fmt].name
|
|
|
|
: "unknown");
|
|
|
|
printf("level=%d\n", dec_ctx->level);
|
2010-02-21 11:43:01 +00:00
|
|
|
break;
|
|
|
|
|
2010-03-30 23:30:55 +00:00
|
|
|
case AVMEDIA_TYPE_AUDIO:
|
2012-01-18 19:54:04 +00:00
|
|
|
printf("sample_rate=%s\n", value_string(val_str, sizeof(val_str),
|
|
|
|
dec_ctx->sample_rate,
|
|
|
|
unit_hertz_str));
|
|
|
|
printf("channels=%d\n", dec_ctx->channels);
|
|
|
|
printf("bits_per_sample=%d\n",
|
|
|
|
av_get_bits_per_sample(dec_ctx->codec_id));
|
2010-02-21 11:43:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
printf("codec_type=unknown\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fmt_ctx->iformat->flags & AVFMT_SHOW_IDS)
|
|
|
|
printf("id=0x%x\n", stream->id);
|
2012-01-18 19:54:04 +00:00
|
|
|
printf("r_frame_rate=%d/%d\n",
|
|
|
|
stream->r_frame_rate.num, stream->r_frame_rate.den);
|
|
|
|
printf("avg_frame_rate=%d/%d\n",
|
|
|
|
stream->avg_frame_rate.num, stream->avg_frame_rate.den);
|
|
|
|
printf("time_base=%d/%d\n",
|
|
|
|
stream->time_base.num, stream->time_base.den);
|
|
|
|
printf("start_time=%s\n",
|
|
|
|
time_value_string(val_str, sizeof(val_str),
|
|
|
|
stream->start_time, &stream->time_base));
|
|
|
|
printf("duration=%s\n",
|
|
|
|
time_value_string(val_str, sizeof(val_str),
|
|
|
|
stream->duration, &stream->time_base));
|
2010-04-25 23:35:56 +00:00
|
|
|
if (stream->nb_frames)
|
2012-01-18 19:54:04 +00:00
|
|
|
printf("nb_frames=%"PRId64"\n", stream->nb_frames);
|
2010-02-21 11:43:01 +00:00
|
|
|
|
2012-01-18 19:54:04 +00:00
|
|
|
while ((tag = av_dict_get(stream->metadata, "", tag,
|
|
|
|
AV_DICT_IGNORE_SUFFIX)))
|
2010-02-25 00:16:43 +00:00
|
|
|
printf("TAG:%s=%s\n", tag->key, tag->value);
|
2010-02-21 11:43:01 +00:00
|
|
|
|
|
|
|
printf("[/STREAM]\n");
|
|
|
|
}
|
|
|
|
|
2012-05-03 18:23:01 +00:00
|
|
|
static void print_format_entry(const char *tag,
|
|
|
|
const char *val)
|
|
|
|
{
|
|
|
|
if (!fmt_entries_to_show) {
|
|
|
|
if (tag) {
|
|
|
|
printf("%s=%s\n", tag, val);
|
|
|
|
} else {
|
|
|
|
printf("%s\n", val);
|
|
|
|
}
|
|
|
|
} else if (tag && av_dict_get(fmt_entries_to_show, tag, NULL, 0)) {
|
|
|
|
printf("%s=%s\n", tag, val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-21 11:43:01 +00:00
|
|
|
static void show_format(AVFormatContext *fmt_ctx)
|
|
|
|
{
|
2011-05-22 10:46:29 +00:00
|
|
|
AVDictionaryEntry *tag = NULL;
|
2010-02-21 11:43:01 +00:00
|
|
|
char val_str[128];
|
2012-01-12 08:45:13 +00:00
|
|
|
int64_t size = fmt_ctx->pb ? avio_size(fmt_ctx->pb) : -1;
|
2010-02-21 11:43:01 +00:00
|
|
|
|
2012-05-03 18:23:01 +00:00
|
|
|
print_format_entry(NULL, "[FORMAT]");
|
|
|
|
print_format_entry("filename", fmt_ctx->filename);
|
|
|
|
snprintf(val_str, sizeof(val_str) - 1, "%d", fmt_ctx->nb_streams);
|
|
|
|
print_format_entry("nb_streams", val_str);
|
|
|
|
print_format_entry("format_name", fmt_ctx->iformat->name);
|
|
|
|
print_format_entry("format_long_name", fmt_ctx->iformat->long_name);
|
|
|
|
print_format_entry("start_time",
|
|
|
|
time_value_string(val_str, sizeof(val_str),
|
|
|
|
fmt_ctx->start_time, &AV_TIME_BASE_Q));
|
|
|
|
print_format_entry("duration",
|
|
|
|
time_value_string(val_str, sizeof(val_str),
|
|
|
|
fmt_ctx->duration, &AV_TIME_BASE_Q));
|
|
|
|
print_format_entry("size",
|
|
|
|
size >= 0 ? value_string(val_str, sizeof(val_str),
|
|
|
|
size, unit_byte_str)
|
2012-01-18 19:54:04 +00:00
|
|
|
: "unknown");
|
2012-05-03 18:23:01 +00:00
|
|
|
print_format_entry("bit_rate",
|
|
|
|
value_string(val_str, sizeof(val_str),
|
|
|
|
fmt_ctx->bit_rate, unit_bit_per_second_str));
|
2012-01-18 19:54:04 +00:00
|
|
|
|
|
|
|
while ((tag = av_dict_get(fmt_ctx->metadata, "", tag,
|
2012-05-03 18:23:01 +00:00
|
|
|
AV_DICT_IGNORE_SUFFIX))) {
|
|
|
|
snprintf(val_str, sizeof(val_str) - 1, "TAG:%s", tag->key);
|
|
|
|
print_format_entry(val_str, tag->value);
|
|
|
|
}
|
2010-02-21 11:43:01 +00:00
|
|
|
|
2012-05-03 18:23:01 +00:00
|
|
|
print_format_entry(NULL, "[/FORMAT]");
|
2010-02-21 11:43:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int open_input_file(AVFormatContext **fmt_ctx_ptr, const char *filename)
|
|
|
|
{
|
|
|
|
int err, i;
|
2011-06-09 08:58:23 +00:00
|
|
|
AVFormatContext *fmt_ctx = NULL;
|
|
|
|
AVDictionaryEntry *t;
|
2010-02-21 11:43:01 +00:00
|
|
|
|
2012-01-18 19:54:04 +00:00
|
|
|
if ((err = avformat_open_input(&fmt_ctx, filename,
|
|
|
|
iformat, &format_opts)) < 0) {
|
2010-02-21 11:43:01 +00:00
|
|
|
print_error(filename, err);
|
|
|
|
return err;
|
|
|
|
}
|
2011-06-09 08:58:23 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2010-02-21 11:43:01 +00:00
|
|
|
|
|
|
|
/* fill the streams in the format context */
|
2011-08-26 15:40:07 +00:00
|
|
|
if ((err = avformat_find_stream_info(fmt_ctx, NULL)) < 0) {
|
2010-02-21 11:43:01 +00:00
|
|
|
print_error(filename, err);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2011-02-16 08:52:35 +00:00
|
|
|
av_dump_format(fmt_ctx, 0, filename, 0);
|
2010-02-21 11:43:01 +00:00
|
|
|
|
|
|
|
/* bind a decoder to each input stream */
|
|
|
|
for (i = 0; i < fmt_ctx->nb_streams; i++) {
|
|
|
|
AVStream *stream = fmt_ctx->streams[i];
|
|
|
|
AVCodec *codec;
|
|
|
|
|
|
|
|
if (!(codec = avcodec_find_decoder(stream->codec->codec_id))) {
|
2012-01-18 19:54:04 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"Unsupported codec with id %d for input stream %d\n",
|
2010-02-21 11:43:01 +00:00
|
|
|
stream->codec->codec_id, stream->index);
|
2011-05-22 12:10:49 +00:00
|
|
|
} else if (avcodec_open2(stream->codec, codec, NULL) < 0) {
|
2010-02-21 11:43:01 +00:00
|
|
|
fprintf(stderr, "Error while opening codec for input stream %d\n",
|
|
|
|
stream->index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*fmt_ctx_ptr = fmt_ctx;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int probe_file(const char *filename)
|
|
|
|
{
|
|
|
|
AVFormatContext *fmt_ctx;
|
|
|
|
int ret, i;
|
|
|
|
|
|
|
|
if ((ret = open_input_file(&fmt_ctx, filename)))
|
|
|
|
return ret;
|
|
|
|
|
2010-07-28 23:17:59 +00:00
|
|
|
if (do_show_packets)
|
|
|
|
show_packets(fmt_ctx);
|
|
|
|
|
2010-02-21 11:43:01 +00:00
|
|
|
if (do_show_streams)
|
|
|
|
for (i = 0; i < fmt_ctx->nb_streams; i++)
|
|
|
|
show_stream(fmt_ctx, i);
|
|
|
|
|
|
|
|
if (do_show_format)
|
|
|
|
show_format(fmt_ctx);
|
|
|
|
|
2011-12-11 09:38:28 +00:00
|
|
|
avformat_close_input(&fmt_ctx);
|
2010-02-21 11:43:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void show_usage(void)
|
|
|
|
{
|
|
|
|
printf("Simple multimedia streams analyzer\n");
|
2011-07-26 17:04:43 +00:00
|
|
|
printf("usage: %s [OPTIONS] [INPUT_FILE]\n", program_name);
|
2010-02-21 11:43:01 +00:00
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
2011-05-27 23:53:00 +00:00
|
|
|
static int opt_format(const char *opt, const char *arg)
|
2010-02-21 18:33:24 +00:00
|
|
|
{
|
|
|
|
iformat = av_find_input_format(arg);
|
|
|
|
if (!iformat) {
|
|
|
|
fprintf(stderr, "Unknown input format: %s\n", arg);
|
2011-05-27 23:53:00 +00:00
|
|
|
return AVERROR(EINVAL);
|
2010-02-21 18:33:24 +00:00
|
|
|
}
|
2011-05-27 23:53:00 +00:00
|
|
|
return 0;
|
2010-02-21 18:33:24 +00:00
|
|
|
}
|
|
|
|
|
2012-05-03 18:23:01 +00:00
|
|
|
static int opt_show_format_entry(const char *opt, const char *arg)
|
|
|
|
{
|
|
|
|
do_show_format = 1;
|
|
|
|
av_dict_set(&fmt_entries_to_show, arg, "", 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-28 12:43:54 +00:00
|
|
|
static void opt_input_file(void *optctx, const char *arg)
|
2010-02-21 11:43:01 +00:00
|
|
|
{
|
2010-02-24 06:14:59 +00:00
|
|
|
if (input_filename) {
|
2012-01-18 19:54:04 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"Argument '%s' provided as input filename, but '%s' was already specified.\n",
|
2010-03-01 23:02:56 +00:00
|
|
|
arg, input_filename);
|
2010-02-24 06:14:59 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2010-02-25 00:05:01 +00:00
|
|
|
if (!strcmp(arg, "-"))
|
|
|
|
arg = "pipe:";
|
|
|
|
input_filename = arg;
|
2010-02-21 11:43:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void show_help(void)
|
|
|
|
{
|
2010-09-25 01:32:02 +00:00
|
|
|
av_log_set_callback(log_callback_help);
|
2010-02-21 11:43:01 +00:00
|
|
|
show_usage();
|
|
|
|
show_help_options(options, "Main options:\n", 0, 0);
|
|
|
|
printf("\n");
|
2011-10-04 12:50:00 +00:00
|
|
|
show_help_children(avformat_get_class(), AV_OPT_FLAG_DECODING_PARAM);
|
2010-02-21 11:43:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void opt_pretty(void)
|
|
|
|
{
|
|
|
|
show_value_unit = 1;
|
|
|
|
use_value_prefix = 1;
|
|
|
|
use_byte_value_binary_prefix = 1;
|
|
|
|
use_value_sexagesimal_format = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const OptionDef options[] = {
|
|
|
|
#include "cmdutils_common_opts.h"
|
2010-02-21 18:33:24 +00:00
|
|
|
{ "f", HAS_ARG, {(void*)opt_format}, "force format", "format" },
|
2012-01-18 19:54:04 +00:00
|
|
|
{ "unit", OPT_BOOL, {(void*)&show_value_unit},
|
|
|
|
"show unit of the displayed values" },
|
|
|
|
{ "prefix", OPT_BOOL, {(void*)&use_value_prefix},
|
|
|
|
"use SI prefixes for the displayed values" },
|
2010-02-21 11:43:01 +00:00
|
|
|
{ "byte_binary_prefix", OPT_BOOL, {(void*)&use_byte_value_binary_prefix},
|
|
|
|
"use binary prefixes for byte units" },
|
|
|
|
{ "sexagesimal", OPT_BOOL, {(void*)&use_value_sexagesimal_format},
|
|
|
|
"use sexagesimal format HOURS:MM:SS.MICROSECONDS for time units" },
|
|
|
|
{ "pretty", 0, {(void*)&opt_pretty},
|
|
|
|
"prettify the format of displayed values, make it more human readable" },
|
|
|
|
{ "show_format", OPT_BOOL, {(void*)&do_show_format} , "show format/container info" },
|
2012-05-03 18:23:01 +00:00
|
|
|
{ "show_format_entry", HAS_ARG, {(void*)opt_show_format_entry},
|
|
|
|
"show a particular entry from the format/container info", "entry" },
|
2010-07-28 23:17:59 +00:00
|
|
|
{ "show_packets", OPT_BOOL, {(void*)&do_show_packets}, "show packets info" },
|
2010-03-04 23:35:30 +00:00
|
|
|
{ "show_streams", OPT_BOOL, {(void*)&do_show_streams}, "show streams info" },
|
2012-01-18 19:54:04 +00:00
|
|
|
{ "default", HAS_ARG | OPT_AUDIO | OPT_VIDEO | OPT_EXPERT, {(void*)opt_default},
|
|
|
|
"generic catch all option", "" },
|
2010-02-21 11:43:01 +00:00
|
|
|
{ NULL, },
|
|
|
|
};
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2010-09-25 01:32:02 +00:00
|
|
|
int ret;
|
|
|
|
|
2011-09-26 06:15:37 +00:00
|
|
|
parse_loglevel(argc, argv, options);
|
2010-02-21 11:43:01 +00:00
|
|
|
av_register_all();
|
2011-11-06 00:47:48 +00:00
|
|
|
avformat_network_init();
|
2011-06-21 12:13:37 +00:00
|
|
|
init_opts();
|
2010-03-06 13:06:45 +00:00
|
|
|
#if CONFIG_AVDEVICE
|
|
|
|
avdevice_register_all();
|
|
|
|
#endif
|
2010-02-21 11:43:01 +00:00
|
|
|
|
|
|
|
show_banner();
|
2011-08-28 12:43:54 +00:00
|
|
|
parse_options(NULL, argc, argv, options, opt_input_file);
|
2010-02-21 11:43:01 +00:00
|
|
|
|
|
|
|
if (!input_filename) {
|
|
|
|
show_usage();
|
|
|
|
fprintf(stderr, "You have to specify one input file.\n");
|
2012-01-18 19:54:04 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"Use -h to get full help or, even better, run 'man %s'.\n",
|
|
|
|
program_name);
|
2010-02-21 11:43:01 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2010-09-25 01:32:02 +00:00
|
|
|
ret = probe_file(input_filename);
|
|
|
|
|
2011-11-06 00:47:48 +00:00
|
|
|
avformat_network_deinit();
|
|
|
|
|
2010-09-25 01:32:02 +00:00
|
|
|
return ret;
|
2010-02-21 11:43:01 +00:00
|
|
|
}
|