FFmpeg
Classes | Typedefs | Variables
bfi.c File Reference

Brute Force & Ignorance (.bfi) video decoder. More...

#include "libavutil/common.h"
#include "avcodec.h"
#include "bytestream.h"
#include "internal.h"

Classes

struct  BFIContext
 

Typedefs

typedef struct BFIContext BFIContext
 

Variables

AVCodec ff_bfi_decoder
 

Detailed Description

Brute Force & Ignorance (.bfi) video decoder.

Author
Sisir Koppaka ( sisir.koppaka at gmail dot com )
See also
http://wiki.multimedia.cx/index.php?title=BFI

Variable Documentation

§ ff_bfi_decoder

AVCodec ff_bfi_decoder
Initial value:
= {
.name = "bfi",
.long_name = NULL_IF_CONFIG_SMALL("Brute Force & Ignorance"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_BFI,
.priv_data_size = sizeof(BFIContext),
.init = bfi_decode_init,
.close = bfi_decode_close,
.decode = bfi_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
}
Definition: bfi.c:34
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
Definition: internal.h:40
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959