FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
tta.c File Reference

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

#include <limits.h>
#include "ttadata.h"
#include "ttadsp.h"
#include "avcodec.h"
#include "get_bits.h"
#include "thread.h"
#include "unary.h"
#include "internal.h"
#include "libavutil/crc.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"

Go to the source code of this file.

Data Structures

struct  TTAContext
 

Macros

#define BITSTREAM_READER_LE
 
#define FORMAT_SIMPLE   1
 
#define FORMAT_ENCRYPTED   2
 
#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)
 

Functions

static int tta_check_crc (TTAContext *s, const uint8_t *buf, int buf_size)
 
static uint64_t tta_check_crc64 (uint8_t *pass)
 
static int allocate_buffers (AVCodecContext *avctx)
 
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 int init_thread_copy (AVCodecContext *avctx)
 
static av_cold int tta_decode_close (AVCodecContext *avctx)
 

Variables

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 tta.c.

Macro Definition Documentation

#define BITSTREAM_READER_LE

Definition at line 30 of file tta.c.

#define FORMAT_SIMPLE   1

Definition at line 43 of file tta.c.

#define FORMAT_ENCRYPTED   2

Definition at line 44 of file tta.c.

Referenced by tta_decode_frame(), and tta_decode_init().

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

Referenced by tta_decode_frame().

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

Definition at line 408 of file tta.c.

Definition at line 409 of file tta.c.

Function Documentation

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

Definition at line 73 of file tta.c.

Referenced by tta_decode_frame().

static uint64_t tta_check_crc64 ( uint8_t pass)
static

Definition at line 87 of file tta.c.

Referenced by tta_decode_init().

static int allocate_buffers ( AVCodecContext avctx)
static

Definition at line 102 of file tta.c.

Referenced by init_thread_copy(), and tta_decode_init().

static av_cold int tta_decode_init ( AVCodecContext avctx)
static

Definition at line 121 of file tta.c.

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

Definition at line 217 of file tta.c.

static int init_thread_copy ( AVCodecContext avctx)
static

Definition at line 390 of file tta.c.

static av_cold int tta_decode_close ( AVCodecContext avctx)
static

Definition at line 397 of file tta.c.

Variable Documentation

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 63 of file tta.c.

Referenced by tta_decode_init().

const AVOption options[]
static
Initial value:
= {
{ "password", "Set decoding password", OFFSET(pass), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, DEC },
{ NULL },
}
#define NULL
Definition: coverity.c:32
#define OFFSET(x)
Definition: tta.c:408
#define pass
Definition: fft_template.c:532
#define DEC
Definition: tta.c:409

Definition at line 410 of file tta.c.

const AVClass tta_decoder_class
static
Initial value:
= {
.class_name = "TTA Decoder",
.item_name = av_default_item_name,
.option = options,
}
#define LIBAVUTIL_VERSION_INT
Definition: version.h:70
static const AVOption options[]
Definition: tta.c:410
av_default_item_name

Definition at line 415 of file tta.c.

AVCodec ff_tta_decoder
Initial value:
= {
.name = "tta",
.long_name = NULL_IF_CONFIG_SMALL("TTA (True Audio)"),
.priv_data_size = sizeof(TTAContext),
.close = tta_decode_close,
.priv_class = &tta_decoder_class,
}
static int init_thread_copy(AVCodecContext *avctx)
Definition: tta.c:390
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static av_cold int tta_decode_init(AVCodecContext *avctx)
Definition: tta.c:121
static int tta_decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
Definition: tta.c:217
Definition: tta.c:46
static av_cold int tta_decode_close(AVCodecContext *avctx)
Definition: tta.c:397
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition: avcodec.h:1019
#define ONLY_IF_THREADS_ENABLED(x)
Define a function with only the non-default version specified.
Definition: internal.h:215
static const AVClass tta_decoder_class
Definition: tta.c:415
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
Definition: ccaption_dec.c:722
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:956

Definition at line 422 of file tta.c.