FFmpeg
Functions | Variables
wvedec.c File Reference
#include "avformat.h"
#include "internal.h"
#include "pcm.h"

Go to the source code of this file.

Functions

static int wve_probe (const AVProbeData *p)
 
static int wve_read_header (AVFormatContext *s)
 

Variables

AVInputFormat ff_wve_demuxer
 

Function Documentation

◆ wve_probe()

static int wve_probe ( const AVProbeData p)
static

Definition at line 25 of file wvedec.c.

◆ wve_read_header()

static int wve_read_header ( AVFormatContext s)
static

Definition at line 33 of file wvedec.c.

Variable Documentation

◆ ff_wve_demuxer

AVInputFormat ff_wve_demuxer
Initial value:
= {
.name = "wve",
.long_name = NULL_IF_CONFIG_SMALL("Psion 3 audio"),
.read_probe = wve_probe,
.read_header = wve_read_header,
.read_packet = ff_pcm_read_packet,
.read_seek = ff_pcm_read_seek,
}

Definition at line 55 of file wvedec.c.

NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:188
wve_probe
static int wve_probe(const AVProbeData *p)
Definition: wvedec.c:25
wve_read_header
static int wve_read_header(AVFormatContext *s)
Definition: wvedec.c:33
ff_pcm_read_packet
int ff_pcm_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: pcm.c:29
ff_pcm_read_seek
int ff_pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: pcm.c:56