#include "libavutil/intreadwrite.h"#include "avformat.h"#include "internal.h"Go to the source code of this file.
Data Structures | |
| struct | yop_dec_context |
Typedefs | |
| typedef struct yop_dec_context | YopDecContext |
Functions | |
| static int | yop_probe (AVProbeData *probe_packet) |
| static int | yop_read_header (AVFormatContext *s) |
| static int | yop_read_packet (AVFormatContext *s, AVPacket *pkt) |
| static int | yop_read_close (AVFormatContext *s) |
| static int | yop_read_seek (AVFormatContext *s, int stream_index, int64_t timestamp, int flags) |
Variables | |
| AVInputFormat | ff_yop_demuxer |
| typedef struct yop_dec_context YopDecContext |
| static int yop_probe | ( | AVProbeData * | probe_packet | ) | [static] |
| static int yop_read_close | ( | AVFormatContext * | s | ) | [static] |
| static int yop_read_header | ( | AVFormatContext * | s | ) | [static] |
| static int yop_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
| static int yop_read_seek | ( | AVFormatContext * | s, | |
| int | stream_index, | |||
| int64_t | timestamp, | |||
| int | flags | |||
| ) | [static] |
Initial value:
{
.name = "yop",
.long_name = NULL_IF_CONFIG_SMALL("Psygnosis YOP"),
.priv_data_size = sizeof(YopDecContext),
.read_probe = yop_probe,
.read_header = yop_read_header,
.read_packet = yop_read_packet,
.read_close = yop_read_close,
.read_seek = yop_read_seek,
.extensions = "yop",
.flags = AVFMT_GENERIC_INDEX,
}
1.5.8