FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mpeg2_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_mpeg2.h"
26 #include "mpeg12.h"
27 
28 typedef struct MPEG2MetadataContext {
29  const AVClass *class;
30 
33 
35 
37 
39 
44 
47 
48 
51 {
56  int i, se_pos, add_sde = 0;
57 
58  for (i = 0; i < frag->nb_units; i++) {
59  if (frag->units[i].type == MPEG2_START_SEQUENCE_HEADER) {
60  sh = frag->units[i].content;
61  } else if (frag->units[i].type == MPEG2_START_EXTENSION) {
62  MPEG2RawExtensionData *ext = frag->units[i].content;
65  se = &ext->data.sequence;
66  se_pos = i;
67  } else if (ext->extension_start_code_identifier ==
69  sde = &ext->data.sequence_display;
70  }
71  }
72  }
73 
74  if (!sh || !se) {
75  // No sequence header and sequence extension: not an MPEG-2 video
76  // sequence.
77  if (sh && !ctx->mpeg1_warned) {
78  av_log(bsf, AV_LOG_WARNING, "Stream contains a sequence "
79  "header but not a sequence extension: maybe it's "
80  "actually MPEG-1?\n");
81  ctx->mpeg1_warned = 1;
82  }
83  return 0;
84  }
85 
87  int num, den;
88 
89  av_reduce(&num, &den, ctx->display_aspect_ratio.num,
90  ctx->display_aspect_ratio.den, 65535);
91 
92  if (num == 4 && den == 3)
94  else if (num == 16 && den == 9)
96  else if (num == 221 && den == 100)
98  else
100  }
101 
102  if (ctx->frame_rate.num && ctx->frame_rate.den) {
103  int code, ext_n, ext_d;
104 
106  &code, &ext_n, &ext_d, 0);
107 
108  sh->frame_rate_code = code;
109  se->frame_rate_extension_n = ext_n;
110  se->frame_rate_extension_d = ext_d;
111  }
112 
113  if (ctx->video_format >= 0 ||
114  ctx->colour_primaries >= 0 ||
115  ctx->transfer_characteristics >= 0 ||
116  ctx->matrix_coefficients >= 0) {
117  if (!sde) {
118  add_sde = 1;
124 
126  .video_format = 5,
127 
128  .colour_description = 0,
129  .colour_primaries = 2,
130  .transfer_characteristics = 2,
131  .matrix_coefficients = 2,
132 
133  .display_horizontal_size =
135  .display_vertical_size =
137  };
138  }
139 
140  if (ctx->video_format >= 0)
141  sde->video_format = ctx->video_format;
142 
143  if (ctx->colour_primaries >= 0 ||
144  ctx->transfer_characteristics >= 0 ||
145  ctx->matrix_coefficients >= 0) {
146  sde->colour_description = 1;
147 
148  if (ctx->colour_primaries >= 0)
150  else if (add_sde)
151  sde->colour_primaries = 2;
152 
153  if (ctx->transfer_characteristics >= 0)
155  else if (add_sde)
156  sde->transfer_characteristics = 2;
157 
158  if (ctx->matrix_coefficients >= 0)
160  else if (add_sde)
161  sde->matrix_coefficients = 2;
162  }
163  }
164 
165  if (add_sde) {
166  int err;
167 
168  err = ff_cbs_insert_unit_content(ctx->cbc, frag, se_pos + 1,
171  NULL);
172  if (err < 0) {
173  av_log(bsf, AV_LOG_ERROR, "Failed to insert new sequence "
174  "display extension.\n");
175  return err;
176  }
177  }
178 
179  return 0;
180 }
181 
183 {
185  AVPacket *in = NULL;
186  CodedBitstreamFragment *frag = &ctx->fragment;
187  int err;
188 
189  err = ff_bsf_get_packet(bsf, &in);
190  if (err < 0)
191  return err;
192 
193  err = ff_cbs_read_packet(ctx->cbc, frag, in);
194  if (err < 0) {
195  av_log(bsf, AV_LOG_ERROR, "Failed to read packet.\n");
196  goto fail;
197  }
198 
199  err = mpeg2_metadata_update_fragment(bsf, frag);
200  if (err < 0) {
201  av_log(bsf, AV_LOG_ERROR, "Failed to update frame fragment.\n");
202  goto fail;
203  }
204 
205  err = ff_cbs_write_packet(ctx->cbc, out, frag);
206  if (err < 0) {
207  av_log(bsf, AV_LOG_ERROR, "Failed to write packet.\n");
208  goto fail;
209  }
210 
211  err = av_packet_copy_props(out, in);
212  if (err < 0)
213  goto fail;
214 
215  err = 0;
216 fail:
217  ff_cbs_fragment_uninit(ctx->cbc, frag);
218 
219  if (err < 0)
220  av_packet_unref(out);
221  av_packet_free(&in);
222 
223  return err;
224 }
225 
227 {
229  CodedBitstreamFragment *frag = &ctx->fragment;
230  int err;
231 
232  err = ff_cbs_init(&ctx->cbc, AV_CODEC_ID_MPEG2VIDEO, bsf);
233  if (err < 0)
234  return err;
235 
236  if (bsf->par_in->extradata) {
237  err = ff_cbs_read_extradata(ctx->cbc, frag, bsf->par_in);
238  if (err < 0) {
239  av_log(bsf, AV_LOG_ERROR, "Failed to read extradata.\n");
240  goto fail;
241  }
242 
243  err = mpeg2_metadata_update_fragment(bsf, frag);
244  if (err < 0) {
245  av_log(bsf, AV_LOG_ERROR, "Failed to update metadata fragment.\n");
246  goto fail;
247  }
248 
249  err = ff_cbs_write_extradata(ctx->cbc, bsf->par_out, frag);
250  if (err < 0) {
251  av_log(bsf, AV_LOG_ERROR, "Failed to write extradata.\n");
252  goto fail;
253  }
254  }
255 
256  err = 0;
257 fail:
258  ff_cbs_fragment_uninit(ctx->cbc, frag);
259  return err;
260 }
261 
263 {
265  ff_cbs_close(&ctx->cbc);
266 }
267 
268 #define OFFSET(x) offsetof(MPEG2MetadataContext, x)
269 #define FLAGS (AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_BSF_PARAM)
271  { "display_aspect_ratio", "Set display aspect ratio (table 6-3)",
272  OFFSET(display_aspect_ratio), AV_OPT_TYPE_RATIONAL,
273  { .dbl = 0.0 }, 0, 65535, FLAGS },
274 
275  { "frame_rate", "Set frame rate",
276  OFFSET(frame_rate), AV_OPT_TYPE_RATIONAL,
277  { .dbl = 0.0 }, 0, UINT_MAX, FLAGS },
278 
279  { "video_format", "Set video format (table 6-6)",
280  OFFSET(video_format), AV_OPT_TYPE_INT,
281  { .i64 = -1 }, -1, 7, FLAGS },
282  { "colour_primaries", "Set colour primaries (table 6-7)",
283  OFFSET(colour_primaries), AV_OPT_TYPE_INT,
284  { .i64 = -1 }, -1, 255, FLAGS },
285  { "transfer_characteristics", "Set transfer characteristics (table 6-8)",
287  { .i64 = -1 }, -1, 255, FLAGS },
288  { "matrix_coefficients", "Set matrix coefficients (table 6-9)",
289  OFFSET(matrix_coefficients), AV_OPT_TYPE_INT,
290  { .i64 = -1 }, -1, 255, FLAGS },
291 
292  { NULL }
293 };
294 
296  .class_name = "mpeg2_metadata_bsf",
297  .item_name = av_default_item_name,
298  .option = mpeg2_metadata_options,
299  .version = LIBAVUTIL_VERSION_INT,
300 };
301 
302 static const enum AVCodecID mpeg2_metadata_codec_ids[] = {
304 };
305 
307  .name = "mpeg2_metadata",
308  .priv_data_size = sizeof(MPEG2MetadataContext),
309  .priv_class = &mpeg2_metadata_class,
311  .close = &mpeg2_metadata_close,
314 };
#define NULL
Definition: coverity.c:32
int nb_units
Number of units in this fragment.
Definition: cbs.h:147
uint8_t extension_start_code_identifier
Definition: cbs_mpeg2.h:173
AVCodecParameters * par_out
Parameters of the output stream.
Definition: avcodec.h:5737
#define se(name, range_min, range_max)
Definition: cbs_h2645.c:258
AVOption.
Definition: opt.h:246
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
int ff_cbs_write_packet(CodedBitstreamContext *ctx, AVPacket *pkt, CodedBitstreamFragment *frag)
Write the bitstream of a fragment to a packet.
Definition: cbs.c:343
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
MPEG2RawSequenceExtension sequence
Definition: cbs_mpeg2.h:176
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
CodedBitstreamUnitType type
Codec-specific type of this unit.
Definition: cbs.h:68
int num
Numerator.
Definition: rational.h:59
The bitstream filter state.
Definition: avcodec.h:5703
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:191
int ff_cbs_insert_unit_content(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag, int position, CodedBitstreamUnitType type, void *content, AVBufferRef *content_buf)
Insert a new unit into a fragment with the given content.
Definition: cbs.c:570
void * priv_data
Opaque filter-specific private data.
Definition: avcodec.h:5724
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
uint16_t vertical_size_value
Definition: cbs_mpeg2.h:63
static void filter(int16_t *output, ptrdiff_t out_stride, int16_t *low, ptrdiff_t low_stride, int16_t *high, ptrdiff_t high_stride, int len, int clip)
Definition: cfhd.c:153
void av_packet_free(AVPacket **pkt)
Free the packet, if the packet is reference counted, it will be unreferenced first.
Definition: avpacket.c:62
AVOptions.
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:233
const char * name
Definition: avcodec.h:5753
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction.
Definition: rational.c:35
void * content
Pointer to the decomposed form of this unit.
Definition: cbs.h:101
CodedBitstreamUnit * units
Pointer to an array of units of length nb_units.
Definition: cbs.h:153
#define av_log(a,...)
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:215
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
void ff_cbs_fragment_uninit(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag)
Free all allocated memory in a fragment.
Definition: cbs.c:139
void ff_mpeg12_find_best_frame_rate(AVRational frame_rate, int *code, int *ext_n, int *ext_d, int nonstandard)
#define fail()
Definition: checkasm.h:117
static void mpeg2_metadata_close(AVBSFContext *bsf)
static const struct TransferCharacteristics transfer_characteristics[AVCOL_TRC_NB]
int av_packet_copy_props(AVPacket *dst, const AVPacket *src)
Copy only "properties" fields from src to dst.
Definition: avpacket.c:564
const AVBitStreamFilter ff_mpeg2_metadata_bsf
int ff_cbs_write_extradata(CodedBitstreamContext *ctx, AVCodecParameters *par, CodedBitstreamFragment *frag)
Write the bitstream of a fragment to the extradata in codec parameters.
Definition: cbs.c:318
MPEG2RawExtensionData sequence_display_extension
AVFormatContext * ctx
Definition: movenc.c:48
uint8_t horizontal_size_extension
Definition: cbs_mpeg2.h:88
preferred ID for MPEG-1/2 video decoding
Definition: avcodec.h:220
MPEG2RawSequenceDisplayExtension sequence_display
Definition: cbs_mpeg2.h:177
Coded bitstream fragment structure, combining one or more units.
Definition: cbs.h:116
#define FLAGS
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:598
static const AVClass mpeg2_metadata_class
uint8_t frame_rate_extension_n
Definition: cbs_mpeg2.h:93
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
uint8_t frame_rate_extension_d
Definition: cbs_mpeg2.h:94
static enum AVCodecID mpeg2_metadata_codec_ids[]
Describe the class of an AVClass context structure.
Definition: log.h:67
Context structure for coded bitstream operations.
Definition: cbs.h:159
Rational number (pair of numerator and denominator).
Definition: rational.h:58
uint8_t extension_start_code
Definition: cbs_mpeg2.h:172
uint16_t horizontal_size_value
Definition: cbs_mpeg2.h:62
void ff_cbs_close(CodedBitstreamContext **ctx_ptr)
Close a context and free all internal state.
Definition: cbs.c:113
uint8_t aspect_ratio_information
Definition: cbs_mpeg2.h:64
int ff_cbs_read_extradata(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag, const AVCodecParameters *par)
Read the extradata bitstream found in codec parameters into a fragment, then split into units and dec...
Definition: cbs.c:213
CodedBitstreamContext * cbc
static int mpeg2_metadata_filter(AVBSFContext *bsf, AVPacket *out)
CodedBitstreamFragment fragment
common internal and external API header
static enum AVCodecID codec_ids[]
int ff_bsf_get_packet(AVBSFContext *ctx, AVPacket **pkt)
Called by the bitstream filters to get the next packet for filtering.
Definition: bsf.c:216
int den
Denominator.
Definition: rational.h:60
static const AVOption mpeg2_metadata_options[]
uint8_t vertical_size_extension
Definition: cbs_mpeg2.h:89
static int mpeg2_metadata_update_fragment(AVBSFContext *bsf, CodedBitstreamFragment *frag)
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: avcodec.h:3914
FILE * out
Definition: movenc.c:54
#define OFFSET(x)
static int mpeg2_metadata_init(AVBSFContext *bsf)
This structure stores compressed data.
Definition: avcodec.h:1422
AVCodecParameters * par_in
Parameters of the input stream.
Definition: avcodec.h:5731
union MPEG2RawExtensionData::@61 data