FFmpeg
Functions | Variables
lvfdec.c File Reference
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "demux.h"
#include "riff.h"

Go to the source code of this file.

Functions

static int lvf_probe (const AVProbeData *p)
 
static int lvf_read_header (AVFormatContext *s)
 
static int lvf_read_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

const FFInputFormat ff_lvf_demuxer
 

Function Documentation

◆ lvf_probe()

static int lvf_probe ( const AVProbeData p)
static

Definition at line 27 of file lvfdec.c.

◆ lvf_read_header()

static int lvf_read_header ( AVFormatContext s)
static

Definition at line 38 of file lvfdec.c.

◆ lvf_read_packet()

static int lvf_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 105 of file lvfdec.c.

Variable Documentation

◆ ff_lvf_demuxer

const FFInputFormat ff_lvf_demuxer
Initial value:
= {
.p.name = "lvf",
.p.long_name = NULL_IF_CONFIG_SMALL("LVF"),
.p.extensions = "lvf",
.p.flags = AVFMT_GENERIC_INDEX,
.read_probe = lvf_probe,
.read_header = lvf_read_header,
.read_packet = lvf_read_packet,
}

Definition at line 149 of file lvfdec.c.

AVFMT_GENERIC_INDEX
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:480
lvf_read_packet
static int lvf_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: lvfdec.c:105
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:106
lvf_read_header
static int lvf_read_header(AVFormatContext *s)
Definition: lvfdec.c:38
lvf_probe
static int lvf_probe(const AVProbeData *p)
Definition: lvfdec.c:27