#include "libavutil/intreadwrite.h"#include "avformat.h"#include "apetag.h"#include "id3v1.h"Go to the source code of this file.
Data Structures | |
| struct | WVContext |
Defines | |
| #define | WV_BLOCK_LIMIT 1047576 |
| #define | WV_EXTRA_SIZE 12 |
Enumerations | |
| enum | WV_FLAGS { WV_MONO = 0x0004, WV_HYBRID = 0x0008, WV_JOINT = 0x0010, WV_CROSSD = 0x0020, WV_HSHAPE = 0x0040, WV_FLOAT = 0x0080, WV_INT32 = 0x0100, WV_HBR = 0x0200, WV_HBAL = 0x0400, WV_MCINIT = 0x0800, WV_MCEND = 0x1000 } |
Functions | |
| static int | wv_probe (AVProbeData *p) |
| static int | wv_read_block_header (AVFormatContext *ctx, ByteIOContext *pb) |
| static int | wv_read_header (AVFormatContext *s, AVFormatParameters *ap) |
| static int | wv_read_packet (AVFormatContext *s, AVPacket *pkt) |
| static int | wv_read_seek (AVFormatContext *s, int stream_index, int64_t timestamp, int flags) |
Variables | |
| static const int | wv_rates [16] |
| AVInputFormat | wv_demuxer |
| #define WV_BLOCK_LIMIT 1047576 |
| #define WV_EXTRA_SIZE 12 |
| enum WV_FLAGS |
| static int wv_probe | ( | AVProbeData * | p | ) | [static] |
| static int wv_read_block_header | ( | AVFormatContext * | ctx, | |
| ByteIOContext * | pb | |||
| ) | [static] |
| static int wv_read_header | ( | AVFormatContext * | s, | |
| AVFormatParameters * | ap | |||
| ) | [static] |
| static int wv_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
| static int wv_read_seek | ( | AVFormatContext * | s, | |
| int | stream_index, | |||
| int64_t | timestamp, | |||
| int | flags | |||
| ) | [static] |
Initial value:
{
"wv",
NULL_IF_CONFIG_SMALL("WavPack"),
sizeof(WVContext),
wv_probe,
wv_read_header,
wv_read_packet,
NULL,
wv_read_seek,
}
const int wv_rates[16] [static] |
Initial value:
{
6000, 8000, 9600, 11025, 12000, 16000, 22050, 24000,
32000, 44100, 48000, 64000, 88200, 96000, 192000, -1
}
Definition at line 46 of file wv.c.
Referenced by wv_read_block_header().
1.5.8