FFmpeg
Data Structures | Macros | Enumerations | Functions | Variables
wavpack.c File Reference
#include "libavutil/channel_layout.h"
#include "libavutil/mem.h"
#include "avcodec.h"
#include "bytestream.h"
#include "codec_internal.h"
#include "get_bits.h"
#include "refstruct.h"
#include "thread.h"
#include "threadprogress.h"
#include "unary.h"
#include "wavpack.h"
#include "dsd.h"

Go to the source code of this file.

Data Structures

struct  WavpackFrameContext
 
struct  WavpackContext
 
struct  DSDfilters
 

Macros

#define BITSTREAM_READER_LE
 
#define DSD_BYTE_READY(low, high)   (!(((low) ^ (high)) & 0xff000000))
 
#define PTABLE_BITS   8
 
#define PTABLE_BINS   (1<<PTABLE_BITS)
 
#define PTABLE_MASK   (PTABLE_BINS-1)
 
#define UP   0x010000fe
 
#define DOWN   0x00010000
 
#define DECAY   8
 
#define PRECISION   20
 
#define VALUE_ONE   (1 << PRECISION)
 
#define PRECISION_USE   12
 
#define RATE_S   20
 
#define MAX_HISTORY_BITS   5
 
#define MAX_HISTORY_BINS   (1 << MAX_HISTORY_BITS)
 
#define MAX_BIN_BYTES   1280
 
#define LEVEL_DECAY(a)   (((a) + 0x80) >> 8)
 

Enumerations

enum  Modulation { MODULATION_PCM, MODULATION_DSD }
 

Functions

static av_always_inline unsigned get_tail (GetBitContext *gb, unsigned k)
 
static int update_error_limit (WavpackFrameContext *ctx)
 
static int wv_get_value (WavpackFrameContext *ctx, GetBitContext *gb, int channel, int *last)
 
static int wv_get_value_integer (WavpackFrameContext *s, uint32_t *crc, unsigned S)
 
static float wv_get_value_float (WavpackFrameContext *s, uint32_t *crc, int S)
 
static int wv_check_crc (WavpackFrameContext *s, uint32_t crc, uint32_t crc_extra_bits)
 
static void init_ptable (int *table, int rate_i, int rate_s)
 
static int wv_unpack_dsd_high (WavpackFrameContext *s, uint8_t *dst_left, uint8_t *dst_right)
 
static int wv_unpack_dsd_fast (WavpackFrameContext *s, uint8_t *dst_left, uint8_t *dst_right)
 
static int wv_unpack_dsd_copy (WavpackFrameContext *s, uint8_t *dst_left, uint8_t *dst_right)
 
static int wv_unpack_stereo (WavpackFrameContext *s, GetBitContext *gb, void *dst_l, void *dst_r, const int type)
 
static int wv_unpack_mono (WavpackFrameContext *s, GetBitContext *gb, void *dst, const int type)
 
static av_cold int wv_alloc_frame_context (WavpackContext *c)
 
static int wv_dsd_reset (WavpackContext *s, int channels)
 
static av_cold int wavpack_decode_init (AVCodecContext *avctx)
 
static av_cold int wavpack_decode_end (AVCodecContext *avctx)
 
static int wavpack_decode_block (AVCodecContext *avctx, AVFrame *frame, int block_no, const uint8_t *buf, int buf_size, int *new_progress)
 
static void wavpack_decode_flush (AVCodecContext *avctx)
 
static int dsd_channel (AVCodecContext *avctx, void *frmptr, int jobnr, int threadnr)
 
static int wavpack_decode_frame (AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt)
 

Variables

const FFCodec ff_wavpack_decoder
 

Detailed Description

WavPack lossless audio decoder

Definition in file wavpack.c.

Macro Definition Documentation

◆ BITSTREAM_READER_LE

#define BITSTREAM_READER_LE

Definition at line 26 of file wavpack.c.

◆ DSD_BYTE_READY

#define DSD_BYTE_READY (   low,
  high 
)    (!(((low) ^ (high)) & 0xff000000))

Definition at line 43 of file wavpack.c.

◆ PTABLE_BITS

#define PTABLE_BITS   8

Definition at line 45 of file wavpack.c.

◆ PTABLE_BINS

#define PTABLE_BINS   (1<<PTABLE_BITS)

Definition at line 46 of file wavpack.c.

◆ PTABLE_MASK

#define PTABLE_MASK   (PTABLE_BINS-1)

Definition at line 47 of file wavpack.c.

◆ UP

#define UP   0x010000fe

Definition at line 49 of file wavpack.c.

◆ DOWN

#define DOWN   0x00010000

Definition at line 50 of file wavpack.c.

◆ DECAY

#define DECAY   8

Definition at line 51 of file wavpack.c.

◆ PRECISION

#define PRECISION   20

Definition at line 53 of file wavpack.c.

◆ VALUE_ONE

#define VALUE_ONE   (1 << PRECISION)

Definition at line 54 of file wavpack.c.

◆ PRECISION_USE

#define PRECISION_USE   12

Definition at line 55 of file wavpack.c.

◆ RATE_S

#define RATE_S   20

Definition at line 57 of file wavpack.c.

◆ MAX_HISTORY_BITS

#define MAX_HISTORY_BITS   5

Definition at line 59 of file wavpack.c.

◆ MAX_HISTORY_BINS

#define MAX_HISTORY_BINS   (1 << MAX_HISTORY_BITS)

Definition at line 60 of file wavpack.c.

◆ MAX_BIN_BYTES

#define MAX_BIN_BYTES   1280

Definition at line 61 of file wavpack.c.

◆ LEVEL_DECAY

#define LEVEL_DECAY (   a)    (((a) + 0x80) >> 8)

Definition at line 117 of file wavpack.c.

Enumeration Type Documentation

◆ Modulation

enum Modulation
Enumerator
MODULATION_PCM 
MODULATION_DSD 

Definition at line 63 of file wavpack.c.

Function Documentation

◆ get_tail()

static av_always_inline unsigned get_tail ( GetBitContext gb,
unsigned  k 
)
static

Definition at line 119 of file wavpack.c.

Referenced by wv_get_value().

◆ update_error_limit()

static int update_error_limit ( WavpackFrameContext ctx)
static

Definition at line 133 of file wavpack.c.

Referenced by wv_get_value().

◆ wv_get_value()

static int wv_get_value ( WavpackFrameContext ctx,
GetBitContext gb,
int  channel,
int last 
)
static

Definition at line 171 of file wavpack.c.

Referenced by wv_unpack_mono(), and wv_unpack_stereo().

◆ wv_get_value_integer()

static int wv_get_value_integer ( WavpackFrameContext s,
uint32_t *  crc,
unsigned  S 
)
inlinestatic

Definition at line 297 of file wavpack.c.

Referenced by wv_unpack_mono(), and wv_unpack_stereo().

◆ wv_get_value_float()

static float wv_get_value_float ( WavpackFrameContext s,
uint32_t *  crc,
int  S 
)
static

Definition at line 321 of file wavpack.c.

Referenced by wv_unpack_mono(), and wv_unpack_stereo().

◆ wv_check_crc()

static int wv_check_crc ( WavpackFrameContext s,
uint32_t  crc,
uint32_t  crc_extra_bits 
)
inlinestatic

◆ init_ptable()

static void init_ptable ( int table,
int  rate_i,
int  rate_s 
)
static

Definition at line 410 of file wavpack.c.

Referenced by wv_unpack_dsd_high().

◆ wv_unpack_dsd_high()

static int wv_unpack_dsd_high ( WavpackFrameContext s,
uint8_t *  dst_left,
uint8_t *  dst_right 
)
static

Definition at line 435 of file wavpack.c.

Referenced by wavpack_decode_block().

◆ wv_unpack_dsd_fast()

static int wv_unpack_dsd_fast ( WavpackFrameContext s,
uint8_t *  dst_left,
uint8_t *  dst_right 
)
static

Definition at line 578 of file wavpack.c.

Referenced by wavpack_decode_block().

◆ wv_unpack_dsd_copy()

static int wv_unpack_dsd_copy ( WavpackFrameContext s,
uint8_t *  dst_left,
uint8_t *  dst_right 
)
static

Definition at line 739 of file wavpack.c.

Referenced by wavpack_decode_block().

◆ wv_unpack_stereo()

static int wv_unpack_stereo ( WavpackFrameContext s,
GetBitContext gb,
void *  dst_l,
void *  dst_r,
const int  type 
)
inlinestatic

Definition at line 771 of file wavpack.c.

Referenced by wavpack_decode_block().

◆ wv_unpack_mono()

static int wv_unpack_mono ( WavpackFrameContext s,
GetBitContext gb,
void *  dst,
const int  type 
)
inlinestatic

Definition at line 904 of file wavpack.c.

Referenced by wavpack_decode_block().

◆ wv_alloc_frame_context()

static av_cold int wv_alloc_frame_context ( WavpackContext c)
static

Definition at line 973 of file wavpack.c.

Referenced by wavpack_decode_block().

◆ wv_dsd_reset()

static int wv_dsd_reset ( WavpackContext s,
int  channels 
)
static

Definition at line 990 of file wavpack.c.

Referenced by wavpack_decode_block(), wavpack_decode_end(), and wavpack_decode_flush().

◆ wavpack_decode_init()

static av_cold int wavpack_decode_init ( AVCodecContext avctx)
static

Definition at line 1051 of file wavpack.c.

◆ wavpack_decode_end()

static av_cold int wavpack_decode_end ( AVCodecContext avctx)
static

Definition at line 1074 of file wavpack.c.

◆ wavpack_decode_block()

static int wavpack_decode_block ( AVCodecContext avctx,
AVFrame frame,
int  block_no,
const uint8_t *  buf,
int  buf_size,
int new_progress 
)
static

Definition at line 1089 of file wavpack.c.

Referenced by wavpack_decode_frame().

◆ wavpack_decode_flush()

static void wavpack_decode_flush ( AVCodecContext avctx)
static

Definition at line 1614 of file wavpack.c.

◆ dsd_channel()

static int dsd_channel ( AVCodecContext avctx,
void *  frmptr,
int  jobnr,
int  threadnr 
)
static

Definition at line 1621 of file wavpack.c.

Referenced by wavpack_decode_frame().

◆ wavpack_decode_frame()

static int wavpack_decode_frame ( AVCodecContext avctx,
AVFrame frame,
int got_frame_ptr,
AVPacket avpkt 
)
static

Definition at line 1633 of file wavpack.c.

Variable Documentation

◆ ff_wavpack_decoder

const FFCodec ff_wavpack_decoder
FF_CODEC_CAP_INIT_CLEANUP
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: codec_internal.h:42
wavpack_decode_flush
static void wavpack_decode_flush(AVCodecContext *avctx)
Definition: wavpack.c:1614
WavpackContext
Definition: wavpack.c:100
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:286
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:271
AV_CODEC_CAP_FRAME_THREADS
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition: codec.h:110
UPDATE_THREAD_CONTEXT
#define UPDATE_THREAD_CONTEXT(func)
Definition: codec_internal.h:280
AV_CODEC_CAP_CHANNEL_CONF
#define AV_CODEC_CAP_CHANNEL_CONF
Codec should fill in channel configuration and samplerate instead of container.
Definition: codec.h:106
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:366
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
AV_CODEC_CAP_SLICE_THREADS
#define AV_CODEC_CAP_SLICE_THREADS
Codec supports slice-based (or partition-based) multithreading.
Definition: codec.h:114
wavpack_decode_end
static av_cold int wavpack_decode_end(AVCodecContext *avctx)
Definition: wavpack.c:1074
wavpack_decode_init
static av_cold int wavpack_decode_init(AVCodecContext *avctx)
Definition: wavpack.c:1051
update_thread_context
the pkt_dts and pkt_pts fields in AVFrame will work as usual Restrictions on codec whose streams don t reset across will not work because their bitstreams cannot be decoded in parallel *The contents of buffers must not be read before as well as code calling up to before the decode process starts Call have update_thread_context() run it in the next thread. Add AV_CODEC_CAP_FRAME_THREADS to the codec capabilities. There will be very little speed gain at this point but it should work. Use ff_thread_get_buffer()(or ff_progress_frame_get_buffer() in case you have inter-frame dependencies and use the ProgressFrame API) to allocate frame buffers. Call ff_progress_frame_report() after some part of the current picture has decoded. A good place to put this is where draw_horiz_band() is called - add this if it isn 't called anywhere
wavpack_decode_frame
static int wavpack_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt)
Definition: wavpack.c:1633
AV_CODEC_ID_WAVPACK
@ AV_CODEC_ID_WAVPACK
Definition: codec_id.h:465