#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
| struct | FilmstripDemuxContext |
Defines | |
| #define | RAND_TAG MKBETAG('R','a','n','d') |
Functions | |
| static int | read_header (AVFormatContext *s, AVFormatParameters *ap) |
| static int | read_packet (AVFormatContext *s, AVPacket *pkt) |
| static int | read_seek (AVFormatContext *s, int stream_index, int64_t timestamp, int flags) |
Variables | |
| AVInputFormat | ff_filmstrip_demuxer |
Definition in file filmstripdec.c.
| #define RAND_TAG MKBETAG('R','a','n','d') |
| static int read_header | ( | AVFormatContext * | s, | |
| AVFormatParameters * | ap | |||
| ) | [static] |
Definition at line 37 of file filmstripdec.c.
| static int read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
Definition at line 78 of file filmstripdec.c.
| static int read_seek | ( | AVFormatContext * | s, | |
| int | stream_index, | |||
| int64_t | timestamp, | |||
| int | flags | |||
| ) | [static] |
Definition at line 95 of file filmstripdec.c.
Initial value:
{
.name = "filmstrip",
.long_name = NULL_IF_CONFIG_SMALL("Adobe Filmstrip"),
.priv_data_size = sizeof(FilmstripDemuxContext),
.read_header = read_header,
.read_packet = read_packet,
.read_seek = read_seek,
.extensions = "flm",
}
Definition at line 103 of file filmstripdec.c.
1.5.8