FFmpeg
Classes | Typedefs | Variables
jvdec.c File Reference

Bitmap Brothers JV video decoder. More...

#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "blockdsp.h"
#include "get_bits.h"
#include "internal.h"

Classes

struct  JvContext
 

Typedefs

typedef struct JvContext JvContext
 

Variables

AVCodec ff_jv_decoder
 

Detailed Description

Bitmap Brothers JV video decoder.

Author
Peter Ross pross.nosp@m.@xvi.nosp@m.d.org

Variable Documentation

§ ff_jv_decoder

AVCodec ff_jv_decoder
Initial value:
= {
.name = "jv",
.long_name = NULL_IF_CONFIG_SMALL("Bitmap Brothers JV video"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_JV,
.priv_data_size = sizeof(JvContext),
.init = decode_init,
.close = decode_close,
.decode = decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: jvdec.c:35
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959