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

GIF encoder. More...

#include "libavutil/opt.h"
#include "libavutil/imgutils.h"
#include "avcodec.h"
#include "bytestream.h"
#include "internal.h"
#include "lzw.h"
#include "gif.h"
#include "put_bits.h"

Go to the source code of this file.

Data Structures

struct  GIFContext
 

Macros

#define BITSTREAM_WRITER_LE
 
#define OFFSET(x)   offsetof(GIFContext, x)
 
#define FLAGS   AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
 

Enumerations

enum  { GF_OFFSETTING = 1<<0, GF_TRANSDIFF = 1<<1 }
 

Functions

static int pick_palette_entry (const uint8_t *buf, int linesize, int w, int h)
 
static int gif_image_write_image (AVCodecContext *avctx, uint8_t **bytestream, uint8_t *end, const uint32_t *palette, const uint8_t *buf, const int linesize, AVPacket *pkt)
 
static av_cold int gif_encode_init (AVCodecContext *avctx)
 
static int gif_encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet)
 
static int gif_encode_close (AVCodecContext *avctx)
 

Variables

static const AVOption gif_options []
 
static const AVClass gif_class
 
AVCodec ff_gif_encoder
 

Detailed Description

GIF encoder.

See Also
http://www.w3.org/Graphics/GIF/spec-gif89a.txt

Definition in file gif.c.

Macro Definition Documentation

#define BITSTREAM_WRITER_LE

Definition at line 31 of file gif.c.

#define OFFSET (   x)    offsetof(GIFContext, x)

Definition at line 291 of file gif.c.

Definition at line 292 of file gif.c.

Enumeration Type Documentation

anonymous enum
Enumerator:
GF_OFFSETTING 
GF_TRANSDIFF 

Definition at line 52 of file gif.c.

Function Documentation

static int pick_palette_entry ( const uint8_t buf,
int  linesize,
int  w,
int  h 
)
static

Definition at line 57 of file gif.c.

Referenced by gif_image_write_image().

static int gif_image_write_image ( AVCodecContext avctx,
uint8_t **  bytestream,
uint8_t end,
const uint32_t *  palette,
const uint8_t buf,
const int  linesize,
AVPacket pkt 
)
static

Definition at line 73 of file gif.c.

Referenced by gif_encode_frame().

static av_cold int gif_encode_init ( AVCodecContext avctx)
static

Definition at line 210 of file gif.c.

static int gif_encode_frame ( AVCodecContext avctx,
AVPacket pkt,
const AVFrame pict,
int *  got_packet 
)
static

Definition at line 238 of file gif.c.

static int gif_encode_close ( AVCodecContext avctx)
static

Definition at line 278 of file gif.c.

Variable Documentation

const AVOption gif_options[]
static
Initial value:
= {
{ "gifflags", "set GIF flags", OFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = GF_OFFSETTING|GF_TRANSDIFF}, 0, INT_MAX, FLAGS, "flags" },
{ "offsetting", "enable picture offsetting", 0, AV_OPT_TYPE_CONST, {.i64=GF_OFFSETTING}, INT_MIN, INT_MAX, FLAGS, "flags" },
{ "transdiff", "enable transparency detection between frames", 0, AV_OPT_TYPE_CONST, {.i64=GF_TRANSDIFF}, INT_MIN, INT_MAX, FLAGS, "flags" },
{ NULL }
}

Definition at line 293 of file gif.c.

const AVClass gif_class
static
Initial value:
= {
.class_name = "GIF encoder",
.item_name = av_default_item_name,
.option = gif_options,
}

Definition at line 300 of file gif.c.

AVCodec ff_gif_encoder
Initial value:
= {
.name = "gif",
.long_name = NULL_IF_CONFIG_SMALL("GIF (Graphics Interchange Format)"),
.priv_data_size = sizeof(GIFContext),
.encode2 = gif_encode_frame,
.pix_fmts = (const enum AVPixelFormat[]){
},
.priv_class = &gif_class,
}

Definition at line 307 of file gif.c.