FFmpeg
Data Structures | Macros | Functions | Variables
filmstripdec.c File Reference
#include "libavutil/intreadwrite.h"
#include "libavutil/imgutils.h"
#include "avformat.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  FilmstripDemuxContext
 

Macros

#define RAND_TAG   MKBETAG('R','a','n','d')
 

Functions

static int read_header (AVFormatContext *s)
 
static int read_packet (AVFormatContext *s, AVPacket *pkt)
 
static int read_seek (AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
 

Variables

const AVInputFormat ff_filmstrip_demuxer
 

Detailed Description

Adobe Filmstrip demuxer

Definition in file filmstripdec.c.

Macro Definition Documentation

◆ RAND_TAG

#define RAND_TAG   MKBETAG('R','a','n','d')

Definition at line 32 of file filmstripdec.c.

Function Documentation

◆ read_header()

static int read_header ( AVFormatContext s)
static

Definition at line 38 of file filmstripdec.c.

◆ read_packet()

static int read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 82 of file filmstripdec.c.

◆ read_seek()

static int read_seek ( AVFormatContext s,
int  stream_index,
int64_t  timestamp,
int  flags 
)
static

Definition at line 99 of file filmstripdec.c.

Variable Documentation

◆ ff_filmstrip_demuxer

const AVInputFormat ff_filmstrip_demuxer
Initial value:
= {
.name = "filmstrip",
.long_name = NULL_IF_CONFIG_SMALL("Adobe Filmstrip"),
.priv_data_size = sizeof(FilmstripDemuxContext),
.extensions = "flm",
}

Definition at line 107 of file filmstripdec.c.

read_packet
static int read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: filmstripdec.c:82
read_header
static int read_header(AVFormatContext *s)
Definition: filmstripdec.c:38
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:117
read_seek
static int read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: filmstripdec.c:99
FilmstripDemuxContext
Definition: filmstripdec.c:34