FFmpeg
Data Structures | Macros | Functions | Variables
mpeg2_metadata_bsf.c File Reference
#include "libavutil/avstring.h"
#include "libavutil/common.h"
#include "libavutil/opt.h"
#include "bsf.h"
#include "cbs.h"
#include "cbs_mpeg2.h"
#include "mpeg12.h"

Go to the source code of this file.

Data Structures

struct  MPEG2MetadataContext
 

Macros

#define VALIDITY_CHECK(name)
 
#define OFFSET(x)   offsetof(MPEG2MetadataContext, x)
 
#define FLAGS   (AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_BSF_PARAM)
 

Functions

static int mpeg2_metadata_update_fragment (AVBSFContext *bsf, CodedBitstreamFragment *frag)
 
static int mpeg2_metadata_filter (AVBSFContext *bsf, AVPacket *pkt)
 
static int mpeg2_metadata_init (AVBSFContext *bsf)
 
static void mpeg2_metadata_close (AVBSFContext *bsf)
 

Variables

static const AVOption mpeg2_metadata_options []
 
static const AVClass mpeg2_metadata_class
 
static enum AVCodecID mpeg2_metadata_codec_ids []
 
const AVBitStreamFilter ff_mpeg2_metadata_bsf
 

Macro Definition Documentation

◆ VALIDITY_CHECK

#define VALIDITY_CHECK (   name)
Value:
do { \
if (!ctx->name) { \
av_log(bsf, AV_LOG_ERROR, "The value 0 for %s is " \
"forbidden.\n", #name); \
return AVERROR(EINVAL); \
} \
} while (0)

◆ OFFSET

#define OFFSET (   x)    offsetof(MPEG2MetadataContext, x)

Definition at line 266 of file mpeg2_metadata_bsf.c.

◆ FLAGS

Definition at line 267 of file mpeg2_metadata_bsf.c.

Function Documentation

◆ mpeg2_metadata_update_fragment()

static int mpeg2_metadata_update_fragment ( AVBSFContext bsf,
CodedBitstreamFragment frag 
)
static

Definition at line 49 of file mpeg2_metadata_bsf.c.

Referenced by mpeg2_metadata_filter(), and mpeg2_metadata_init().

◆ mpeg2_metadata_filter()

static int mpeg2_metadata_filter ( AVBSFContext bsf,
AVPacket pkt 
)
static

Definition at line 172 of file mpeg2_metadata_bsf.c.

◆ mpeg2_metadata_init()

static int mpeg2_metadata_init ( AVBSFContext bsf)
static

Definition at line 210 of file mpeg2_metadata_bsf.c.

◆ mpeg2_metadata_close()

static void mpeg2_metadata_close ( AVBSFContext bsf)
static

Definition at line 258 of file mpeg2_metadata_bsf.c.

Variable Documentation

◆ mpeg2_metadata_options

const AVOption mpeg2_metadata_options[]
static
Initial value:
= {
{ "display_aspect_ratio", "Set display aspect ratio (table 6-3)",
OFFSET(display_aspect_ratio), AV_OPT_TYPE_RATIONAL,
{ .dbl = 0.0 }, 0, 65535, FLAGS },
{ "frame_rate", "Set frame rate",
{ .dbl = 0.0 }, 0, UINT_MAX, FLAGS },
{ "video_format", "Set video format (table 6-6)",
OFFSET(video_format), AV_OPT_TYPE_INT,
{ .i64 = -1 }, -1, 7, FLAGS },
{ "colour_primaries", "Set colour primaries (table 6-7)",
OFFSET(colour_primaries), AV_OPT_TYPE_INT,
{ .i64 = -1 }, -1, 255, FLAGS },
{ "transfer_characteristics", "Set transfer characteristics (table 6-8)",
{ .i64 = -1 }, -1, 255, FLAGS },
{ "matrix_coefficients", "Set matrix coefficients (table 6-9)",
OFFSET(matrix_coefficients), AV_OPT_TYPE_INT,
{ .i64 = -1 }, -1, 255, FLAGS },
{ NULL }
}

Definition at line 268 of file mpeg2_metadata_bsf.c.

◆ mpeg2_metadata_class

const AVClass mpeg2_metadata_class
static
Initial value:
= {
.class_name = "mpeg2_metadata_bsf",
.item_name = av_default_item_name,
}

Definition at line 293 of file mpeg2_metadata_bsf.c.

◆ mpeg2_metadata_codec_ids

enum AVCodecID mpeg2_metadata_codec_ids[]
static
Initial value:

Definition at line 300 of file mpeg2_metadata_bsf.c.

◆ ff_mpeg2_metadata_bsf

const AVBitStreamFilter ff_mpeg2_metadata_bsf
Initial value:
= {
.name = "mpeg2_metadata",
.priv_data_size = sizeof(MPEG2MetadataContext),
.priv_class = &mpeg2_metadata_class,
}

Definition at line 304 of file mpeg2_metadata_bsf.c.

OFFSET
#define OFFSET(x)
Definition: mpeg2_metadata_bsf.c:266
init
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
name
const char * name
Definition: avisynth_c.h:867
filter
filter_frame For filters that do not use the this method is called when a frame is pushed to the filter s input It can be called at any time except in a reentrant way If the input frame is enough to produce then the filter should push the output frames on the output link immediately As an exception to the previous rule if the input frame is enough to produce several output frames then the filter needs output only at least one per link The additional frames can be left buffered in the filter
Definition: filter_design.txt:228
AV_OPT_TYPE_RATIONAL
@ AV_OPT_TYPE_RATIONAL
Definition: opt.h:228
mpeg2_metadata_init
static int mpeg2_metadata_init(AVBSFContext *bsf)
Definition: mpeg2_metadata_bsf.c:210
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
ctx
AVFormatContext * ctx
Definition: movenc.c:48
MPEG2MetadataContext
Definition: mpeg2_metadata_bsf.c:28
FLAGS
#define FLAGS
Definition: mpeg2_metadata_bsf.c:267
mpeg2_metadata_filter
static int mpeg2_metadata_filter(AVBSFContext *bsf, AVPacket *pkt)
Definition: mpeg2_metadata_bsf.c:172
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
NULL
#define NULL
Definition: coverity.c:32
mpeg2_metadata_codec_ids
static enum AVCodecID mpeg2_metadata_codec_ids[]
Definition: mpeg2_metadata_bsf.c:300
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:191
mpeg2_metadata_options
static const AVOption mpeg2_metadata_options[]
Definition: mpeg2_metadata_bsf.c:268
transfer_characteristics
static const struct TransferCharacteristics transfer_characteristics[AVCOL_TRC_NB]
Definition: vf_colorspace.c:176
AV_CODEC_ID_NONE
@ AV_CODEC_ID_NONE
Definition: avcodec.h:216
mpeg2_metadata_close
static void mpeg2_metadata_close(AVBSFContext *bsf)
Definition: mpeg2_metadata_bsf.c:258
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:223
codec_ids
static enum AVCodecID codec_ids[]
Definition: aac_adtstoasc_bsf.c:148
AV_CODEC_ID_MPEG2VIDEO
@ AV_CODEC_ID_MPEG2VIDEO
preferred ID for MPEG-1/2 video decoding
Definition: avcodec.h:220
mpeg2_metadata_class
static const AVClass mpeg2_metadata_class
Definition: mpeg2_metadata_bsf.c:293