FFmpeg
|
This is a decoder for Real Audio Lossless format. More...
#include "libavutil/attributes.h"
#include "libavutil/channel_layout.h"
#include "avcodec.h"
#include "get_bits.h"
#include "golomb.h"
#include "internal.h"
#include "unary.h"
#include "ralfdata.h"
Go to the source code of this file.
Data Structures | |
struct | VLCSet |
struct | RALFContext |
Macros | |
#define | FILTER_NONE 0 |
#define | FILTER_RAW 642 |
#define | RALF_MAX_PKT_SIZE 8192 |
#define | MAX_ELEMS 644 |
Functions | |
static av_cold int | init_ralf_vlc (VLC *vlc, const uint8_t *data, int elems) |
static av_cold int | decode_close (AVCodecContext *avctx) |
static av_cold int | decode_init (AVCodecContext *avctx) |
static int | extend_code (GetBitContext *gb, int val, int range, int bits) |
static int | decode_channel (RALFContext *ctx, GetBitContext *gb, int ch, int length, int mode, int bits) |
static void | apply_lpc (RALFContext *ctx, int ch, int length, int bits) |
static int | decode_block (AVCodecContext *avctx, GetBitContext *gb, int16_t *dst0, int16_t *dst1) |
static int | decode_frame (AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt) |
static void | decode_flush (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_ralf_decoder |
This is a decoder for Real Audio Lossless format.
Dedicated to the mastermind behind it, Ralph Wiggum.
Definition in file ralf.c.
#define FILTER_NONE 0 |
Definition at line 38 of file ralf.c.
Referenced by decode_channel().
#define FILTER_RAW 642 |
Definition at line 39 of file ralf.c.
Referenced by decode_block(), and decode_channel().
#define RALF_MAX_PKT_SIZE 8192 |
Definition at line 50 of file ralf.c.
Referenced by decode_frame().
#define MAX_ELEMS 644 |
Definition at line 74 of file ralf.c.
Referenced by init_ralf_vlc().
Definition at line 76 of file ralf.c.
Referenced by decode_init().
|
static |
Definition at line 106 of file ralf.c.
Referenced by decode_init().
|
static |
|
inlinestatic |
Definition at line 213 of file ralf.c.
Referenced by decode_channel().
|
static |
Definition at line 227 of file ralf.c.
Referenced by decode_block().
|
static |
Definition at line 314 of file ralf.c.
Referenced by decode_block().
|
static |
Definition at line 338 of file ralf.c.
Referenced by decode_frame().
|
static |
|
static |
AVCodec ff_ralf_decoder |