#include <stdlib.h>#include "avformat.h"#include "bitstream.h"#include "oggdec.h"Go to the source code of this file.
Defines | |
| #define | FLAC_STREAMINFO_SIZE 0x22 |
Functions | |
| static int | flac_header (AVFormatContext *s, int idx) |
| static int | old_flac_header (AVFormatContext *s, int idx) |
Variables | |
| ogg_codec_t | flac_codec |
| ogg_codec_t | old_flac_codec |
| #define FLAC_STREAMINFO_SIZE 0x22 |
Definition at line 26 of file oggparseflac.c.
| static int flac_header | ( | AVFormatContext * | s, | |
| int | idx | |||
| ) | [static] |
Definition at line 29 of file oggparseflac.c.
| static int old_flac_header | ( | AVFormatContext * | s, | |
| int | idx | |||
| ) | [static] |
Definition at line 79 of file oggparseflac.c.
Initial value:
{
.magic = "\177FLAC",
.magicsize = 5,
.header = flac_header
}
Definition at line 88 of file oggparseflac.c.
Initial value:
{
.magic = "fLaC",
.magicsize = 4,
.header = old_flac_header
}
Definition at line 94 of file oggparseflac.c.
1.5.6