#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 | 
| 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 | 
Definition in file bethsoftvid.c.
| #define BUFFER_PADDING_SIZE 1000 | 
| 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.
| 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.
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,
}
Definition at line 226 of file bethsoftvid.c.
 1.5.8
 1.5.8