FFmpeg
Functions | Variables
lrcenc.c File Reference
#include <inttypes.h>
#include <stdint.h>
#include <string.h>
#include "avformat.h"
#include "internal.h"
#include "lrc.h"
#include "metadata.h"
#include "subtitles.h"
#include "version.h"
#include "libavutil/bprint.h"
#include "libavutil/dict.h"
#include "libavutil/log.h"
#include "libavutil/macros.h"

Go to the source code of this file.

Functions

static int lrc_write_header (AVFormatContext *s)
 
static int lrc_write_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

AVOutputFormat ff_lrc_muxer
 

Function Documentation

◆ lrc_write_header()

static int lrc_write_header ( AVFormatContext s)
static

Definition at line 37 of file lrcenc.c.

◆ lrc_write_packet()

static int lrc_write_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 86 of file lrcenc.c.

Variable Documentation

◆ ff_lrc_muxer

AVOutputFormat ff_lrc_muxer
Initial value:
= {
.name = "lrc",
.long_name = NULL_IF_CONFIG_SMALL("LRC lyrics"),
.extensions = "lrc",
.priv_data_size = 0,
.write_header = lrc_write_header,
.write_packet = lrc_write_packet,
.subtitle_codec = AV_CODEC_ID_SUBRIP
}

Definition at line 143 of file lrcenc.c.

AVFMT_VARIABLE_FPS
#define AVFMT_VARIABLE_FPS
Format allows variable fps.
Definition: avformat.h:465
lrc_write_packet
static int lrc_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: lrcenc.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:117
AVFMT_GLOBALHEADER
#define AVFMT_GLOBALHEADER
Format wants global header.
Definition: avformat.h:461
AV_CODEC_ID_SUBRIP
@ AV_CODEC_ID_SUBRIP
Definition: codec_id.h:541
AVFMT_TS_NEGATIVE
#define AVFMT_TS_NEGATIVE
Format allows muxing negative timestamps.
Definition: avformat.h:475
AVFMT_TS_NONSTRICT
#define AVFMT_TS_NONSTRICT
Format does not require strictly increasing timestamps, but they must still be monotonic.
Definition: avformat.h:472
lrc_write_header
static int lrc_write_header(AVFormatContext *s)
Definition: lrcenc.c:37