#include "libavutil/intreadwrite.h"
#include "avformat.h"
Go to the source code of this file.
Data Structures | |
| struct | JVFrame |
| struct | JVDemuxContext |
Defines | |
| #define | JV_PREAMBLE_SIZE 5 |
| #define | MAGIC " Compression by John M Phillips Copyright (C) 1995 The Bitmap Brothers Ltd." |
Functions | |
| static int | read_probe (AVProbeData *pd) |
| 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 ts, int flags) |
Variables | |
| AVInputFormat | ff_jv_demuxer |
Definition in file jvdec.c.
| #define JV_PREAMBLE_SIZE 5 |
| #define MAGIC " Compression by John M Phillips Copyright (C) 1995 The Bitmap Brothers Ltd." |
| static int read_header | ( | AVFormatContext * | s, | |
| AVFormatParameters * | ap | |||
| ) | [static] |
| static int read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
| static int read_probe | ( | AVProbeData * | pd | ) | [static] |
| static int read_seek | ( | AVFormatContext * | s, | |
| int | stream_index, | |||
| int64_t | ts, | |||
| int | flags | |||
| ) | [static] |
Initial value:
{
.name = "jv",
.long_name = NULL_IF_CONFIG_SMALL("Bitmap Brothers JV"),
.priv_data_size = sizeof(JVDemuxContext),
.read_probe = read_probe,
.read_header = read_header,
.read_packet = read_packet,
.read_seek = read_seek,
}
1.5.8