FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Functions | Variables
lvfdec.c File Reference
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "riff.h"

Go to the source code of this file.

Functions

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

Variables

AVInputFormat ff_lvf_demuxer
 

Function Documentation

static int lvf_probe ( AVProbeData p)
static

Definition at line 26 of file lvfdec.c.

static int lvf_read_header ( AVFormatContext s)
static

Definition at line 37 of file lvfdec.c.

static int lvf_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 104 of file lvfdec.c.

Variable Documentation

AVInputFormat ff_lvf_demuxer
Initial value:
= {
.name = "lvf",
.long_name = NULL_IF_CONFIG_SMALL("LVF"),
.read_probe = lvf_probe,
.read_header = lvf_read_header,
.read_packet = lvf_read_packet,
.extensions = "lvf",
}
static int lvf_read_header(AVFormatContext *s)
Definition: lvfdec.c:37
static int lvf_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: lvfdec.c:104
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
static int lvf_probe(AVProbeData *p)
Definition: lvfdec.c:26
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:473

Definition at line 144 of file lvfdec.c.