#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
#include "libavcodec/bethsoftvideo.h"
Go to the source code of this file.
Data Structures | |
| struct | BVID_DemuxContext |
Defines | |
| #define | BVID_PALETTE_SIZE 3 * 256 |
| #define | DEFAULT_SAMPLE_RATE 11111 |
| #define | BUFFER_PADDING_SIZE 1000 |
Functions | |
| static int | vid_probe (AVProbeData *p) |
| static int | vid_read_header (AVFormatContext *s) |
| static int | read_frame (BVID_DemuxContext *vid, AVIOContext *pb, AVPacket *pkt, uint8_t block_type, AVFormatContext *s) |
| static int | vid_read_packet (AVFormatContext *s, AVPacket *pkt) |
| static int | vid_read_close (AVFormatContext *s) |
Variables | |
| AVInputFormat | ff_bethsoftvid_demuxer |
Definition in file bethsoftvid.c.
| #define BUFFER_PADDING_SIZE 1000 |
| #define BVID_PALETTE_SIZE 3 * 256 |
| #define DEFAULT_SAMPLE_RATE 11111 |
| static int read_frame | ( | BVID_DemuxContext * | vid, | |
| AVIOContext * | pb, | |||
| AVPacket * | pkt, | |||
| uint8_t | block_type, | |||
| AVFormatContext * | s | |||
| ) | [static] |
| static int vid_probe | ( | AVProbeData * | p | ) | [static] |
Definition at line 57 of file bethsoftvid.c.
| static int vid_read_close | ( | AVFormatContext * | s | ) | [static] |
Definition at line 277 of file bethsoftvid.c.
| static int vid_read_header | ( | AVFormatContext * | s | ) | [static] |
Definition at line 66 of file bethsoftvid.c.
| static int vid_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
Definition at line 201 of file bethsoftvid.c.
Initial value:
{
.name = "bethsoftvid",
.long_name = NULL_IF_CONFIG_SMALL("Bethesda Softworks VID format"),
.priv_data_size = sizeof(BVID_DemuxContext),
.read_probe = vid_probe,
.read_header = vid_read_header,
.read_packet = vid_read_packet,
.read_close = vid_read_close,
}
Definition at line 284 of file bethsoftvid.c.
1.5.8