FFmpeg
|
LOCO codec. More...
#include "avcodec.h"
#include "get_bits.h"
#include "golomb.h"
#include "internal.h"
#include "mathops.h"
Go to the source code of this file.
Data Structures | |
struct | LOCOContext |
struct | RICEContext |
Macros | |
#define | ADVANCE_BY_DECODED |
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 *got_frame, AVPacket *avpkt) |
static av_cold int | decode_init (AVCodecContext *avctx) |
static av_cold int | decode_end (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_loco_decoder |
LOCO codec.
Definition in file loco.c.
#define ADVANCE_BY_DECODED |
Referenced by decode_frame().
enum LOCO_MODE |
|
static |
Definition at line 50 of file loco.c.
Referenced by loco_get_rice().
|
inlinestatic |
Definition at line 63 of file loco.c.
Referenced by loco_get_rice().
|
inlinestatic |
Definition at line 74 of file loco.c.
Referenced by loco_decode_plane().
|
inlinestatic |
Definition at line 109 of file loco.c.
Referenced by loco_decode_plane().
|
static |
Definition at line 120 of file loco.c.
Referenced by decode_frame().
|
static |
|
static |
|
static |
AVCodec ff_loco_decoder |