FFmpeg
Loading...
Searching...
No Matches
ffmetaenc.c File Reference
#include <inttypes.h>
#include "avformat.h"
#include "ffmeta.h"
#include "mux.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

const FFOutputFormat ff_ffmetadata_muxer
 

Function Documentation

◆ write_escape_str()

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

Definition at line 30 of file ffmetaenc.c.

Referenced by write_tags().

◆ write_tags()

static void write_tags ( AVIOContext * s,
AVDictionary * m )
static

Definition at line 42 of file ffmetaenc.c.

Referenced by write_trailer().

◆ write_header()

static int write_header ( AVFormatContext * s)
static

Definition at line 53 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

const FFOutputFormat ff_ffmetadata_muxer
Initial value:
= {
.p.name = "ffmetadata",
.p.long_name = NULL_IF_CONFIG_SMALL("FFmpeg metadata in text"),
.p.extensions = "ffmeta",
.write_header = write_header,
.write_packet = write_packet,
.write_trailer = write_trailer,
}
#define AVFMT_NOSTREAMS
Format does not require any streams.
Definition avformat.h:503
#define AVFMT_NOTIMESTAMPS
Format does not need / have any timestamps.
Definition avformat.h:498
static int write_packet(Muxer *mux, OutputStream *ost, AVPacket *pkt)
Definition ffmpeg_mux.c:204
static void write_header(FFV1Context *f)
Definition ffv1enc.c:384
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
static int write_trailer(AVFormatContext *s1)
Definition v4l2enc.c:101

Definition at line 91 of file ffmetaenc.c.