FFmpeg
Loading...
Searching...
No Matches
omaenc.c File Reference
#include "avformat.h"
#include "avio_internal.h"
#include "id3v2.h"
#include "internal.h"
#include "mux.h"
#include "oma.h"
#include "rawenc.h"

Go to the source code of this file.

Functions

static av_cold int oma_write_header (AVFormatContext *s)
 

Variables

const FFOutputFormat ff_oma_muxer
 

Function Documentation

◆ oma_write_header()

static av_cold int oma_write_header ( AVFormatContext * s)
static

Definition at line 31 of file omaenc.c.

Variable Documentation

◆ ff_oma_muxer

const FFOutputFormat ff_oma_muxer
Initial value:
= {
.p.name = "oma",
.p.long_name = NULL_IF_CONFIG_SMALL("Sony OpenMG audio"),
.p.mime_type = "audio/x-oma",
.p.extensions = "oma",
.p.video_codec = AV_CODEC_ID_NONE,
.p.audio_codec = AV_CODEC_ID_ATRAC3,
.p.subtitle_codec = AV_CODEC_ID_NONE,
.write_header = oma_write_header,
.write_packet = ff_raw_write_packet,
.p.codec_tag = ff_oma_codec_tags_list,
.p.flags = AVFMT_NOTIMESTAMPS,
.flags_internal = FF_OFMT_FLAG_MAX_ONE_OF_EACH,
}
#define AVFMT_NOTIMESTAMPS
Format does not need / have any timestamps.
Definition avformat.h:498
@ AV_CODEC_ID_NONE
Definition codec_id.h:48
@ AV_CODEC_ID_ATRAC3
Definition codec_id.h:484
int ff_raw_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition rawenc.c:31
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
#define FF_OFMT_FLAG_MAX_ONE_OF_EACH
If this flag is set, it indicates that for each codec type whose corresponding default codec (i....
Definition mux.h:50
const AVCodecTag *const ff_oma_codec_tags_list[]
Definition oma.c:39
static av_cold int oma_write_header(AVFormatContext *s)
Definition omaenc.c:31

Definition at line 95 of file omaenc.c.