FFmpeg
Data Structures | Macros | Functions | Variables
webpenc.c File Reference
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"
#include "avformat.h"
#include "internal.h"
#include "mux.h"

Go to the source code of this file.

Data Structures

struct  WebpContext
 

Macros

#define OFFSET(x)   offsetof(WebpContext, x)
 
#define ENC   AV_OPT_FLAG_ENCODING_PARAM
 

Functions

static int webp_init (AVFormatContext *s)
 
static int is_animated_webp_packet (AVPacket *pkt)
 
static int flush (AVFormatContext *s, int trailer, int64_t pts)
 
static int webp_write_packet (AVFormatContext *s, AVPacket *pkt)
 
static int webp_write_trailer (AVFormatContext *s)
 

Variables

static const AVOption options []
 
static const AVClass webp_muxer_class
 
const FFOutputFormat ff_webp_muxer
 

Macro Definition Documentation

◆ OFFSET

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

Definition at line 198 of file webpenc.c.

◆ ENC

#define ENC   AV_OPT_FLAG_ENCODING_PARAM

Definition at line 199 of file webpenc.c.

Function Documentation

◆ webp_init()

static int webp_init ( AVFormatContext s)
static

Definition at line 37 of file webpenc.c.

◆ is_animated_webp_packet()

static int is_animated_webp_packet ( AVPacket pkt)
static

Definition at line 58 of file webpenc.c.

Referenced by webp_write_packet().

◆ flush()

static int flush ( AVFormatContext s,
int  trailer,
int64_t  pts 
)
static

Definition at line 79 of file webpenc.c.

Referenced by webp_write_packet(), and webp_write_trailer().

◆ webp_write_packet()

static int webp_write_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 147 of file webpenc.c.

◆ webp_write_trailer()

static int webp_write_trailer ( AVFormatContext s)
static

Definition at line 173 of file webpenc.c.

Variable Documentation

◆ options

const AVOption options[]
static
Initial value:
= {
{ "loop", "Number of times to loop the output: 0 - infinite loop", OFFSET(loop),
AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 65535, ENC },
{ NULL },
}

Definition at line 200 of file webpenc.c.

◆ webp_muxer_class

const AVClass webp_muxer_class
static
Initial value:
= {
.class_name = "WebP muxer",
.item_name = av_default_item_name,
.option = options,
}

Definition at line 206 of file webpenc.c.

◆ ff_webp_muxer

const FFOutputFormat ff_webp_muxer
Initial value:
= {
.p.name = "webp",
.p.long_name = NULL_IF_CONFIG_SMALL("WebP"),
.p.extensions = "webp",
.priv_data_size = sizeof(WebpContext),
.p.video_codec = AV_CODEC_ID_WEBP,
.init = webp_init,
.write_packet = webp_write_packet,
.write_trailer = webp_write_trailer,
.p.priv_class = &webp_muxer_class,
.p.flags = AVFMT_VARIABLE_FPS,
}

Definition at line 212 of file webpenc.c.

ENC
#define ENC
Definition: webpenc.c:199
AVFMT_VARIABLE_FPS
#define AVFMT_VARIABLE_FPS
Format allows variable fps.
Definition: avformat.h:482
loop
static int loop
Definition: ffplay.c:340
options
static const AVOption options[]
Definition: webpenc.c:200
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
NULL
#define NULL
Definition: coverity.c:32
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:237
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:115
webp_muxer_class
static const AVClass webp_muxer_class
Definition: webpenc.c:206
webp_write_packet
static int webp_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: webpenc.c:147
AV_CODEC_ID_WEBP
@ AV_CODEC_ID_WEBP
Definition: codec_id.h:224
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:225
webp_init
static int webp_init(AVFormatContext *s)
Definition: webpenc.c:37
WebpContext
Definition: webpenc.c:28
OFFSET
#define OFFSET(x)
Definition: webpenc.c:198
webp_write_trailer
static int webp_write_trailer(AVFormatContext *s)
Definition: webpenc.c:173