Brute Force & Ignorance (.bfi) file demuxer. More...
Go to the source code of this file.
Data Structures | |
struct | BFIContext |
Typedefs | |
typedef struct BFIContext | BFIContext |
Functions | |
static int | bfi_probe (AVProbeData *p) |
static int | bfi_read_header (AVFormatContext *s, AVFormatParameters *ap) |
static int | bfi_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
AVInputFormat | ff_bfi_demuxer |
Brute Force & Ignorance (.bfi) file demuxer.
Definition in file bfi.c.
typedef struct BFIContext BFIContext |
static int bfi_probe | ( | AVProbeData * | p | ) | [static] |
static int bfi_read_header | ( | AVFormatContext * | s, |
AVFormatParameters * | ap | ||
) | [static] |
static int bfi_read_packet | ( | AVFormatContext * | s, |
AVPacket * | pkt | ||
) | [static] |
{ .name = "bfi", .long_name = NULL_IF_CONFIG_SMALL("Brute Force & Ignorance"), .priv_data_size = sizeof(BFIContext), .read_probe = bfi_probe, .read_header = bfi_read_header, .read_packet = bfi_read_packet, }