#include "avcodec.h"#include <speex/speex.h>#include <speex/speex_header.h>#include <speex/speex_stereo.h>#include <speex/speex_callbacks.h>Go to the source code of this file.
Data Structures | |
| struct | LibSpeexContext |
Functions | |
| static av_cold int | libspeex_decode_init (AVCodecContext *avctx) |
| static int | libspeex_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
| static av_cold int | libspeex_decode_close (AVCodecContext *avctx) |
Variables | |
| AVCodec | ff_libspeex_decoder |
| static av_cold int libspeex_decode_close | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 130 of file libspeexdec.c.
| static int libspeex_decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| AVPacket * | avpkt | |||
| ) | [static] |
Definition at line 95 of file libspeexdec.c.
| static av_cold int libspeex_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 36 of file libspeexdec.c.
Initial value:
{
"libspeex",
AVMEDIA_TYPE_AUDIO,
CODEC_ID_SPEEX,
sizeof(LibSpeexContext),
libspeex_decode_init,
NULL,
libspeex_decode_close,
libspeex_decode_frame,
.long_name = NULL_IF_CONFIG_SMALL("libspeex Speex"),
}
Definition at line 141 of file libspeexdec.c.
1.5.8