FFmpeg
Data Structures | Macros | Functions | Variables
gifdec.c File Reference
#include "avformat.h"
#include "libavutil/bprint.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"
#include "internal.h"
#include "libavcodec/gif.h"

Go to the source code of this file.

Data Structures

struct  GIFDemuxContext
 

Macros

#define GIF_DEFAULT_DELAY   10
 Major web browsers display gifs at ~10-15fps when rate is not explicitly set or have too low values. More...
 
#define GIF_MIN_DELAY   2
 By default delay values less than this threshold considered to be invalid. More...
 

Functions

static int gif_probe (const AVProbeData *p)
 
static int resync (AVIOContext *pb)
 
static int gif_skip_subblocks (AVIOContext *pb)
 
static int gif_read_header (AVFormatContext *s)
 
static int gif_read_ext (AVFormatContext *s)
 
static int gif_read_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

static const AVOption options []
 
static const AVClass demuxer_class
 
const AVInputFormat ff_gif_demuxer
 

Detailed Description

GIF demuxer.

Definition in file gifdec.c.

Macro Definition Documentation

◆ GIF_DEFAULT_DELAY

#define GIF_DEFAULT_DELAY   10

Major web browsers display gifs at ~10-15fps when rate is not explicitly set or have too low values.

We assume default rate to be 10. Default delay = 100hundredths of second / 10fps = 10hos per frame.

Definition at line 66 of file gifdec.c.

◆ GIF_MIN_DELAY

#define GIF_MIN_DELAY   2

By default delay values less than this threshold considered to be invalid.

Definition at line 70 of file gifdec.c.

Function Documentation

◆ gif_probe()

static int gif_probe ( const AVProbeData p)
static

Definition at line 72 of file gifdec.c.

◆ resync()

static int resync ( AVIOContext pb)
static

Definition at line 85 of file gifdec.c.

Referenced by gif_read_header(), and gif_read_packet().

◆ gif_skip_subblocks()

static int gif_skip_subblocks ( AVIOContext pb)
static

Definition at line 98 of file gifdec.c.

Referenced by gif_read_ext(), gif_read_header(), and gif_read_packet().

◆ gif_read_header()

static int gif_read_header ( AVFormatContext s)
static

Definition at line 110 of file gifdec.c.

◆ gif_read_ext()

static int gif_read_ext ( AVFormatContext s)
static

Definition at line 208 of file gifdec.c.

Referenced by gif_read_packet().

◆ gif_read_packet()

static int gif_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 264 of file gifdec.c.

Variable Documentation

◆ options

const AVOption options[]
static
Initial value:
= {
{ "min_delay" , "minimum valid delay between frames (in hundredths of second)", 0x42 , AV_OPT_TYPE_INT, {.i64 = GIF_MIN_DELAY} , 0, 100 * 60, AV_OPT_FLAG_DECODING_PARAM },
{ "max_gif_delay", "maximum valid delay between frames (in hundredths of seconds)", 0x42 , AV_OPT_TYPE_INT, {.i64 = 65535} , 0, 65535 , AV_OPT_FLAG_DECODING_PARAM },
{ "default_delay", "default delay between frames (in hundredths of second)" , 0x42, AV_OPT_TYPE_INT, {.i64 = GIF_DEFAULT_DELAY}, 0, 100 * 60, AV_OPT_FLAG_DECODING_PARAM },
{ "ignore_loop" , "ignore loop setting (netscape extension)" , 0x42 , AV_OPT_TYPE_BOOL,{.i64 = 1} , 0, 1, AV_OPT_FLAG_DECODING_PARAM },
{ NULL },
}

Definition at line 385 of file gifdec.c.

◆ demuxer_class

const AVClass demuxer_class
static
Initial value:
= {
.class_name = "GIF demuxer",
.item_name = av_default_item_name,
.option = options,
}

Definition at line 393 of file gifdec.c.

◆ ff_gif_demuxer

const AVInputFormat ff_gif_demuxer
Initial value:
= {
.name = "gif",
.long_name = NULL_IF_CONFIG_SMALL("CompuServe Graphics Interchange Format (GIF)"),
.priv_data_size = sizeof(GIFDemuxContext),
.priv_class = &demuxer_class,
}

Definition at line 401 of file gifdec.c.

GIF_MIN_DELAY
#define GIF_MIN_DELAY
By default delay values less than this threshold considered to be invalid.
Definition: gifdec.c:70
options
static const AVOption options[]
Definition: gifdec.c:385
GIFDemuxContext
Definition: gifdec.c:34
gif_read_header
static int gif_read_header(AVFormatContext *s)
Definition: gifdec.c:110
AVFMT_GENERIC_INDEX
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:476
AV_CLASS_CATEGORY_DEMUXER
@ AV_CLASS_CATEGORY_DEMUXER
Definition: log.h:33
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:527
NULL
#define NULL
Definition: coverity.c:32
demuxer_class
static const AVClass demuxer_class
Definition: gifdec.c:393
read_probe
static int read_probe(const AVProbeData *pd)
Definition: jvdec.c:55
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:235
gif_read_packet
static int gif_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: gifdec.c:264
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
AV_OPT_FLAG_DECODING_PARAM
#define AV_OPT_FLAG_DECODING_PARAM
a generic parameter which can be set by the user for demuxing or decoding
Definition: opt.h:278
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:224
gif_probe
static int gif_probe(const AVProbeData *p)
Definition: gifdec.c:72
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Definition: opt.h:241
GIF_DEFAULT_DELAY
#define GIF_DEFAULT_DELAY
Major web browsers display gifs at ~10-15fps when rate is not explicitly set or have too low values.
Definition: gifdec.c:66
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:561