FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Enumerations | Functions | Variables
loco.c File Reference

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)
 
static int loco_decode_plane (LOCOContext *l, uint8_t *data, int width, int height, int stride, const uint8_t *buf, int buf_size)
 
static void rotate_faulty_loco (uint8_t *data, int width, int height, int stride)
 
static int decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int decode_init (AVCodecContext *avctx)
 

Variables

AVCodec ff_loco_decoder
 

Detailed Description

LOCO codec.

Definition in file loco.c.

Macro Definition Documentation

#define ADVANCE_BY_DECODED
Value:
do { \
if (decoded < 0 || decoded >= buf_size) goto buf_too_small; \
buf += decoded; buf_size -= decoded; \
} while(0)
void * buf
Definition: avisynth_c.h:690
if(ret< 0)
Definition: vf_mcdeint.c:279

Referenced by decode_frame().

Enumeration Type Documentation

enum LOCO_MODE
Enumerator
LOCO_UNKN 
LOCO_CYUY2 
LOCO_CRGB 
LOCO_CRGBA 
LOCO_CYV12 
LOCO_YUY2 
LOCO_UYVY 
LOCO_RGB 
LOCO_RGBA 
LOCO_YV12 

Definition at line 33 of file loco.c.

Function Documentation

static int loco_get_rice_param ( RICEContext r)
static

Definition at line 59 of file loco.c.

Referenced by loco_get_rice().

static void loco_update_rice_param ( RICEContext r,
int  val 
)
inlinestatic

Definition at line 72 of file loco.c.

Referenced by loco_get_rice().

static int loco_get_rice ( RICEContext r)
inlinestatic

Definition at line 83 of file loco.c.

Referenced by loco_decode_plane().

static int loco_predict ( uint8_t data,
int  stride 
)
inlinestatic

Definition at line 117 of file loco.c.

Referenced by loco_decode_plane().

static int loco_decode_plane ( LOCOContext l,
uint8_t data,
int  width,
int  height,
int  stride,
const uint8_t buf,
int  buf_size 
)
static

Definition at line 128 of file loco.c.

Referenced by decode_frame().

static void rotate_faulty_loco ( uint8_t data,
int  width,
int  height,
int  stride 
)
static

Definition at line 174 of file loco.c.

Referenced by decode_frame().

static int decode_frame ( AVCodecContext avctx,
void data,
int got_frame,
AVPacket avpkt 
)
static

Definition at line 190 of file loco.c.

static av_cold int decode_init ( AVCodecContext avctx)
static

Definition at line 274 of file loco.c.

Variable Documentation

AVCodec ff_loco_decoder
Initial value:
= {
.name = "loco",
.long_name = NULL_IF_CONFIG_SMALL("LOCO"),
.priv_data_size = sizeof(LOCOContext),
.capabilities = AV_CODEC_CAP_DR1,
}
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
Definition: decode_audio.c:42
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
static av_cold int decode_init(AVCodecContext *avctx)
Definition: loco.c:274
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: loco.c:190
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:968

Definition at line 327 of file loco.c.