#include "libavutil/intreadwrite.h"#include "avformat.h"#include "internal.h"#include "riff.h"Go to the source code of this file.
Data Structures | |
| struct | DXAContext |
Defines | |
| #define | DXA_EXTRA_SIZE 9 |
Functions | |
| static int | dxa_probe (AVProbeData *p) |
| static int | dxa_read_header (AVFormatContext *s) |
| static int | dxa_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
| AVInputFormat | ff_dxa_demuxer |
| #define DXA_EXTRA_SIZE 9 |
| static int dxa_probe | ( | AVProbeData * | p | ) | [static] |
| static int dxa_read_header | ( | AVFormatContext * | s | ) | [static] |
| static int dxa_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
Initial value:
{
.name = "dxa",
.long_name = NULL_IF_CONFIG_SMALL("DXA"),
.priv_data_size = sizeof(DXAContext),
.read_probe = dxa_probe,
.read_header = dxa_read_header,
.read_packet = dxa_read_packet,
}
1.5.8