#include <stdlib.h>#include "libavutil/bswap.h"#include "libavutil/avstring.h"#include "libavcodec/get_bits.h"#include "libavcodec/bytestream.h"#include "avformat.h"#include "oggdec.h"Go to the source code of this file.
Data Structures | |
| struct | speex_params |
Functions | |
| static int | speex_header (AVFormatContext *s, int idx) |
| static int | ogg_page_packets (struct ogg_stream *os) |
| static int | speex_packet (AVFormatContext *s, int idx) |
Variables | |
| struct ogg_codec | ff_speex_codec |
| static int ogg_page_packets | ( | struct ogg_stream * | os | ) | [static] |
| static int speex_header | ( | AVFormatContext * | s, | |
| int | idx | |||
| ) | [static] |
Definition at line 38 of file oggparsespeex.c.
| static int speex_packet | ( | AVFormatContext * | s, | |
| int | idx | |||
| ) | [static] |
Definition at line 93 of file oggparsespeex.c.
| struct ogg_codec ff_speex_codec |
Initial value:
{
.magic = "Speex ",
.magicsize = 8,
.header = speex_header,
.packet = speex_packet
}
Definition at line 122 of file oggparsespeex.c.
1.5.8