#include "avcodec.h"
#include "get_bits.h"
#include "golomb.h"
#include "mathops.h"
Go to the source code of this file.
Data Structures | |
struct | LOCOContext |
struct | RICEContext |
Enumerations | |
enum | LOCO_MODE { LOCO_UNKN = 0, LOCO_CYUY2 = -1, LOCO_CRGB = -2, LOCO_CRGBA = -3, LOCO_CYV12 = -4, LOCO_YUY2 = 1, LOCO_UYVY = 2, LOCO_RGB = 3, LOCO_RGBA = 4, LOCO_YV12 = 5 } |
Functions | |
static int | loco_get_rice_param (RICEContext *r) |
static void | loco_update_rice_param (RICEContext *r, int val) |
static int | loco_get_rice (RICEContext *r) |
static int | loco_predict (uint8_t *data, int stride, int step) |
static int | loco_decode_plane (LOCOContext *l, uint8_t *data, int width, int height, int stride, const uint8_t *buf, int buf_size, int step) |
static int | decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
static av_cold int | decode_init (AVCodecContext *avctx) |
static av_cold int | decode_end (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_loco_decoder |
Definition in file loco.c.
enum LOCO_MODE |
static av_cold int decode_end | ( | AVCodecContext * | avctx | ) | [static] |
static int decode_frame | ( | AVCodecContext * | avctx, | |
void * | data, | |||
int * | data_size, | |||
AVPacket * | avpkt | |||
) | [static] |
static av_cold int decode_init | ( | AVCodecContext * | avctx | ) | [static] |
static int loco_decode_plane | ( | LOCOContext * | l, | |
uint8_t * | data, | |||
int | width, | |||
int | height, | |||
int | stride, | |||
const uint8_t * | buf, | |||
int | buf_size, | |||
int | step | |||
) | [static] |
static int loco_get_rice | ( | RICEContext * | r | ) | [inline, static] |
static int loco_get_rice_param | ( | RICEContext * | r | ) | [static] |
static int loco_predict | ( | uint8_t * | data, | |
int | stride, | |||
int | step | |||
) | [inline, static] |
static void loco_update_rice_param | ( | RICEContext * | r, | |
int | val | |||
) | [inline, static] |
Initial value:
{ .name = "loco", .type = AVMEDIA_TYPE_VIDEO, .id = CODEC_ID_LOCO, .priv_data_size = sizeof(LOCOContext), .init = decode_init, .close = decode_end, .decode = decode_frame, .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("LOCO"), }