FFmpeg
vp9_metadata_bsf.c
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 #include "libavutil/avstring.h"
20 #include "libavutil/common.h"
21 #include "libavutil/opt.h"
22 
23 #include "bsf.h"
24 #include "cbs.h"
25 #include "cbs_vp9.h"
26 
27 typedef struct VP9MetadataContext {
28  const AVClass *class;
29 
32 
35 
38 
39 
41 {
43  CodedBitstreamFragment *frag = &ctx->fragment;
44  int err, i;
45 
46  err = ff_bsf_get_packet_ref(bsf, pkt);
47  if (err < 0)
48  return err;
49 
50  err = ff_cbs_read_packet(ctx->cbc, frag, pkt);
51  if (err < 0) {
52  av_log(bsf, AV_LOG_ERROR, "Failed to read packet.\n");
53  goto fail;
54  }
55 
56  for (i = 0; i < frag->nb_units; i++) {
57  VP9RawFrame *frame = frag->units[i].content;
58  VP9RawFrameHeader *header = &frame->header;
59 
60  if (ctx->color_space >= 0) {
61  header->color_space = ctx->color_space;
62  }
63  if (ctx->color_range >= 0) {
64  if (ctx->color_range == 0 &&
65  header->color_space == VP9_CS_RGB &&
66  !ctx->color_range_rgb_warned) {
67  av_log(bsf, AV_LOG_WARNING, "Warning: color_range cannot "
68  "be set to limited in RGB streams.\n");
69  ctx->color_range_rgb_warned = 1;
70  } else {
71  header->color_range = ctx->color_range;
72  }
73  }
74  }
75 
76  err = ff_cbs_write_packet(ctx->cbc, pkt, frag);
77  if (err < 0) {
78  av_log(bsf, AV_LOG_ERROR, "Failed to write packet.\n");
79  goto fail;
80  }
81 
82  err = 0;
83 fail:
84  ff_cbs_fragment_reset(ctx->cbc, frag);
85 
86  if (err < 0)
88 
89  return err;
90 }
91 
93 {
95 
96  return ff_cbs_init(&ctx->cbc, AV_CODEC_ID_VP9, bsf);
97 }
98 
100 {
102 
103  ff_cbs_fragment_free(ctx->cbc, &ctx->fragment);
104  ff_cbs_close(&ctx->cbc);
105 }
106 
107 #define OFFSET(x) offsetof(VP9MetadataContext, x)
108 #define FLAGS (AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_BSF_PARAM)
109 static const AVOption vp9_metadata_options[] = {
110  { "color_space", "Set colour space (section 7.2.2)",
111  OFFSET(color_space), AV_OPT_TYPE_INT,
112  { .i64 = -1 }, -1, VP9_CS_RGB, FLAGS, "cs" },
113  { "unknown", "Unknown/unspecified", 0, AV_OPT_TYPE_CONST,
114  { .i64 = VP9_CS_UNKNOWN }, .flags = FLAGS, .unit = "cs" },
115  { "bt601", "ITU-R BT.601-7", 0, AV_OPT_TYPE_CONST,
116  { .i64 = VP9_CS_BT_601 }, .flags = FLAGS, .unit = "cs" },
117  { "bt709", "ITU-R BT.709-6", 0, AV_OPT_TYPE_CONST,
118  { .i64 = VP9_CS_BT_709 }, .flags = FLAGS, .unit = "cs" },
119  { "smpte170", "SMPTE-170", 0, AV_OPT_TYPE_CONST,
120  { .i64 = VP9_CS_SMPTE_170 }, .flags = FLAGS, .unit = "cs" },
121  { "smpte240", "SMPTE-240", 0, AV_OPT_TYPE_CONST,
122  { .i64 = VP9_CS_SMPTE_240 }, .flags = FLAGS, .unit = "cs" },
123  { "bt2020", "ITU-R BT.2020-2", 0, AV_OPT_TYPE_CONST,
124  { .i64 = VP9_CS_BT_2020 }, .flags = FLAGS, .unit = "cs" },
125  { "rgb", "sRGB / IEC 61966-2-1", 0, AV_OPT_TYPE_CONST,
126  { .i64 = VP9_CS_RGB }, .flags = FLAGS, .unit = "cs" },
127 
128  { "color_range", "Set colour range (section 7.2.2)",
130  { .i64 = -1 }, -1, 1, FLAGS, "cr" },
131  { "tv", "TV (limited) range", 0, AV_OPT_TYPE_CONST,
132  { .i64 = 0 }, .flags = FLAGS, .unit = "cr" },
133  { "pc", "PC (full) range", 0, AV_OPT_TYPE_CONST,
134  { .i64 = 1 }, .flags = FLAGS, .unit = "cr" },
135 
136  { NULL }
137 };
138 
139 static const AVClass vp9_metadata_class = {
140  .class_name = "vp9_metadata_bsf",
141  .item_name = av_default_item_name,
142  .option = vp9_metadata_options,
143  .version = LIBAVUTIL_VERSION_INT,
144 };
145 
146 static const enum AVCodecID vp9_metadata_codec_ids[] = {
148 };
149 
151  .name = "vp9_metadata",
152  .priv_data_size = sizeof(VP9MetadataContext),
153  .priv_class = &vp9_metadata_class,
155  .close = &vp9_metadata_close,
158 };
av_packet_unref
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:599
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
VP9_CS_BT_601
@ VP9_CS_BT_601
Definition: cbs_vp9.h:58
init
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
opt.h
VP9MetadataContext::fragment
CodedBitstreamFragment fragment
Definition: vp9_metadata_bsf.c:31
vp9_metadata_codec_ids
static enum AVCodecID vp9_metadata_codec_ids[]
Definition: vp9_metadata_bsf.c:146
VP9_CS_SMPTE_240
@ VP9_CS_SMPTE_240
Definition: cbs_vp9.h:61
CodedBitstreamUnit::content
void * content
Pointer to the decomposed form of this unit.
Definition: cbs.h:101
AVBitStreamFilter::name
const char * name
Definition: avcodec.h:5813
CodedBitstreamContext
Context structure for coded bitstream operations.
Definition: cbs.h:168
ff_cbs_close
void ff_cbs_close(CodedBitstreamContext **ctx_ptr)
Close a context and free all internal state.
Definition: cbs.c:115
AVOption
AVOption.
Definition: opt.h:246
ff_cbs_fragment_free
void ff_cbs_fragment_free(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag)
Free the units array of a fragment in addition to what ff_cbs_fragment_reset does.
Definition: cbs.c:157
vp9_metadata_filter
static int vp9_metadata_filter(AVBSFContext *bsf, AVPacket *pkt)
Definition: vp9_metadata_bsf.c:40
cbs.h
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
VP9MetadataContext::color_range
int color_range
Definition: vp9_metadata_bsf.c:34
AVBSFContext
The bitstream filter state.
Definition: avcodec.h:5763
bsf.h
fail
#define fail()
Definition: checkasm.h:120
vp9_metadata_close
static void vp9_metadata_close(AVBSFContext *bsf)
Definition: vp9_metadata_bsf.c:99
CodedBitstreamFragment::units
CodedBitstreamUnit * units
Pointer to an array of units of length nb_units_allocated.
Definition: cbs.h:162
VP9MetadataContext
Definition: vp9_metadata_bsf.c:27
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
CodedBitstreamFragment
Coded bitstream fragment structure, combining one or more units.
Definition: cbs.h:116
ff_vp9_metadata_bsf
const AVBitStreamFilter ff_vp9_metadata_bsf
Definition: vp9_metadata_bsf.c:150
ff_cbs_write_packet
int ff_cbs_write_packet(CodedBitstreamContext *ctx, AVPacket *pkt, CodedBitstreamFragment *frag)
Write the bitstream of a fragment to a packet.
Definition: cbs.c:401
VP9MetadataContext::color_range_rgb_warned
int color_range_rgb_warned
Definition: vp9_metadata_bsf.c:36
AV_CODEC_ID_VP9
@ AV_CODEC_ID_VP9
Definition: avcodec.h:386
cbs_vp9.h
ctx
AVFormatContext * ctx
Definition: movenc.c:48
VP9RawFrameHeader
Definition: cbs_vp9.h:83
vp9_metadata_init
static int vp9_metadata_init(AVBSFContext *bsf)
Definition: vp9_metadata_bsf.c:92
color_range
color_range
Definition: vf_selectivecolor.c:44
vp9_metadata_class
static const AVClass vp9_metadata_class
Definition: vp9_metadata_bsf.c:139
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:67
NULL
#define NULL
Definition: coverity.c:32
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:191
vp9_metadata_options
static const AVOption vp9_metadata_options[]
Definition: vp9_metadata_bsf.c:109
VP9MetadataContext::color_space
int color_space
Definition: vp9_metadata_bsf.c:33
VP9_CS_BT_709
@ VP9_CS_BT_709
Definition: cbs_vp9.h:59
VP9MetadataContext::cbc
CodedBitstreamContext * cbc
Definition: vp9_metadata_bsf.c:30
VP9RawFrame
Definition: cbs_vp9.h:164
AVCodecID
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:215
VP9_CS_SMPTE_170
@ VP9_CS_SMPTE_170
Definition: cbs_vp9.h:60
VP9_CS_RGB
@ VP9_CS_RGB
Definition: cbs_vp9.h:64
header
static const uint8_t header[24]
Definition: sdr2.c:67
FLAGS
#define FLAGS
Definition: vp9_metadata_bsf.c:108
VP9_CS_BT_2020
@ VP9_CS_BT_2020
Definition: cbs_vp9.h:62
OFFSET
#define OFFSET(x)
Definition: vp9_metadata_bsf.c:107
AV_CODEC_ID_NONE
@ AV_CODEC_ID_NONE
Definition: avcodec.h:216
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:259
common.h
AVBSFContext::priv_data
void * priv_data
Opaque filter-specific private data.
Definition: avcodec.h:5784
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:264
ff_cbs_init
int ff_cbs_init(CodedBitstreamContext **ctx_ptr, enum AVCodecID codec_id, void *log_ctx)
Create and initialise a new context for the given codec.
Definition: cbs.c:74
VP9_CS_UNKNOWN
@ VP9_CS_UNKNOWN
Definition: cbs_vp9.h:57
pkt
static AVPacket pkt
Definition: demuxing_decoding.c:54
AVBitStreamFilter
Definition: avcodec.h:5812
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:223
ff_cbs_fragment_reset
void ff_cbs_fragment_reset(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag)
Free the units contained in a fragment as well as the fragment's own data buffer, but not the units a...
Definition: cbs.c:142
ff_cbs_read_packet
int ff_cbs_read_packet(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag, const AVPacket *pkt)
Read the data bitstream from a packet into a fragment, then split into units and decompose.
Definition: cbs.c:242
codec_ids
static enum AVCodecID codec_ids[]
Definition: aac_adtstoasc_bsf.c:148
AVPacket
This structure stores compressed data.
Definition: avcodec.h:1454
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
ff_bsf_get_packet_ref
int ff_bsf_get_packet_ref(AVBSFContext *ctx, AVPacket *pkt)
Called by bitstream filters to get packet for filtering.
Definition: bsf.c:239
avstring.h
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:232
CodedBitstreamFragment::nb_units
int nb_units
Number of units in this fragment.
Definition: cbs.h:147