libavcodec/tta.c File Reference

TTA (The Lossless True Audio) decoder. More...

#include <limits.h>
#include "avcodec.h"
#include "get_bits.h"
#include "internal.h"
#include "libavutil/crc.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"
Include dependency graph for libavcodec/tta.c:

Go to the source code of this file.

Data Structures

struct  TTAFilter
 
struct  TTARice
 
struct  TTAChannel
 
struct  TTAContext
 

Macros

#define BITSTREAM_READER_LE
 
#define FORMAT_SIMPLE   1
 
#define FORMAT_ENCRYPTED   2
 
#define MAX_ORDER   16
 
#define PRED(x, k)   (int32_t)((((uint64_t)x << k) - x) >> k)
 
#define OFFSET(x)   offsetof(TTAContext, x)
 
#define DEC   (AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM)
 

Typedefs

typedef struct TTAFilter TTAFilter
 
typedef struct TTARice TTARice
 
typedef struct TTAChannel TTAChannel
 
typedef struct TTAContext TTAContext
 

Functions

static void ttafilter_init (TTAContext *s, TTAFilter *c, int32_t shift)
 
static void ttafilter_process (TTAFilter *c, int32_t *in)
 
static void rice_init (TTARice *c, uint32_t k0, uint32_t k1)
 
static int tta_get_unary (GetBitContext *gb)
 
static int tta_check_crc (TTAContext *s, const uint8_t *buf, int buf_size)
 
static uint64_t tta_check_crc64 (uint8_t *pass)
 
static av_cold int tta_decode_init (AVCodecContext *avctx)
 
static int tta_decode_frame (AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
 
static av_cold int tta_decode_close (AVCodecContext *avctx)
 

Variables

static const uint32_t shift_1 []
 
static const uint32_t *const shift_16 = shift_1 + 4
 
static const int32_t ttafilter_configs [4]
 
static const int64_t tta_channel_layouts [7]
 
static const AVOption options []
 
static const AVClass tta_decoder_class
 
AVCodec ff_tta_decoder
 

Detailed Description

TTA (The Lossless True Audio) decoder.

See also
http://www.true-audio.com/
http://tta.corecodec.org/
Author
Alex Beregszaszi

Definition in file libavcodec/tta.c.

Macro Definition Documentation

#define BITSTREAM_READER_LE

Definition at line 30 of file libavcodec/tta.c.

Definition at line 491 of file libavcodec/tta.c.

#define FORMAT_ENCRYPTED   2

Definition at line 41 of file libavcodec/tta.c.

Referenced by tta_decode_init(), and ttafilter_init().

#define FORMAT_SIMPLE   1

Definition at line 40 of file libavcodec/tta.c.

#define MAX_ORDER   16

Definition at line 43 of file libavcodec/tta.c.

#define OFFSET (   x)    offsetof(TTAContext, x)

Definition at line 490 of file libavcodec/tta.c.

#define PRED (   x,
  k 
)    (int32_t)((((uint64_t)x << k) - x) >> k)

Referenced by tta_decode_frame().

Typedef Documentation

typedef struct TTAChannel TTAChannel
typedef struct TTAContext TTAContext
typedef struct TTAFilter TTAFilter
typedef struct TTARice TTARice

Function Documentation

static void rice_init ( TTARice c,
uint32_t  k0,
uint32_t  k1 
)
static

Definition at line 143 of file libavcodec/tta.c.

Referenced by tta_decode_frame().

static int tta_check_crc ( TTAContext s,
const uint8_t buf,
int  buf_size 
)
static

Definition at line 171 of file libavcodec/tta.c.

Referenced by tta_decode_frame(), and tta_decode_init().

static uint64_t tta_check_crc64 ( uint8_t pass)
static

Definition at line 185 of file libavcodec/tta.c.

Referenced by tta_decode_init().

static av_cold int tta_decode_close ( AVCodecContext avctx)
static

Definition at line 479 of file libavcodec/tta.c.

static int tta_decode_frame ( AVCodecContext avctx,
void data,
int *  got_frame_ptr,
AVPacket avpkt 
)
static

Definition at line 317 of file libavcodec/tta.c.

static av_cold int tta_decode_init ( AVCodecContext avctx)
static

Definition at line 200 of file libavcodec/tta.c.

static int tta_get_unary ( GetBitContext gb)
static

Definition at line 151 of file libavcodec/tta.c.

Referenced by tta_decode_frame().

static void ttafilter_init ( TTAContext s,
TTAFilter c,
int32_t  shift 
)
static

Definition at line 100 of file libavcodec/tta.c.

Referenced by tta_decode_frame().

static void ttafilter_process ( TTAFilter c,
int32_t in 
)
inlinestatic

Definition at line 112 of file libavcodec/tta.c.

Referenced by tta_decode_frame().

Variable Documentation

AVCodec ff_tta_decoder
Initial value:
= {
.name = "tta",
.priv_data_size = sizeof(TTAContext),
.capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("TTA (True Audio)"),
.priv_class = &tta_decoder_class,
}
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static av_cold int tta_decode_init(AVCodecContext *avctx)
static int tta_decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
static av_cold int tta_decode_close(AVCodecContext *avctx)
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
struct TTAContext TTAContext
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static const AVClass tta_decoder_class
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:375
static int decode(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: crystalhd.c:868

Definition at line 504 of file libavcodec/tta.c.

const AVOption options[]
static
Initial value:
= {
{ "password", "Set decoding password", OFFSET(pass), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, DEC },
{ NULL },
}
#define pass
Definition: fft.c:335
#define OFFSET(x)
NULL
Definition: eval.c:55
#define DEC

Definition at line 492 of file libavcodec/tta.c.

const uint32_t shift_1[]
static
Initial value:
= {
0x00000001, 0x00000002, 0x00000004, 0x00000008,
0x00000010, 0x00000020, 0x00000040, 0x00000080,
0x00000100, 0x00000200, 0x00000400, 0x00000800,
0x00001000, 0x00002000, 0x00004000, 0x00008000,
0x00010000, 0x00020000, 0x00040000, 0x00080000,
0x00100000, 0x00200000, 0x00400000, 0x00800000,
0x01000000, 0x02000000, 0x04000000, 0x08000000,
0x10000000, 0x20000000, 0x40000000, 0x80000000,
0x80000000, 0x80000000, 0x80000000, 0x80000000,
0x80000000, 0x80000000, 0x80000000, 0x80000000
}

Definition at line 78 of file libavcodec/tta.c.

Referenced by tta_decode_frame(), and ttafilter_init().

const uint32_t* const shift_16 = shift_1 + 4
static

Definition at line 91 of file libavcodec/tta.c.

Referenced by rice_init(), and tta_decode_frame().

const int64_t tta_channel_layouts[7]
static
Initial value:
= {
0,
AV_CH_LAYOUT_5POINT1_BACK|AV_CH_BACK_CENTER,
}
#define AV_CH_LAYOUT_STEREO
#define AV_CH_LOW_FREQUENCY
#define AV_CH_LAYOUT_QUAD
#define AV_CH_LAYOUT_5POINT1_BACK
#define AV_CH_BACK_CENTER
#define AV_CH_LAYOUT_7POINT1_WIDE

Definition at line 161 of file libavcodec/tta.c.

Referenced by tta_decode_init().

const AVClass tta_decoder_class
static
Initial value:
= {
.class_name = "TTA Decoder",
.item_name = av_default_item_name,
.option = options,
}
av_default_item_name
static const AVOption options[]
LIBAVUTIL_VERSION_INT
Definition: eval.c:55

Definition at line 497 of file libavcodec/tta.c.

const int32_t ttafilter_configs[4]
static
Initial value:
= {
10,
9,
10,
12
}

Definition at line 93 of file libavcodec/tta.c.

Referenced by tta_decode_frame().