FFmpeg
Classes | Typedefs | Variables
truespeech.c File Reference

TrueSpeech decoder. More...

#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "bswapdsp.h"
#include "get_bits.h"
#include "internal.h"
#include "truespeech_data.h"

Classes

struct  TSContext
 TrueSpeech decoder context. More...
 

Typedefs

typedef struct TSContext TSContext
 TrueSpeech decoder context.
 

Variables

AVCodec ff_truespeech_decoder
 

Detailed Description

TrueSpeech decoder.

Variable Documentation

§ ff_truespeech_decoder

AVCodec ff_truespeech_decoder
Initial value:
= {
.name = "truespeech",
.long_name = NULL_IF_CONFIG_SMALL("DSP Group TrueSpeech"),
.type = AVMEDIA_TYPE_AUDIO,
.id = AV_CODEC_ID_TRUESPEECH,
.priv_data_size = sizeof(TSContext),
.init = truespeech_decode_init,
.decode = truespeech_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
struct TSContext TSContext
TrueSpeech decoder context.
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959