#include "avformat.h"
#include "internal.h"
#include "libavutil/avassert.h"
#include "libavutil/imgutils.h"
#include "libavutil/log.h"
#include "libavutil/opt.h"
Go to the source code of this file.
static int gif_image_write_header |
( |
AVIOContext * |
pb, |
|
|
int |
width, |
|
|
int |
height, |
|
|
int |
loop_count, |
|
|
uint32_t * |
palette |
|
) |
| |
|
static |
Definition at line 79 of file gif.c.
Initial value:= {
{
"loop",
"Number of times to loop the output: -1 - no loop, 0 - infinite loop",
OFFSET(
loop),
{
"final_delay",
"Force delay (in ms) after the last frame",
OFFSET(last_delay),
{ NULL },
}
Definition at line 194 of file gif.c.
Initial value:= {
.class_name = "GIF muxer",
}
#define LIBAVUTIL_VERSION_INT
const char * av_default_item_name(void *ctx)
Return the context name.
const OptionDef options[]
Definition at line 202 of file gif.c.
Initial value:= {
.name = "gif",
.mime_type = "image/gif",
.extensions = "gif",
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static int write_trailer(AVFormatContext *s1)
static void write_header(FFV1Context *f)
static int write_packet(AVFormatContext *s1, AVPacket *pkt)
Definition at line 209 of file gif.c.