FFmpeg
|
simple media prober based on the FFmpeg libraries More...
#include "config.h"
#include "version.h"
#include <string.h>
#include "libavformat/avformat.h"
#include "libavcodec/avcodec.h"
#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/bprint.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "libavutil/dict.h"
#include "libavutil/libm.h"
#include "libavutil/parseutils.h"
#include "libavutil/timecode.h"
#include "libavutil/timestamp.h"
#include "libavdevice/avdevice.h"
#include "libswscale/swscale.h"
#include "libswresample/swresample.h"
#include "libpostproc/postprocess.h"
#include "cmdutils.h"
#include "cmdutils_common_opts.h"
Go to the source code of this file.
Data Structures | |
struct | ReadInterval |
struct | section |
struct | unit_value |
struct | Writer |
struct | WriterContext |
struct | DefaultContext |
struct | CompactContext |
struct | FlatContext |
struct | INIContext |
struct | JSONContext |
struct | XMLContext |
Macros | |
#define | SECTION_MAX_NB_CHILDREN 10 |
#define | SECTION_FLAG_IS_WRAPPER 1 |
the section only contains other sections, but has no data at its own level | |
#define | SECTION_FLAG_IS_ARRAY 2 |
the section contains an array of elements of the same type | |
#define | SECTION_FLAG_HAS_VARIABLE_FIELDS 4 |
the section may contain a variable number of fields with variable keys. | |
#define | WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS 1 |
#define | WRITER_FLAG_PUT_PACKETS_AND_FRAMES_IN_SAME_CHAPTER 2 |
#define | SECTION_MAX_NB_LEVELS 10 |
#define | MAX_REGISTERED_WRITERS_NB 64 |
#define | DEFINE_WRITER_CLASS(name) |
#define | OFFSET(x) offsetof(DefaultContext, x) |
#define | OFFSET(x) offsetof(CompactContext, x) |
#define | OFFSET(x) offsetof(CompactContext, x) |
#define | OFFSET(x) offsetof(FlatContext, x) |
#define | OFFSET(x) offsetof(INIContext, x) |
#define | OFFSET(x) offsetof(JSONContext, x) |
#define | JSON_INDENT() printf("%*c", json->indent_level * 4, ' ') |
#define | OFFSET(x) offsetof(XMLContext, x) |
#define | CHECK_COMPLIANCE(opt, opt_name) |
#define | XML_INDENT() printf("%*c", xml->indent_level * 4, ' ') |
#define | print_fmt(k, f,...) |
#define | print_int(k, v) writer_print_integer(w, k, v) |
#define | print_q(k, v, s) writer_print_rational(w, k, v, s) |
#define | print_str(k, v) writer_print_string(w, k, v, 0) |
#define | print_str_opt(k, v) writer_print_string(w, k, v, 1) |
#define | print_time(k, v, tb) writer_print_time(w, k, v, tb, 0) |
#define | print_ts(k, v) writer_print_ts(w, k, v, 0) |
#define | print_duration_time(k, v, tb) writer_print_time(w, k, v, tb, 1) |
#define | print_duration_ts(k, v) writer_print_ts(w, k, v, 1) |
#define | print_val(k, v, u) |
#define | print_section_header(s) writer_print_section_header(w, s) |
#define | print_section_footer(s) writer_print_section_footer(w, s) |
#define | PRINT_DISPOSITION(flagname, name) |
#define | SHOW_LIB_VERSION(libname, LIBNAME) |
#define | DEFINE_OPT_SHOW_SECTION(section, target_section_id) |
#define | SET_DO_SHOW(id, varname) |
Functions | |
static void | ffprobe_cleanup (int ret) |
static char * | value_string (char *buf, int buf_size, struct unit_value uv) |
static const char * | writer_get_name (void *p) |
static void | writer_close (WriterContext **wctx) |
static int | writer_open (WriterContext **wctx, const Writer *writer, const char *args, const struct section *sections, int nb_sections) |
static void | writer_print_section_header (WriterContext *wctx, int section_id) |
static void | writer_print_section_footer (WriterContext *wctx) |
static void | writer_print_integer (WriterContext *wctx, const char *key, long long int val) |
static void | writer_print_string (WriterContext *wctx, const char *key, const char *val, int opt) |
static void | writer_print_rational (WriterContext *wctx, const char *key, AVRational q, char sep) |
static void | writer_print_time (WriterContext *wctx, const char *key, int64_t ts, const AVRational *time_base, int is_duration) |
static void | writer_print_ts (WriterContext *wctx, const char *key, int64_t ts, int is_duration) |
static void | writer_print_data (WriterContext *wctx, const char *name, uint8_t *data, int size) |
static int | writer_register (const Writer *writer) |
static const Writer * | writer_get_by_name (const char *name) |
DEFINE_WRITER_CLASS (default) | |
static char * | upcase_string (char *dst, size_t dst_size, const char *src) |
static void | default_print_section_header (WriterContext *wctx) |
static void | default_print_section_footer (WriterContext *wctx) |
static void | default_print_str (WriterContext *wctx, const char *key, const char *value) |
static void | default_print_int (WriterContext *wctx, const char *key, long long int value) |
static const char * | c_escape_str (AVBPrint *dst, const char *src, const char sep, void *log_ctx) |
Apply C-language-like string escaping. | |
static const char * | csv_escape_str (AVBPrint *dst, const char *src, const char sep, void *log_ctx) |
Quote fields containing special characters, check RFC4180. | |
static const char * | none_escape_str (AVBPrint *dst, const char *src, const char sep, void *log_ctx) |
DEFINE_WRITER_CLASS (compact) | |
static av_cold int | compact_init (WriterContext *wctx) |
static void | compact_print_section_header (WriterContext *wctx) |
static void | compact_print_section_footer (WriterContext *wctx) |
static void | compact_print_str (WriterContext *wctx, const char *key, const char *value) |
static void | compact_print_int (WriterContext *wctx, const char *key, long long int value) |
DEFINE_WRITER_CLASS (csv) | |
DEFINE_WRITER_CLASS (flat) | |
static av_cold int | flat_init (WriterContext *wctx) |
static const char * | flat_escape_key_str (AVBPrint *dst, const char *src, const char sep) |
static const char * | flat_escape_value_str (AVBPrint *dst, const char *src) |
static void | flat_print_section_header (WriterContext *wctx) |
static void | flat_print_int (WriterContext *wctx, const char *key, long long int value) |
static void | flat_print_str (WriterContext *wctx, const char *key, const char *value) |
DEFINE_WRITER_CLASS (ini) | |
static char * | ini_escape_str (AVBPrint *dst, const char *src) |
static void | ini_print_section_header (WriterContext *wctx) |
static void | ini_print_str (WriterContext *wctx, const char *key, const char *value) |
static void | ini_print_int (WriterContext *wctx, const char *key, long long int value) |
DEFINE_WRITER_CLASS (json) | |
static av_cold int | json_init (WriterContext *wctx) |
static const char * | json_escape_str (AVBPrint *dst, const char *src, void *log_ctx) |
static void | json_print_section_header (WriterContext *wctx) |
static void | json_print_section_footer (WriterContext *wctx) |
static void | json_print_item_str (WriterContext *wctx, const char *key, const char *value) |
static void | json_print_str (WriterContext *wctx, const char *key, const char *value) |
static void | json_print_int (WriterContext *wctx, const char *key, long long int value) |
DEFINE_WRITER_CLASS (xml) | |
static av_cold int | xml_init (WriterContext *wctx) |
static const char * | xml_escape_str (AVBPrint *dst, const char *src, void *log_ctx) |
static void | xml_print_section_header (WriterContext *wctx) |
static void | xml_print_section_footer (WriterContext *wctx) |
static void | xml_print_str (WriterContext *wctx, const char *key, const char *value) |
static void | xml_print_int (WriterContext *wctx, const char *key, long long int value) |
static void | writer_register_all (void) |
static void | show_tags (WriterContext *wctx, AVDictionary *tags, int section_id) |
static void | show_packet (WriterContext *w, AVFormatContext *fmt_ctx, AVPacket *pkt, int packet_idx) |
static void | show_frame (WriterContext *w, AVFrame *frame, AVStream *stream, AVFormatContext *fmt_ctx) |
static av_always_inline int | process_frame (WriterContext *w, AVFormatContext *fmt_ctx, AVFrame *frame, AVPacket *pkt) |
static void | log_read_interval (const ReadInterval *interval, void *log_ctx, int log_level) |
static int | read_interval_packets (WriterContext *w, AVFormatContext *fmt_ctx, const ReadInterval *interval, int64_t *cur_ts) |
static void | read_packets (WriterContext *w, AVFormatContext *fmt_ctx) |
static void | show_stream (WriterContext *w, AVFormatContext *fmt_ctx, int stream_idx, int in_program) |
static void | show_streams (WriterContext *w, AVFormatContext *fmt_ctx) |
static void | show_program (WriterContext *w, AVFormatContext *fmt_ctx, AVProgram *program) |
static void | show_programs (WriterContext *w, AVFormatContext *fmt_ctx) |
static void | show_chapters (WriterContext *w, AVFormatContext *fmt_ctx) |
static void | show_format (WriterContext *w, AVFormatContext *fmt_ctx) |
static void | show_error (WriterContext *w, int err) |
static int | open_input_file (AVFormatContext **fmt_ctx_ptr, const char *filename) |
static void | close_input_file (AVFormatContext **ctx_ptr) |
static int | probe_file (WriterContext *wctx, const char *filename) |
static void | show_usage (void) |
static void | ffprobe_show_program_version (WriterContext *w) |
static void | ffprobe_show_library_versions (WriterContext *w) |
static int | opt_format (void *optctx, const char *opt, const char *arg) |
static void | mark_section_show_entries (SectionID section_id, int show_all_entries, AVDictionary *entries) |
static int | match_section (const char *section_name, int show_all_entries, AVDictionary *entries) |
static int | opt_show_entries (void *optctx, const char *opt, const char *arg) |
static int | opt_show_format_entry (void *optctx, const char *opt, const char *arg) |
static void | opt_input_file (void *optctx, const char *arg) |
static int | opt_input_file_i (void *optctx, const char *opt, const char *arg) |
void | show_help_default (const char *opt, const char *arg) |
Per-fftool specific help handler. | |
static int | parse_read_interval (const char *interval_spec, ReadInterval *interval) |
Parse interval specification, according to the format: INTERVAL ::= [START|+START_OFFSET][%[END|+END_OFFSET]] INTERVALS ::= INTERVAL[,INTERVALS]. | |
static int | parse_read_intervals (const char *intervals_spec) |
static int | opt_read_intervals (void *optctx, const char *opt, const char *arg) |
static int | opt_pretty (void *optctx, const char *opt, const char *arg) |
static void | print_section (SectionID id, int level) |
static int | opt_sections (void *optctx, const char *opt, const char *arg) |
static int | opt_show_versions (const char *opt, const char *arg) |
DEFINE_OPT_SHOW_SECTION (chapters, CHAPTERS) | |
DEFINE_OPT_SHOW_SECTION (error, ERROR) | |
DEFINE_OPT_SHOW_SECTION (format, FORMAT) | |
DEFINE_OPT_SHOW_SECTION (frames, FRAMES) | |
DEFINE_OPT_SHOW_SECTION (library_versions, LIBRARY_VERSIONS) | |
DEFINE_OPT_SHOW_SECTION (packets, PACKETS) | |
DEFINE_OPT_SHOW_SECTION (program_version, PROGRAM_VERSION) | |
DEFINE_OPT_SHOW_SECTION (streams, STREAMS) | |
DEFINE_OPT_SHOW_SECTION (programs, PROGRAMS) | |
static int | check_section_show_entries (int section_id) |
int | main (int argc, char **argv) |
Variables | |
const char | program_name [] = "ffprobe" |
program name, defined by the program for show_version(). | |
const int | program_birth_year = 2007 |
program birth year, defined by the program for show_banner() | |
static int | do_bitexact = 0 |
static int | do_count_frames = 0 |
static int | do_count_packets = 0 |
static int | do_read_frames = 0 |
static int | do_read_packets = 0 |
static int | do_show_chapters = 0 |
static int | do_show_error = 0 |
static int | do_show_format = 0 |
static int | do_show_frames = 0 |
static int | do_show_packets = 0 |
static int | do_show_programs = 0 |
static int | do_show_streams = 0 |
static int | do_show_stream_disposition = 0 |
static int | do_show_data = 0 |
static int | do_show_program_version = 0 |
static int | do_show_library_versions = 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 |
static int | show_private_data = 1 |
static char * | print_format |
static char * | stream_specifier |
static ReadInterval * | read_intervals |
static int | read_intervals_nb = 0 |
static struct section | sections [] |
static const OptionDef * | options |
static const char * | input_filename |
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" |
static uint64_t * | nb_streams_packets |
static uint64_t * | nb_streams_frames |
static int * | selected_streams |
static const AVClass | writer_class |
static const Writer * | registered_writers [MAX_REGISTERED_WRITERS_NB+1] |
static const AVOption | default_options [] |
static const Writer | default_writer |
static const AVOption | compact_options [] |
static const Writer | compact_writer |
static const AVOption | csv_options [] |
static const Writer | csv_writer |
static const AVOption | flat_options [] |
static const Writer | flat_writer |
static const AVOption | ini_options [] |
static const Writer | ini_writer |
static const AVOption | json_options [] |
static const Writer | json_writer |
static const AVOption | xml_options [] |
static Writer | xml_writer |
static const OptionDef | real_options [] |
simple media prober based on the FFmpeg libraries
Definition in file ffprobe.c.
#define SECTION_FLAG_IS_WRAPPER 1 |
the section only contains other sections, but has no data at its own level
Definition at line 97 of file ffprobe.c.
Referenced by compact_print_section_footer(), compact_print_section_header(), default_print_section_footer(), default_print_section_header(), flat_print_section_header(), ini_print_section_header(), json_print_section_header(), print_section(), and xml_print_section_header().
#define SECTION_FLAG_IS_ARRAY 2 |
the section contains an array of elements of the same type
Definition at line 98 of file ffprobe.c.
Referenced by compact_print_section_footer(), compact_print_section_header(), default_print_section_footer(), default_print_section_header(), flat_print_section_header(), ini_print_section_header(), json_print_section_footer(), json_print_section_header(), print_section(), and xml_print_section_header().
#define SECTION_FLAG_HAS_VARIABLE_FIELDS 4 |
the section may contain a variable number of fields with variable keys.
Definition at line 99 of file ffprobe.c.
Referenced by print_section(), xml_print_section_footer(), xml_print_section_header(), and xml_print_str().
#define WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS 1 |
Definition at line 258 of file ffprobe.c.
Referenced by writer_print_string().
#define WRITER_FLAG_PUT_PACKETS_AND_FRAMES_IN_SAME_CHAPTER 2 |
Definition at line 259 of file ffprobe.c.
Referenced by probe_file().
#define SECTION_MAX_NB_LEVELS 10 |
Definition at line 277 of file ffprobe.c.
Referenced by writer_close(), writer_open(), and writer_print_section_header().
#define MAX_REGISTERED_WRITERS_NB 64 |
Definition at line 508 of file ffprobe.c.
Referenced by writer_register().
#define DEFINE_WRITER_CLASS | ( | name | ) |
#define OFFSET | ( | x | ) | offsetof(DefaultContext, x) |
#define OFFSET | ( | x | ) | offsetof(CompactContext, x) |
#define OFFSET | ( | x | ) | offsetof(CompactContext, x) |
#define OFFSET | ( | x | ) | offsetof(FlatContext, x) |
#define OFFSET | ( | x | ) | offsetof(INIContext, x) |
#define OFFSET | ( | x | ) | offsetof(JSONContext, x) |
#define JSON_INDENT | ( | ) | printf("%*c", json->indent_level * 4, ' ') |
Definition at line 1133 of file ffprobe.c.
Referenced by json_print_int(), json_print_section_footer(), json_print_section_header(), and json_print_str().
#define OFFSET | ( | x | ) | offsetof(XMLContext, x) |
#define CHECK_COMPLIANCE | ( | opt, | |
opt_name | |||
) |
Referenced by xml_init().
#define XML_INDENT | ( | ) | printf("%*c", xml->indent_level * 4, ' ') |
Definition at line 1314 of file ffprobe.c.
Referenced by xml_print_section_footer(), xml_print_section_header(), and xml_print_str().
#define print_fmt | ( | k, | |
f, | |||
... | |||
) |
Definition at line 1434 of file ffprobe.c.
Referenced by ffprobe_show_program_version(), show_frame(), show_packet(), and show_stream().
#define print_int | ( | k, | |
v | |||
) | writer_print_integer(w, k, v) |
Definition at line 1440 of file ffprobe.c.
Referenced by show_chapters(), show_error(), show_format(), show_frame(), show_packet(), show_program(), and show_stream().
#define print_q | ( | k, | |
v, | |||
s | |||
) | writer_print_rational(w, k, v, s) |
Definition at line 1441 of file ffprobe.c.
Referenced by show_chapters(), show_frame(), and show_stream().
#define print_str | ( | k, | |
v | |||
) | writer_print_string(w, k, v, 0) |
Definition at line 1442 of file ffprobe.c.
Referenced by ffprobe_show_program_version(), show_error(), show_format(), show_frame(), show_packet(), and show_stream().
#define print_str_opt | ( | k, | |
v | |||
) | writer_print_string(w, k, v, 1) |
Definition at line 1443 of file ffprobe.c.
Referenced by show_format(), show_frame(), show_packet(), and show_stream().
#define print_time | ( | k, | |
v, | |||
tb | |||
) | writer_print_time(w, k, v, tb, 0) |
Definition at line 1444 of file ffprobe.c.
Referenced by show_chapters(), show_format(), show_frame(), show_packet(), show_program(), and show_stream().
#define print_ts | ( | k, | |
v | |||
) | writer_print_ts(w, k, v, 0) |
Definition at line 1445 of file ffprobe.c.
Referenced by show_frame(), show_packet(), show_program(), and show_stream().
#define print_duration_time | ( | k, | |
v, | |||
tb | |||
) | writer_print_time(w, k, v, tb, 1) |
Definition at line 1446 of file ffprobe.c.
Referenced by show_frame(), and show_packet().
#define print_duration_ts | ( | k, | |
v | |||
) | writer_print_ts(w, k, v, 1) |
Definition at line 1447 of file ffprobe.c.
Referenced by show_frame(), and show_packet().
Definition at line 1448 of file ffprobe.c.
Referenced by show_format(), show_packet(), and show_stream().
#define print_section_header | ( | s | ) | writer_print_section_header(w, s) |
#define print_section_footer | ( | s | ) | writer_print_section_footer(w, s) |
#define PRINT_DISPOSITION | ( | flagname, | |
name | |||
) |
Referenced by show_stream().
#define SHOW_LIB_VERSION | ( | libname, | |
LIBNAME | |||
) |
Definition at line 2195 of file ffprobe.c.
Referenced by ffprobe_show_library_versions().
#define DEFINE_OPT_SHOW_SECTION | ( | section, | |
target_section_id | |||
) |
#define SET_DO_SHOW | ( | id, | |
varname | |||
) |
enum SectionID |
|
static |
|
static |
Definition at line 202 of file ffprobe.c.
Referenced by writer_print_time().
|
static |
Definition at line 316 of file ffprobe.c.
Referenced by main(), and writer_open().
|
static |
|
inlinestatic |
Definition at line 379 of file ffprobe.c.
Referenced by ffprobe_show_library_versions(), ffprobe_show_program_version(), main(), probe_file(), show_chapters(), show_error(), show_format(), show_frame(), show_packet(), show_program(), show_programs(), show_stream(), show_streams(), and show_tags().
|
inlinestatic |
Definition at line 403 of file ffprobe.c.
Referenced by ffprobe_show_library_versions(), ffprobe_show_program_version(), main(), probe_file(), show_chapters(), show_error(), show_format(), show_frame(), show_packet(), show_program(), show_programs(), show_stream(), show_streams(), and show_tags().
|
inlinestatic |
Definition at line 420 of file ffprobe.c.
Referenced by writer_print_ts().
|
inlinestatic |
Definition at line 431 of file ffprobe.c.
Referenced by show_tags(), writer_print_data(), writer_print_rational(), writer_print_time(), and writer_print_ts().
|
inlinestatic |
|
static |
|
static |
|
static |
Definition at line 480 of file ffprobe.c.
Referenced by show_packet(), and show_stream().
|
static |
Definition at line 512 of file ffprobe.c.
Referenced by writer_register_all().
|
static |
DEFINE_WRITER_CLASS | ( | default | ) |
|
inlinestatic |
Definition at line 570 of file ffprobe.c.
Referenced by default_print_section_footer(), and default_print_section_header().
|
static |
|
static |
|
static |
|
static |
|
static |
Apply C-language-like string escaping.
Definition at line 651 of file ffprobe.c.
Referenced by compact_init().
|
static |
Quote fields containing special characters, check RFC4180.
Definition at line 674 of file ffprobe.c.
Referenced by compact_init().
|
static |
Definition at line 692 of file ffprobe.c.
Referenced by compact_init().
DEFINE_WRITER_CLASS | ( | compact | ) |
|
static |
|
static |
|
static |
|
static |
|
static |
DEFINE_WRITER_CLASS | ( | csv | ) |
DEFINE_WRITER_CLASS | ( | flat | ) |
|
static |
|
static |
Definition at line 891 of file ffprobe.c.
Referenced by flat_print_str().
|
static |
Definition at line 906 of file ffprobe.c.
Referenced by flat_print_str().
|
static |
|
static |
|
static |
DEFINE_WRITER_CLASS | ( | ini | ) |
|
static |
Definition at line 997 of file ffprobe.c.
Referenced by ini_print_str().
|
static |
|
static |
|
static |
DEFINE_WRITER_CLASS | ( | json | ) |
|
static |
Definition at line 1113 of file ffprobe.c.
Referenced by json_print_int(), json_print_item_str(), and json_print_section_header().
|
static |
|
static |
|
inlinestatic |
Definition at line 1195 of file ffprobe.c.
Referenced by json_print_str().
|
static |
|
static |
DEFINE_WRITER_CLASS | ( | xml | ) |
|
static |
Definition at line 1296 of file ffprobe.c.
Referenced by xml_print_str().
|
static |
|
static |
|
static |
|
static |
|
inlinestatic |
Definition at line 1458 of file ffprobe.c.
Referenced by show_chapters(), show_format(), show_frame(), show_program(), and show_stream().
|
static |
Definition at line 1470 of file ffprobe.c.
Referenced by read_interval_packets().
|
static |
Definition at line 1505 of file ffprobe.c.
Referenced by process_frame().
|
static |
Definition at line 1576 of file ffprobe.c.
Referenced by read_interval_packets().
|
static |
Definition at line 1608 of file ffprobe.c.
Referenced by parse_read_intervals(), and read_interval_packets().
|
static |
Definition at line 1632 of file ffprobe.c.
Referenced by read_packets().
|
static |
Definition at line 1731 of file ffprobe.c.
Referenced by probe_file().
|
static |
Definition at line 1748 of file ffprobe.c.
Referenced by show_program(), and show_streams().
|
static |
Definition at line 1918 of file ffprobe.c.
Referenced by probe_file().
|
static |
Definition at line 1928 of file ffprobe.c.
Referenced by show_programs().
|
static |
Definition at line 1954 of file ffprobe.c.
Referenced by probe_file().
|
static |
Definition at line 1968 of file ffprobe.c.
Referenced by probe_file().
|
static |
Definition at line 1989 of file ffprobe.c.
Referenced by probe_file().
|
static |
|
static |
Definition at line 2030 of file ffprobe.c.
Referenced by probe_file().
|
static |
Definition at line 2093 of file ffprobe.c.
Referenced by probe_file().
|
static |
|
static |
|
static |
|
static |
|
inlinestatic |
Definition at line 2234 of file ffprobe.c.
Referenced by match_section(), and opt_show_versions().
|
static |
Definition at line 2249 of file ffprobe.c.
Referenced by opt_show_entries().
|
static |
Definition at line 2268 of file ffprobe.c.
Referenced by opt_show_format_entry().
|
static |
Definition at line 2331 of file ffprobe.c.
Referenced by main(), and opt_input_file_i().
|
static |
void show_help_default | ( | const char * | opt, |
const char * | arg | ||
) |
Per-fftool specific help handler.
Implemented in each fftool, called by show_help().
|
static |
Parse interval specification, according to the format: INTERVAL ::= [START|+START_OFFSET][%[END|+END_OFFSET]] INTERVALS ::= INTERVAL[,INTERVALS].
Definition at line 2365 of file ffprobe.c.
Referenced by parse_read_intervals().
|
static |
Definition at line 2446 of file ffprobe.c.
Referenced by opt_read_intervals().
|
static |
|
static |
Definition at line 2508 of file ffprobe.c.
Referenced by opt_sections().
|
static |
|
static |
DEFINE_OPT_SHOW_SECTION | ( | chapters | , |
CHAPTERS | |||
) |
DEFINE_OPT_SHOW_SECTION | ( | error | , |
ERROR | |||
) |
DEFINE_OPT_SHOW_SECTION | ( | format | , |
FORMAT | |||
) |
DEFINE_OPT_SHOW_SECTION | ( | frames | , |
FRAMES | |||
) |
DEFINE_OPT_SHOW_SECTION | ( | library_versions | , |
LIBRARY_VERSIONS | |||
) |
DEFINE_OPT_SHOW_SECTION | ( | packets | , |
PACKETS | |||
) |
DEFINE_OPT_SHOW_SECTION | ( | program_version | , |
PROGRAM_VERSION | |||
) |
DEFINE_OPT_SHOW_SECTION | ( | streams | , |
STREAMS | |||
) |
DEFINE_OPT_SHOW_SECTION | ( | programs | , |
PROGRAMS | |||
) |
|
inlinestatic |
const char program_name[] = "ffprobe" |
program name, defined by the program for show_version().
const int program_birth_year = 2007 |
program birth year, defined by the program for show_banner()
|
static |
Definition at line 52 of file ffprobe.c.
Referenced by main(), show_format(), and show_stream().
|
static |
Definition at line 53 of file ffprobe.c.
Referenced by probe_file().
|
static |
Definition at line 54 of file ffprobe.c.
Referenced by probe_file().
|
static |
Definition at line 55 of file ffprobe.c.
Referenced by probe_file(), and read_interval_packets().
|
static |
Definition at line 56 of file ffprobe.c.
Referenced by probe_file(), and read_interval_packets().
|
static |
Definition at line 57 of file ffprobe.c.
Referenced by main(), and probe_file().
|
static |
Definition at line 59 of file ffprobe.c.
Referenced by main(), and probe_file().
|
static |
Definition at line 60 of file ffprobe.c.
Referenced by probe_file(), process_frame(), and xml_init().
|
static |
Definition at line 61 of file ffprobe.c.
Referenced by main(), probe_file(), read_interval_packets(), and xml_init().
|
static |
Definition at line 62 of file ffprobe.c.
Referenced by main(), and probe_file().
|
static |
Definition at line 63 of file ffprobe.c.
Referenced by main(), and probe_file().
|
static |
Definition at line 64 of file ffprobe.c.
Referenced by show_stream().
|
static |
Definition at line 65 of file ffprobe.c.
Referenced by show_packet(), and show_stream().
|
static |
|
static |
|
static |
Definition at line 69 of file ffprobe.c.
Referenced by opt_pretty(), value_string(), and xml_init().
|
static |
Definition at line 70 of file ffprobe.c.
Referenced by opt_pretty(), value_string(), and xml_init().
|
static |
Definition at line 71 of file ffprobe.c.
Referenced by opt_pretty(), and value_string().
|
static |
Definition at line 72 of file ffprobe.c.
Referenced by opt_pretty(), and value_string().
|
static |
Definition at line 73 of file ffprobe.c.
Referenced by show_stream(), and xml_init().
|
static |
Definition at line 76 of file ffprobe.c.
Referenced by probe_file().
|
static |
|
static |
Definition at line 87 of file ffprobe.c.
Referenced by parse_read_intervals(), and read_packets().
|
static |
Definition at line 140 of file ffprobe.c.
Referenced by writer_open().
|
static |
Definition at line 175 of file ffprobe.c.
Referenced by main(), and opt_input_file().
|
static |
Definition at line 176 of file ffprobe.c.
Referenced by ff_load_image(), movie_common_init(), show_format_opts(), and stream_open().
|
static |
Definition at line 178 of file ffprobe.c.
Referenced by value_string().
Definition at line 179 of file ffprobe.c.
Referenced by value_string().
|
static |
Definition at line 181 of file ffprobe.c.
Referenced by value_string(), and writer_print_time().
|
static |
Definition at line 182 of file ffprobe.c.
Referenced by show_stream().
|
static |
Definition at line 183 of file ffprobe.c.
Referenced by show_format(), show_packet(), and value_string().
|
static |
Definition at line 184 of file ffprobe.c.
Referenced by show_format(), and show_stream().
|
static |
Definition at line 186 of file ffprobe.c.
Referenced by probe_file(), read_interval_packets(), and show_stream().
|
static |
Definition at line 187 of file ffprobe.c.
Referenced by probe_file(), process_frame(), and show_stream().
|
static |
Definition at line 188 of file ffprobe.c.
Referenced by probe_file(), read_interval_packets(), show_program(), and show_streams().
|
static |
Definition at line 309 of file ffprobe.c.
Referenced by writer_open().
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |