FFmpeg
|
#include <stdio.h>
#include <stdint.h>
#include "libavutil/channel_layout.h"
#include "libavutil/display.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/log.h"
#include "libavutil/mastering_display_metadata.h"
#include "libavutil/mathematics.h"
#include "libavutil/opt.h"
#include "libavutil/avstring.h"
#include "libavutil/replaygain.h"
#include "libavutil/stereo3d.h"
#include "avformat.h"
Go to the source code of this file.
Macros | |
#define | HEXDUMP_PRINT(...) |
Functions | |
static void | hex_dump_internal (void *avcl, FILE *f, int level, const uint8_t *buf, int size) |
void | av_hex_dump (FILE *f, const uint8_t *buf, int size) |
Send a nice hexadecimal dump of a buffer to the specified file stream. More... | |
void | av_hex_dump_log (void *avcl, int level, const uint8_t *buf, int size) |
Send a nice hexadecimal dump of a buffer to the log. More... | |
static void | pkt_dump_internal (void *avcl, FILE *f, int level, const AVPacket *pkt, int dump_payload, AVRational time_base) |
void | av_pkt_dump2 (FILE *f, const AVPacket *pkt, int dump_payload, const AVStream *st) |
Send a nice dump of a packet to the specified file stream. More... | |
void | av_pkt_dump_log2 (void *avcl, int level, const AVPacket *pkt, int dump_payload, const AVStream *st) |
Send a nice dump of a packet to the log. More... | |
static void | print_fps (double d, const char *postfix) |
static void | dump_metadata (void *ctx, AVDictionary *m, const char *indent) |
static void | dump_paramchange (void *ctx, AVPacketSideData *sd) |
static void | print_gain (void *ctx, const char *str, int32_t gain) |
static void | print_peak (void *ctx, const char *str, uint32_t peak) |
static void | dump_replaygain (void *ctx, AVPacketSideData *sd) |
static void | dump_stereo3d (void *ctx, AVPacketSideData *sd) |
static void | dump_audioservicetype (void *ctx, AVPacketSideData *sd) |
static void | dump_cpb (void *ctx, AVPacketSideData *sd) |
static void | dump_mastering_display_metadata (void *ctx, AVPacketSideData *sd) |
static void | dump_sidedata (void *ctx, AVStream *st, const char *indent) |
static void | dump_stream_format (AVFormatContext *ic, int i, int index, int is_output) |
void | av_dump_format (AVFormatContext *ic, int index, const char *url, int is_output) |
Print detailed information about the input or output format, such as duration, bitrate, streams, container, programs, metadata, side data, codec and time base. More... | |
#define HEXDUMP_PRINT | ( | ... | ) |
Definition at line 38 of file dump.c.
Referenced by hex_dump_internal(), and pkt_dump_internal().
|
static |
Definition at line 46 of file dump.c.
Referenced by av_hex_dump(), av_hex_dump_log(), and pkt_dump_internal().
|
static |
Definition at line 83 of file dump.c.
Referenced by av_pkt_dump2(), and av_pkt_dump_log2().
|
static |
Definition at line 119 of file dump.c.
Referenced by dump_stream_format().
|
static |
Definition at line 132 of file dump.c.
Referenced by av_dump_format(), and dump_stream_format().
|
static |
Definition at line 159 of file dump.c.
Referenced by dump_sidedata().
Definition at line 216 of file dump.c.
Referenced by dump_replaygain().
Definition at line 226 of file dump.c.
Referenced by dump_replaygain().
|
static |
Definition at line 236 of file dump.c.
Referenced by dump_sidedata().
|
static |
Definition at line 252 of file dump.c.
Referenced by dump_sidedata().
|
static |
Definition at line 269 of file dump.c.
Referenced by dump_sidedata().
|
static |
Definition at line 312 of file dump.c.
Referenced by dump_sidedata().
|
static |
Definition at line 328 of file dump.c.
Referenced by dump_sidedata().
Definition at line 345 of file dump.c.
Referenced by dump_stream_format().
|
static |
Definition at line 407 of file dump.c.
Referenced by av_dump_format().