Libav
Data Structures | Functions | Variables
sgidec.c File Reference
#include "libavutil/imgutils.h"
#include "avcodec.h"
#include "bytestream.h"
#include "internal.h"
#include "sgi.h"

Go to the source code of this file.

Data Structures

struct  SgiState
 

Functions

static int expand_rle_row8 (SgiState *s, uint8_t *out_buf, int len, int pixelstride)
 Expand an RLE row into a channel. More...
 
static int expand_rle_row16 (SgiState *s, uint16_t *out_buf, int len, int pixelstride)
 
static int read_rle_sgi (uint8_t *out_buf, SgiState *s)
 Read a run length encoded SGI image. More...
 
static int read_uncompressed_sgi (unsigned char *out_buf, SgiState *s)
 Read an uncompressed SGI image. More...
 
static int decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int sgi_decode_init (AVCodecContext *avctx)
 

Variables

AVCodec ff_sgi_decoder
 

Function Documentation

§ expand_rle_row8()

static int expand_rle_row8 ( SgiState s,
uint8_t out_buf,
int  len,
int  pixelstride 
)
static

Expand an RLE row into a channel.

Parameters
sthe current image state
out_bufPoints to one line after the output buffer.
lenlength of out_buf in bytes
pixelstridepixel stride of input buffer
Returns
size of output in bytes, -1 if buffer overflows

Definition at line 46 of file sgidec.c.

Referenced by read_rle_sgi().

§ expand_rle_row16()

static int expand_rle_row16 ( SgiState s,
uint16_t *  out_buf,
int  len,
int  pixelstride 
)
static

Definition at line 84 of file sgidec.c.

Referenced by read_rle_sgi().

§ read_rle_sgi()

static int read_rle_sgi ( uint8_t out_buf,
SgiState s 
)
static

Read a run length encoded SGI image.

Parameters
out_bufoutput buffer
sthe current image state
Returns
0 if no error, else return error number.

Definition at line 130 of file sgidec.c.

Referenced by decode_frame().

§ read_uncompressed_sgi()

static int read_uncompressed_sgi ( unsigned char *  out_buf,
SgiState s 
)
static

Read an uncompressed SGI image.

Parameters
out_bufoutput buffer
sthe current image state
Returns
0 if read success, otherwise return -1.

Definition at line 168 of file sgidec.c.

Referenced by decode_frame().

§ decode_frame()

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

Definition at line 201 of file sgidec.c.

§ sgi_decode_init()

static av_cold int sgi_decode_init ( AVCodecContext avctx)
static

Definition at line 285 of file sgidec.c.

Variable Documentation

§ ff_sgi_decoder

AVCodec ff_sgi_decoder
Initial value:
= {
.name = "sgi",
.long_name = NULL_IF_CONFIG_SMALL("SGI image"),
.priv_data_size = sizeof(SgiState),
.capabilities = CODEC_CAP_DR1,
}
static int decode(MimicContext *ctx, int quality, int num_coeffs, int is_iframe)
Definition: mimic.c:275
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:684
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:145
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: sgidec.c:201
static av_cold int sgi_decode_init(AVCodecContext *avctx)
Definition: sgidec.c:285
static av_cold int init(AVCodecParserContext *s)
Definition: h264_parser.c:499

Definition at line 294 of file sgidec.c.