#include "avformat.h"#include "pcm.h"#include "libavutil/intreadwrite.h"#include "libavutil/audioconvert.h"Go to the source code of this file.
Defines | |
| #define | AT1_SU_SIZE 212 |
Functions | |
| static int | aea_read_probe (AVProbeData *p) |
| static int | aea_read_header (AVFormatContext *s) |
| static int | aea_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
| AVInputFormat | ff_aea_demuxer |
| static int aea_read_header | ( | AVFormatContext * | s | ) | [static] |
| static int aea_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
| static int aea_read_probe | ( | AVProbeData * | p | ) | [static] |
Initial value:
{
.name = "aea",
.long_name = NULL_IF_CONFIG_SMALL("MD STUDIO audio"),
.read_probe = aea_read_probe,
.read_header = aea_read_header,
.read_packet = aea_read_packet,
.read_seek = ff_pcm_read_seek,
.flags = AVFMT_GENERIC_INDEX,
.extensions = "aea",
}
1.5.8