FFmpeg
Functions | Variables
iv8.c File Reference
#include "avformat.h"
#include "demux.h"
#include "internal.h"

Go to the source code of this file.

Functions

static int probe (const AVProbeData *p)
 
static int read_header (AVFormatContext *s)
 
static int read_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

const FFInputFormat ff_iv8_demuxer
 

Function Documentation

◆ probe()

static int probe ( const AVProbeData p)
static

Definition at line 26 of file iv8.c.

◆ read_header()

static int read_header ( AVFormatContext s)
static

Definition at line 41 of file iv8.c.

◆ read_packet()

static int read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 58 of file iv8.c.

Variable Documentation

◆ ff_iv8_demuxer

const FFInputFormat ff_iv8_demuxer
Initial value:
= {
.p.name = "iv8",
.p.long_name = NULL_IF_CONFIG_SMALL("IndigoVision 8000 video"),
.p.flags = AVFMT_GENERIC_INDEX,
.read_probe = probe,
.read_header = read_header,
.read_packet = read_packet,
}

Definition at line 111 of file iv8.c.

read_header
static int read_header(AVFormatContext *s)
Definition: iv8.c:41
probe
static int probe(const AVProbeData *p)
Definition: iv8.c:26
AVFMT_GENERIC_INDEX
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:480
read_packet
static int read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: iv8.c:58
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:94