FFmpeg
Data Structures | Macros | Functions | Variables
filmstripdec.c File Reference
#include "libavutil/intreadwrite.h"
#include "libavutil/imgutils.h"
#include "avformat.h"
#include "demux.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 FFInputFormat 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 33 of file filmstripdec.c.

Function Documentation

◆ read_header()

static int read_header ( AVFormatContext s)
static

Definition at line 39 of file filmstripdec.c.

◆ read_packet()

static int read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 83 of file filmstripdec.c.

◆ read_seek()

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

Definition at line 100 of file filmstripdec.c.

Variable Documentation

◆ ff_filmstrip_demuxer

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

Definition at line 108 of file filmstripdec.c.

read_packet
static int read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: filmstripdec.c:83
read_header
static int read_header(AVFormatContext *s)
Definition: filmstripdec.c:39
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
read_seek
static int read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: filmstripdec.c:100
FilmstripDemuxContext
Definition: filmstripdec.c:35