sgienc.c File Reference
#include "avcodec.h"
#include "bytestream.h"
#include "internal.h"
#include "sgi.h"
#include "rle.h"

Go to the source code of this file.

Data Structures

struct  SgiContext
 

Macros

#define SGI_SINGLE_CHAN   2
 
#define SGI_MULTI_CHAN   3
 

Typedefs

typedef struct SgiContext SgiContext
 

Functions

static av_cold int encode_init (AVCodecContext *avctx)
 
static int encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
 

Variables

AVCodec ff_sgi_encoder
 

Macro Definition Documentation

#define SGI_MULTI_CHAN   3

Definition at line 29 of file sgienc.c.

Referenced by encode_frame().

#define SGI_SINGLE_CHAN   2

Definition at line 28 of file sgienc.c.

Referenced by encode_frame().

Typedef Documentation

typedef struct SgiContext SgiContext

Function Documentation

static int encode_frame ( AVCodecContext avctx,
AVPacket pkt,
const AVFrame frame,
int *  got_packet 
)
static

Definition at line 45 of file sgienc.c.

static av_cold int encode_init ( AVCodecContext avctx)
static

Definition at line 35 of file sgienc.c.

Variable Documentation

AVCodec ff_sgi_encoder
Initial value:
= {
.name = "sgi",
.priv_data_size = sizeof(SgiContext),
.encode2 = encode_frame,
.pix_fmts = (const enum AVPixelFormat[]){
},
.long_name = NULL_IF_CONFIG_SMALL("SGI image"),
}

Definition at line 173 of file sgienc.c.