|
FFmpeg
|
#include <stdlib.h>#include "libavcodec/avcodec.h"#include "libavcodec/bytestream.h"#include "libavcodec/flac.h"#include "avformat.h"#include "internal.h"#include "oggdec.h"Go to the source code of this file.
Macros | |
| #define | OGG_FLAC_METADATA_TYPE_STREAMINFO 0x7F |
| #define | OGG_FLAC_MAGIC "\177FLAC" |
| #define | OGG_FLAC_MAGIC_SIZE sizeof(OGG_FLAC_MAGIC)-1 |
Functions | |
| static int | flac_header (AVFormatContext *s, int idx) |
| static int | flac_packet (AVFormatContext *s, int idx) |
| static int | old_flac_header (AVFormatContext *s, int idx) |
Variables | |
| const struct ogg_codec | ff_flac_codec |
| const struct ogg_codec | ff_old_flac_codec |
| #define OGG_FLAC_METADATA_TYPE_STREAMINFO 0x7F |
Definition at line 29 of file oggparseflac.c.
| #define OGG_FLAC_MAGIC "\177FLAC" |
Definition at line 30 of file oggparseflac.c.
| #define OGG_FLAC_MAGIC_SIZE sizeof(OGG_FLAC_MAGIC)-1 |
Definition at line 31 of file oggparseflac.c.
|
static |
Definition at line 34 of file oggparseflac.c.
|
static |
Definition at line 84 of file oggparseflac.c.
|
static |
Definition at line 112 of file oggparseflac.c.
| const struct ogg_codec ff_flac_codec |
Definition at line 159 of file oggparseflac.c.
| const struct ogg_codec ff_old_flac_codec |
Definition at line 167 of file oggparseflac.c.
1.8.17