Go to the source code of this file.
Functions |
void | exit_program (int ret) |
| Do all the necessary cleanup and abort.
|
static char * | value_string (char *buf, int buf_size, double val, const char *unit) |
static char * | time_value_string (char *buf, int buf_size, int64_t val, const AVRational *time_base) |
static char * | ts_value_string (char *buf, int buf_size, int64_t ts) |
static const char * | media_type_string (enum AVMediaType media_type) |
static void | show_packet (AVFormatContext *fmt_ctx, AVPacket *pkt) |
static void | show_packets (AVFormatContext *fmt_ctx) |
static void | show_stream (AVFormatContext *fmt_ctx, int stream_idx) |
static void | show_format (AVFormatContext *fmt_ctx) |
static int | open_input_file (AVFormatContext **fmt_ctx_ptr, const char *filename) |
static int | probe_file (const char *filename) |
static void | show_usage (void) |
static int | opt_format (const char *opt, const char *arg) |
static void | opt_input_file (void *optctx, const char *arg) |
static void | show_help (void) |
static void | opt_pretty (void) |
int | main (int argc, char **argv) |
Variables |
const char | program_name [] = "avprobe" |
| 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_show_format = 0 |
static int | do_show_packets = 0 |
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 |
static const OptionDef | options [] |
static const char * | input_filename |
static AVInputFormat * | iformat = NULL |
static const char * | binary_unit_prefixes [] = { "", "Ki", "Mi", "Gi", "Ti", "Pi" } |
static const char * | 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" |
Function Documentation
void exit_program |
( |
int |
ret | ) |
|
Do all the necessary cleanup and abort.
This function is implemented in the avtools, not cmdutils.
Definition at line 59 of file avprobe.c.
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
static const char* media_type_string |
( |
enum AVMediaType |
media_type | ) |
|
|
static |
static int open_input_file |
( |
AVFormatContext ** |
fmt_ctx_ptr, |
|
|
const char * |
filename |
|
) |
| |
|
static |
static int opt_format |
( |
const char * |
opt, |
|
|
const char * |
arg |
|
) |
| |
|
static |
static void opt_input_file |
( |
void * |
optctx, |
|
|
const char * |
arg |
|
) |
| |
|
static |
static int probe_file |
( |
const char * |
filename | ) |
|
|
static |
static char* time_value_string |
( |
char * |
buf, |
|
|
int |
buf_size, |
|
|
int64_t |
val, |
|
|
const AVRational * |
time_base |
|
) |
| |
|
static |
static char* ts_value_string |
( |
char * |
buf, |
|
|
int |
buf_size, |
|
|
int64_t |
ts |
|
) |
| |
|
static |
static char* value_string |
( |
char * |
buf, |
|
|
int |
buf_size, |
|
|
double |
val, |
|
|
const char * |
unit |
|
) |
| |
|
static |
Variable Documentation
const char* binary_unit_prefixes[] = { "", "Ki", "Mi", "Gi", "Ti", "Pi" } |
|
static |
const char* decimal_unit_prefixes[] = { "", "K" , "M" , "G" , "T" , "P" } |
|
static |
const char* input_filename |
|
static |
const int program_birth_year = 2007 |
const char program_name[] = "avprobe" |
const char* unit_bit_per_second_str = "bit/s" |
|
static |
const char* unit_byte_str = "byte" |
|
static |
const char* unit_hertz_str = "Hz" |
|
static |
const char* unit_second_str = "s" |
|
static |
int use_byte_value_binary_prefix = 0 |
|
static |
int use_value_sexagesimal_format = 0 |
|
static |