Bethesda Softworks VID (.vid) file demuxer. More...
#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 | BUFFER_PADDING_SIZE 1000 |
Typedefs | |
typedef struct BVID_DemuxContext | BVID_DemuxContext |
Functions | |
static int | vid_probe (AVProbeData *p) |
static int | vid_read_header (AVFormatContext *s, AVFormatParameters *ap) |
static int | read_frame (BVID_DemuxContext *vid, AVIOContext *pb, AVPacket *pkt, uint8_t block_type, AVFormatContext *s, int npixels) |
static int | vid_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
AVInputFormat | ff_bethsoftvid_demuxer |
Bethesda Softworks VID (.vid) file demuxer.
Definition in file bethsoftvid.c.
#define BUFFER_PADDING_SIZE 1000 |
Definition at line 100 of file bethsoftvid.c.
Referenced by read_frame().
typedef struct BVID_DemuxContext BVID_DemuxContext |
static int read_frame | ( | BVID_DemuxContext * | vid, |
AVIOContext * | pb, | ||
AVPacket * | pkt, | ||
uint8_t | block_type, | ||
AVFormatContext * | s, | ||
int | npixels | ||
) | [static] |
Definition at line 101 of file bethsoftvid.c.
Referenced by vid_read_packet().
static int vid_probe | ( | AVProbeData * | p | ) | [static] |
Definition at line 51 of file bethsoftvid.c.
static int vid_read_header | ( | AVFormatContext * | s, |
AVFormatParameters * | ap | ||
) | [static] |
Definition at line 60 of file bethsoftvid.c.
static int vid_read_packet | ( | AVFormatContext * | s, |
AVPacket * | pkt | ||
) | [static] |
Definition at line 174 of file bethsoftvid.c.
{ .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, }
Definition at line 226 of file bethsoftvid.c.