FFmpeg
Functions | Variables
ffmetaenc.c File Reference
#include <inttypes.h>
#include "avformat.h"
#include "ffmeta.h"
#include "libavutil/dict.h"

Go to the source code of this file.

Functions

static void write_escape_str (AVIOContext *s, const uint8_t *str)
 
static void write_tags (AVIOContext *s, AVDictionary *m)
 
static int write_header (AVFormatContext *s)
 
static int write_trailer (AVFormatContext *s)
 
static int write_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

AVOutputFormat ff_ffmetadata_muxer
 

Function Documentation

◆ write_escape_str()

static void write_escape_str ( AVIOContext s,
const uint8_t str 
)
static

Definition at line 29 of file ffmetaenc.c.

Referenced by write_tags().

◆ write_tags()

static void write_tags ( AVIOContext s,
AVDictionary m 
)
static

Definition at line 41 of file ffmetaenc.c.

Referenced by write_trailer().

◆ write_header()

static int write_header ( AVFormatContext s)
static

Definition at line 52 of file ffmetaenc.c.

◆ write_trailer()

static int write_trailer ( AVFormatContext s)
static

Definition at line 61 of file ffmetaenc.c.

◆ write_packet()

static int write_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 86 of file ffmetaenc.c.

Variable Documentation

◆ ff_ffmetadata_muxer

AVOutputFormat ff_ffmetadata_muxer
Initial value:
= {
.name = "ffmetadata",
.long_name = NULL_IF_CONFIG_SMALL("FFmpeg metadata in text"),
.extensions = "ffmeta",
.write_header = write_header,
.write_packet = write_packet,
.write_trailer = write_trailer,
}

Definition at line 91 of file ffmetaenc.c.

AVFMT_NOTIMESTAMPS
#define AVFMT_NOTIMESTAMPS
Format does not need / have any timestamps.
Definition: avformat.h:467
write_header
static int write_header(AVFormatContext *s)
Definition: ffmetaenc.c:52
write_packet
static int write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: ffmetaenc.c:86
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:188
AVFMT_NOSTREAMS
#define AVFMT_NOSTREAMS
Format does not require any streams.
Definition: avformat.h:472
write_trailer
static int write_trailer(AVFormatContext *s)
Definition: ffmetaenc.c:61