FFmpeg
Data Structures | Macros | Functions | Variables
s302m.c File Reference
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"
#include "libavutil/log.h"
#include "avcodec.h"
#include "internal.h"
#include "mathops.h"

Go to the source code of this file.

Data Structures

struct  S302Context
 

Macros

#define AES3_HEADER_LEN   4
 
#define FLAGS   AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_DECODING_PARAM
 

Functions

static int s302m_parse_frame_header (AVCodecContext *avctx, const uint8_t *buf, int buf_size)
 
static int s302m_decode_frame (AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
 

Variables

static const AVOption s302m_options []
 
static const AVClass s302m_class
 
AVCodec ff_s302m_decoder
 

Macro Definition Documentation

◆ AES3_HEADER_LEN

#define AES3_HEADER_LEN   4

Definition at line 30 of file s302m.c.

◆ FLAGS

Definition at line 204 of file s302m.c.

Function Documentation

◆ s302m_parse_frame_header()

static int s302m_parse_frame_header ( AVCodecContext avctx,
const uint8_t buf,
int  buf_size 
)
static

Definition at line 37 of file s302m.c.

Referenced by s302m_decode_frame().

◆ s302m_decode_frame()

static int s302m_decode_frame ( AVCodecContext avctx,
void *  data,
int got_frame_ptr,
AVPacket avpkt 
)
static

Definition at line 92 of file s302m.c.

Variable Documentation

◆ s302m_options

const AVOption s302m_options[]
static
Initial value:
= {
{"non_pcm_mode", "Chooses what to do with NON-PCM", 0x42, AV_OPT_TYPE_INT, {.i64 = 3}, 0, 3, FLAGS, "non_pcm_mode"},
{"copy" , "Pass NON-PCM through unchanged" , 0, AV_OPT_TYPE_CONST, {.i64 = 0}, 0, 3, FLAGS, "non_pcm_mode"},
{"drop" , "Drop NON-PCM" , 0, AV_OPT_TYPE_CONST, {.i64 = 1}, 0, 3, FLAGS, "non_pcm_mode"},
{"decode_copy" , "Decode if possible else passthrough", 0, AV_OPT_TYPE_CONST, {.i64 = 2}, 0, 3, FLAGS, "non_pcm_mode"},
{"decode_drop" , "Decode if possible else drop" , 0, AV_OPT_TYPE_CONST, {.i64 = 3}, 0, 3, FLAGS, "non_pcm_mode"},
{NULL}
}

Definition at line 205 of file s302m.c.

◆ s302m_class

const AVClass s302m_class
static
Initial value:
= {
.class_name = "SMPTE 302M Decoder",
.item_name = av_default_item_name,
.option = s302m_options,
}

Definition at line 214 of file s302m.c.

◆ ff_s302m_decoder

AVCodec ff_s302m_decoder
Initial value:
= {
.name = "s302m",
.long_name = NULL_IF_CONFIG_SMALL("SMPTE 302M"),
.priv_data_size = sizeof(S302Context),
.capabilities = AV_CODEC_CAP_CHANNEL_CONF |
.priv_class = &s302m_class,
}

Definition at line 221 of file s302m.c.

s302m_class
static const AVClass s302m_class
Definition: s302m.c:214
AV_CODEC_ID_S302M
@ AV_CODEC_ID_S302M
Definition: codec_id.h:339
FLAGS
#define FLAGS
Definition: s302m.c:204
decode
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
Definition: decode_audio.c:71
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
NULL
#define NULL
Definition: coverity.c:32
S302Context
Definition: s302m.c:32
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:235
AV_CODEC_CAP_CHANNEL_CONF
#define AV_CODEC_CAP_CHANNEL_CONF
Codec should fill in channel configuration and samplerate instead of container.
Definition: codec.h:104
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
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
s302m_decode_frame
static int s302m_decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
Definition: s302m.c:92
s302m_options
static const AVOption s302m_options[]
Definition: s302m.c:205
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:225
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:234