#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | 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 |
Definition in file bfi.c.
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] |
Initial value:
{ .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, }