FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
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

static int lrc_write_header ( AVFormatContext s)
static

Definition at line 37 of file lrcenc.c.

static int lrc_write_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 86 of file lrcenc.c.

Variable Documentation

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
}
#define AVFMT_TS_NONSTRICT
Format does not require strictly increasing timestamps, but they must still be monotonic.
Definition: avformat.h:496
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:179
#define AVFMT_GLOBALHEADER
Format wants global header.
Definition: avformat.h:485
static int lrc_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: lrcenc.c:86
static int lrc_write_header(AVFormatContext *s)
Definition: lrcenc.c:37
#define AVFMT_VARIABLE_FPS
Format allows variable fps.
Definition: avformat.h:489
#define AVFMT_TS_NEGATIVE
Format allows muxing negative timestamps.
Definition: avformat.h:501

Definition at line 143 of file lrcenc.c.