FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Enumerations | Functions | Variables
wvdec.c File Reference
#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/dict.h"
#include "avformat.h"
#include "internal.h"
#include "apetag.h"
#include "id3v1.h"
#include "wv.h"

Go to the source code of this file.

Data Structures

struct  WVContext
 

Enumerations

enum  WV_FLAGS {
  WV_MONO = 0x0004, WV_HYBRID = 0x0008, WV_JOINT = 0x0010, WV_CROSSD = 0x0020,
  WV_HSHAPE = 0x0040, WV_FLOAT = 0x0080, WV_INT32 = 0x0100, WV_HBR = 0x0200,
  WV_HBAL = 0x0400, WV_MCINIT = 0x0800, WV_MCEND = 0x1000
}
 

Functions

static int wv_probe (AVProbeData *p)
 
static int wv_read_block_header (AVFormatContext *ctx, AVIOContext *pb)
 
static int wv_read_header (AVFormatContext *s)
 
static int wv_read_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

static const int wv_rates [16]
 
AVInputFormat ff_wv_demuxer
 

Enumeration Type Documentation

enum WV_FLAGS
Enumerator
WV_MONO 
WV_HYBRID 
WV_JOINT 
WV_CROSSD 
WV_HSHAPE 
WV_FLOAT 
WV_INT32 
WV_HBR 
WV_HBAL 
WV_MCINIT 
WV_MCEND 

Definition at line 31 of file wvdec.c.

Function Documentation

static int wv_probe ( AVProbeData p)
static

Definition at line 62 of file wvdec.c.

static int wv_read_block_header ( AVFormatContext ctx,
AVIOContext pb 
)
static

Definition at line 77 of file wvdec.c.

Referenced by wv_read_header(), and wv_read_packet().

static int wv_read_header ( AVFormatContext s)
static

Definition at line 212 of file wvdec.c.

static int wv_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 255 of file wvdec.c.

Variable Documentation

const int wv_rates[16]
static
Initial value:
= {
6000, 8000, 9600, 11025, 12000, 16000, 22050, 24000,
32000, 44100, 48000, 64000, 88200, 96000, 192000, -1
}

Definition at line 45 of file wvdec.c.

Referenced by wv_read_block_header().

AVInputFormat ff_wv_demuxer
Initial value:
= {
.name = "wv",
.long_name = NULL_IF_CONFIG_SMALL("WavPack"),
.priv_data_size = sizeof(WVContext),
}
static int wv_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: wvdec.c:255
static int wv_probe(AVProbeData *p)
Definition: wvdec.c:62
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
static int read_probe(AVProbeData *pd)
Definition: jvdec.c:55
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:638
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:486
static int flags
Definition: cpu.c:47
static int wv_read_header(AVFormatContext *s)
Definition: wvdec.c:212

Definition at line 312 of file wvdec.c.