]> git.sesse.net Git - ffmpeg/blob - libavcodec/h264_metadata_bsf.c
lavc: rename bsf.h to bsf_internal.h
[ffmpeg] / libavcodec / h264_metadata_bsf.c
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/display.h"
21 #include "libavutil/common.h"
22 #include "libavutil/opt.h"
23
24 #include "bsf_internal.h"
25 #include "cbs.h"
26 #include "cbs_h264.h"
27 #include "h264.h"
28 #include "h264_levels.h"
29 #include "h264_sei.h"
30
31 enum {
32     PASS,
33     INSERT,
34     REMOVE,
35     EXTRACT,
36 };
37
38 enum {
39     FLIP_HORIZONTAL = 1,
40     FLIP_VERTICAL   = 2,
41 };
42
43 enum {
44     LEVEL_UNSET = -2,
45     LEVEL_AUTO  = -1,
46 };
47
48 typedef struct H264MetadataContext {
49     const AVClass *class;
50
51     CodedBitstreamContext *cbc;
52     CodedBitstreamFragment access_unit;
53
54     int done_first_au;
55
56     int aud;
57
58     AVRational sample_aspect_ratio;
59
60     int overscan_appropriate_flag;
61
62     int video_format;
63     int video_full_range_flag;
64     int colour_primaries;
65     int transfer_characteristics;
66     int matrix_coefficients;
67
68     int chroma_sample_loc_type;
69
70     AVRational tick_rate;
71     int fixed_frame_rate_flag;
72
73     int crop_left;
74     int crop_right;
75     int crop_top;
76     int crop_bottom;
77
78     const char *sei_user_data;
79
80     int delete_filler;
81
82     int display_orientation;
83     double rotate;
84     int flip;
85
86     int level;
87 } H264MetadataContext;
88
89
90 static int h264_metadata_update_sps(AVBSFContext *bsf,
91                                     H264RawSPS *sps)
92 {
93     H264MetadataContext *ctx = bsf->priv_data;
94     int need_vui = 0;
95     int crop_unit_x, crop_unit_y;
96
97     if (ctx->sample_aspect_ratio.num && ctx->sample_aspect_ratio.den) {
98         // Table E-1.
99         static const AVRational sar_idc[] = {
100             {   0,  0 }, // Unspecified (never written here).
101             {   1,  1 }, {  12, 11 }, {  10, 11 }, {  16, 11 },
102             {  40, 33 }, {  24, 11 }, {  20, 11 }, {  32, 11 },
103             {  80, 33 }, {  18, 11 }, {  15, 11 }, {  64, 33 },
104             { 160, 99 }, {   4,  3 }, {   3,  2 }, {   2,  1 },
105         };
106         int num, den, i;
107
108         av_reduce(&num, &den, ctx->sample_aspect_ratio.num,
109                   ctx->sample_aspect_ratio.den, 65535);
110
111         for (i = 1; i < FF_ARRAY_ELEMS(sar_idc); i++) {
112             if (num == sar_idc[i].num &&
113                 den == sar_idc[i].den)
114                 break;
115         }
116         if (i == FF_ARRAY_ELEMS(sar_idc)) {
117             sps->vui.aspect_ratio_idc = 255;
118             sps->vui.sar_width  = num;
119             sps->vui.sar_height = den;
120         } else {
121             sps->vui.aspect_ratio_idc = i;
122         }
123         sps->vui.aspect_ratio_info_present_flag = 1;
124         need_vui = 1;
125     }
126
127 #define SET_VUI_FIELD(field) do { \
128         if (ctx->field >= 0) { \
129             sps->vui.field = ctx->field; \
130             need_vui = 1; \
131         } \
132     } while (0)
133
134     if (ctx->overscan_appropriate_flag >= 0) {
135         SET_VUI_FIELD(overscan_appropriate_flag);
136         sps->vui.overscan_info_present_flag = 1;
137     }
138
139     if (ctx->video_format             >= 0 ||
140         ctx->video_full_range_flag    >= 0 ||
141         ctx->colour_primaries         >= 0 ||
142         ctx->transfer_characteristics >= 0 ||
143         ctx->matrix_coefficients      >= 0) {
144
145         SET_VUI_FIELD(video_format);
146
147         SET_VUI_FIELD(video_full_range_flag);
148
149         if (ctx->colour_primaries         >= 0 ||
150             ctx->transfer_characteristics >= 0 ||
151             ctx->matrix_coefficients      >= 0) {
152
153             SET_VUI_FIELD(colour_primaries);
154             SET_VUI_FIELD(transfer_characteristics);
155             SET_VUI_FIELD(matrix_coefficients);
156
157             sps->vui.colour_description_present_flag = 1;
158         }
159         sps->vui.video_signal_type_present_flag = 1;
160     }
161
162     if (ctx->chroma_sample_loc_type >= 0) {
163         sps->vui.chroma_sample_loc_type_top_field =
164             ctx->chroma_sample_loc_type;
165         sps->vui.chroma_sample_loc_type_bottom_field =
166             ctx->chroma_sample_loc_type;
167         sps->vui.chroma_loc_info_present_flag = 1;
168         need_vui = 1;
169     }
170
171     if (ctx->tick_rate.num && ctx->tick_rate.den) {
172         int num, den;
173
174         av_reduce(&num, &den, ctx->tick_rate.num, ctx->tick_rate.den,
175                   UINT32_MAX > INT_MAX ? UINT32_MAX : INT_MAX);
176
177         sps->vui.time_scale        = num;
178         sps->vui.num_units_in_tick = den;
179
180         sps->vui.timing_info_present_flag = 1;
181         need_vui = 1;
182     }
183     SET_VUI_FIELD(fixed_frame_rate_flag);
184
185     if (sps->separate_colour_plane_flag || sps->chroma_format_idc == 0) {
186         crop_unit_x = 1;
187         crop_unit_y = 2 - sps->frame_mbs_only_flag;
188     } else {
189         crop_unit_x = 1 + (sps->chroma_format_idc < 3);
190         crop_unit_y = (1 + (sps->chroma_format_idc < 2)) *
191                        (2 - sps->frame_mbs_only_flag);
192     }
193 #define CROP(border, unit) do { \
194         if (ctx->crop_ ## border >= 0) { \
195             if (ctx->crop_ ## border % unit != 0) { \
196                 av_log(bsf, AV_LOG_ERROR, "Invalid value for crop_%s: " \
197                        "must be a multiple of %d.\n", #border, unit); \
198                 return AVERROR(EINVAL); \
199             } \
200             sps->frame_crop_ ## border ## _offset = \
201                   ctx->crop_ ## border / unit; \
202             sps->frame_cropping_flag = 1; \
203         } \
204     } while (0)
205     CROP(left,   crop_unit_x);
206     CROP(right,  crop_unit_x);
207     CROP(top,    crop_unit_y);
208     CROP(bottom, crop_unit_y);
209 #undef CROP
210
211     if (ctx->level != LEVEL_UNSET) {
212         int level_idc;
213
214         if (ctx->level == LEVEL_AUTO) {
215             const H264LevelDescriptor *desc;
216             int64_t bit_rate;
217             int width, height, dpb_frames;
218             int framerate;
219
220             if (sps->vui.nal_hrd_parameters_present_flag) {
221                 bit_rate = (sps->vui.nal_hrd_parameters.bit_rate_value_minus1[0] + 1) *
222                     (INT64_C(1) << (sps->vui.nal_hrd_parameters.bit_rate_scale + 6));
223             } else if (sps->vui.vcl_hrd_parameters_present_flag) {
224                 bit_rate = (sps->vui.vcl_hrd_parameters.bit_rate_value_minus1[0] + 1) *
225                     (INT64_C(1) << (sps->vui.vcl_hrd_parameters.bit_rate_scale + 6));
226                 // Adjust for VCL vs. NAL limits.
227                 bit_rate = bit_rate * 6 / 5;
228             } else {
229                 bit_rate = 0;
230             }
231
232             // Don't use max_dec_frame_buffering if it is only inferred.
233             dpb_frames = sps->vui.bitstream_restriction_flag ?
234                 sps->vui.max_dec_frame_buffering : H264_MAX_DPB_FRAMES;
235
236             width  = 16 * (sps->pic_width_in_mbs_minus1 + 1);
237             height = 16 * (sps->pic_height_in_map_units_minus1 + 1) *
238                 (2 - sps->frame_mbs_only_flag);
239
240             if (sps->vui.timing_info_present_flag)
241                 framerate = sps->vui.time_scale / sps->vui.num_units_in_tick / 2;
242             else
243                 framerate = 0;
244
245             desc = ff_h264_guess_level(sps->profile_idc, bit_rate, framerate,
246                                        width, height, dpb_frames);
247             if (desc) {
248                 level_idc = desc->level_idc;
249             } else {
250                 av_log(bsf, AV_LOG_WARNING, "Stream does not appear to "
251                        "conform to any level: using level 6.2.\n");
252                 level_idc = 62;
253             }
254         } else {
255             level_idc = ctx->level;
256         }
257
258         if (level_idc == 9) {
259             if (sps->profile_idc == 66 ||
260                 sps->profile_idc == 77 ||
261                 sps->profile_idc == 88) {
262                 sps->level_idc = 11;
263                 sps->constraint_set3_flag = 1;
264             } else {
265                 sps->level_idc = 9;
266             }
267         } else {
268             sps->level_idc = level_idc;
269         }
270     }
271
272     if (need_vui)
273         sps->vui_parameters_present_flag = 1;
274
275     return 0;
276 }
277
278 static int h264_metadata_update_side_data(AVBSFContext *bsf, AVPacket *pkt)
279 {
280     H264MetadataContext *ctx = bsf->priv_data;
281     CodedBitstreamFragment *au = &ctx->access_unit;
282     uint8_t *side_data;
283     int side_data_size;
284     int err, i;
285
286     side_data = av_packet_get_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA,
287                                         &side_data_size);
288     if (!side_data_size)
289         return 0;
290
291     err = ff_cbs_read(ctx->cbc, au, side_data, side_data_size);
292     if (err < 0) {
293         av_log(bsf, AV_LOG_ERROR, "Failed to read extradata from packet side data.\n");
294         return err;
295     }
296
297     for (i = 0; i < au->nb_units; i++) {
298         if (au->units[i].type == H264_NAL_SPS) {
299             err = h264_metadata_update_sps(bsf, au->units[i].content);
300             if (err < 0)
301                 return err;
302         }
303     }
304
305     err = ff_cbs_write_fragment_data(ctx->cbc, au);
306     if (err < 0) {
307         av_log(bsf, AV_LOG_ERROR, "Failed to write extradata into packet side data.\n");
308         return err;
309     }
310
311     side_data = av_packet_new_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA, au->data_size);
312     if (!side_data)
313         return AVERROR(ENOMEM);
314     memcpy(side_data, au->data, au->data_size);
315
316     ff_cbs_fragment_reset(ctx->cbc, au);
317
318     return 0;
319 }
320
321 static int h264_metadata_filter(AVBSFContext *bsf, AVPacket *pkt)
322 {
323     H264MetadataContext *ctx = bsf->priv_data;
324     CodedBitstreamFragment *au = &ctx->access_unit;
325     int err, i, j, has_sps;
326     H264RawAUD aud;
327
328     err = ff_bsf_get_packet_ref(bsf, pkt);
329     if (err < 0)
330         return err;
331
332     err = h264_metadata_update_side_data(bsf, pkt);
333     if (err < 0)
334         goto fail;
335
336     err = ff_cbs_read_packet(ctx->cbc, au, pkt);
337     if (err < 0) {
338         av_log(bsf, AV_LOG_ERROR, "Failed to read packet.\n");
339         goto fail;
340     }
341
342     if (au->nb_units == 0) {
343         av_log(bsf, AV_LOG_ERROR, "No NAL units in packet.\n");
344         err = AVERROR_INVALIDDATA;
345         goto fail;
346     }
347
348     // If an AUD is present, it must be the first NAL unit.
349     if (au->units[0].type == H264_NAL_AUD) {
350         if (ctx->aud == REMOVE)
351             ff_cbs_delete_unit(ctx->cbc, au, 0);
352     } else {
353         if (ctx->aud == INSERT) {
354             static const int primary_pic_type_table[] = {
355                 0x084, // 2, 7
356                 0x0a5, // 0, 2, 5, 7
357                 0x0e7, // 0, 1, 2, 5, 6, 7
358                 0x210, // 4, 9
359                 0x318, // 3, 4, 8, 9
360                 0x294, // 2, 4, 7, 9
361                 0x3bd, // 0, 2, 3, 4, 5, 7, 8, 9
362                 0x3ff, // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
363             };
364             int primary_pic_type_mask = 0xff;
365
366             for (i = 0; i < au->nb_units; i++) {
367                 if (au->units[i].type == H264_NAL_SLICE ||
368                     au->units[i].type == H264_NAL_IDR_SLICE) {
369                     H264RawSlice *slice = au->units[i].content;
370                     for (j = 0; j < FF_ARRAY_ELEMS(primary_pic_type_table); j++) {
371                          if (!(primary_pic_type_table[j] &
372                                (1 << slice->header.slice_type)))
373                              primary_pic_type_mask &= ~(1 << j);
374                     }
375                 }
376             }
377             for (j = 0; j < FF_ARRAY_ELEMS(primary_pic_type_table); j++)
378                 if (primary_pic_type_mask & (1 << j))
379                     break;
380             if (j >= FF_ARRAY_ELEMS(primary_pic_type_table)) {
381                 av_log(bsf, AV_LOG_ERROR, "No usable primary_pic_type: "
382                        "invalid slice types?\n");
383                 err = AVERROR_INVALIDDATA;
384                 goto fail;
385             }
386
387             aud = (H264RawAUD) {
388                 .nal_unit_header.nal_unit_type = H264_NAL_AUD,
389                 .primary_pic_type = j,
390             };
391
392             err = ff_cbs_insert_unit_content(ctx->cbc, au,
393                                              0, H264_NAL_AUD, &aud, NULL);
394             if (err < 0) {
395                 av_log(bsf, AV_LOG_ERROR, "Failed to insert AUD.\n");
396                 goto fail;
397             }
398         }
399     }
400
401     has_sps = 0;
402     for (i = 0; i < au->nb_units; i++) {
403         if (au->units[i].type == H264_NAL_SPS) {
404             err = h264_metadata_update_sps(bsf, au->units[i].content);
405             if (err < 0)
406                 goto fail;
407             has_sps = 1;
408         }
409     }
410
411     // Only insert the SEI in access units containing SPSs, and also
412     // unconditionally in the first access unit we ever see.
413     if (ctx->sei_user_data && (has_sps || !ctx->done_first_au)) {
414         H264RawSEIPayload payload = {
415             .payload_type = H264_SEI_TYPE_USER_DATA_UNREGISTERED,
416         };
417         H264RawSEIUserDataUnregistered *udu =
418             &payload.payload.user_data_unregistered;
419
420         for (i = j = 0; j < 32 && ctx->sei_user_data[i]; i++) {
421             int c, v;
422             c = ctx->sei_user_data[i];
423             if (c == '-') {
424                 continue;
425             } else if (av_isxdigit(c)) {
426                 c = av_tolower(c);
427                 v = (c <= '9' ? c - '0' : c - 'a' + 10);
428             } else {
429                 goto invalid_user_data;
430             }
431             if (j & 1)
432                 udu->uuid_iso_iec_11578[j / 2] |= v;
433             else
434                 udu->uuid_iso_iec_11578[j / 2] = v << 4;
435             ++j;
436         }
437         if (j == 32 && ctx->sei_user_data[i] == '+') {
438             size_t len = strlen(ctx->sei_user_data + i + 1);
439
440             udu->data_ref = av_buffer_alloc(len + 1);
441             if (!udu->data_ref) {
442                 err = AVERROR(ENOMEM);
443                 goto fail;
444             }
445
446             udu->data        = udu->data_ref->data;
447             udu->data_length = len + 1;
448             memcpy(udu->data, ctx->sei_user_data + i + 1, len + 1);
449
450             err = ff_cbs_h264_add_sei_message(ctx->cbc, au, &payload);
451             if (err < 0) {
452                 av_log(bsf, AV_LOG_ERROR, "Failed to add user data SEI "
453                        "message to access unit.\n");
454                 goto fail;
455             }
456
457         } else {
458         invalid_user_data:
459             av_log(bsf, AV_LOG_ERROR, "Invalid user data: "
460                    "must be \"UUID+string\".\n");
461             err = AVERROR(EINVAL);
462             goto fail;
463         }
464     }
465
466     if (ctx->delete_filler) {
467         for (i = au->nb_units - 1; i >= 0; i--) {
468             if (au->units[i].type == H264_NAL_FILLER_DATA) {
469                 ff_cbs_delete_unit(ctx->cbc, au, i);
470                 continue;
471             }
472
473             if (au->units[i].type == H264_NAL_SEI) {
474                 // Filler SEI messages.
475                 H264RawSEI *sei = au->units[i].content;
476
477                 for (j = sei->payload_count - 1; j >= 0; j--) {
478                     if (sei->payload[j].payload_type ==
479                         H264_SEI_TYPE_FILLER_PAYLOAD)
480                         ff_cbs_h264_delete_sei_message(ctx->cbc, au,
481                                                        &au->units[i], j);
482                 }
483             }
484         }
485     }
486
487     if (ctx->display_orientation != PASS) {
488         for (i = au->nb_units - 1; i >= 0; i--) {
489             H264RawSEI *sei;
490             if (au->units[i].type != H264_NAL_SEI)
491                 continue;
492             sei = au->units[i].content;
493
494             for (j = sei->payload_count - 1; j >= 0; j--) {
495                 H264RawSEIDisplayOrientation *disp;
496                 int32_t *matrix;
497
498                 if (sei->payload[j].payload_type !=
499                     H264_SEI_TYPE_DISPLAY_ORIENTATION)
500                     continue;
501                 disp = &sei->payload[j].payload.display_orientation;
502
503                 if (ctx->display_orientation == REMOVE ||
504                     ctx->display_orientation == INSERT) {
505                     ff_cbs_h264_delete_sei_message(ctx->cbc, au,
506                                                    &au->units[i], j);
507                     continue;
508                 }
509
510                 matrix = av_malloc(9 * sizeof(int32_t));
511                 if (!matrix) {
512                     err = AVERROR(ENOMEM);
513                     goto fail;
514                 }
515
516                 av_display_rotation_set(matrix,
517                                         disp->anticlockwise_rotation *
518                                         180.0 / 65536.0);
519                 av_display_matrix_flip(matrix, disp->hor_flip, disp->ver_flip);
520
521                 // If there are multiple display orientation messages in an
522                 // access unit, then the last one added to the packet (i.e.
523                 // the first one in the access unit) will prevail.
524                 err = av_packet_add_side_data(pkt, AV_PKT_DATA_DISPLAYMATRIX,
525                                               (uint8_t*)matrix,
526                                               9 * sizeof(int32_t));
527                 if (err < 0) {
528                     av_log(bsf, AV_LOG_ERROR, "Failed to attach extracted "
529                            "displaymatrix side data to packet.\n");
530                     av_freep(matrix);
531                     goto fail;
532                 }
533             }
534         }
535     }
536     if (ctx->display_orientation == INSERT) {
537         H264RawSEIPayload payload = {
538             .payload_type = H264_SEI_TYPE_DISPLAY_ORIENTATION,
539         };
540         H264RawSEIDisplayOrientation *disp =
541             &payload.payload.display_orientation;
542         uint8_t *data;
543         int size;
544         int write = 0;
545
546         data = av_packet_get_side_data(pkt, AV_PKT_DATA_DISPLAYMATRIX, &size);
547         if (data && size >= 9 * sizeof(int32_t)) {
548             int32_t matrix[9];
549             int hflip, vflip;
550             double angle;
551
552             memcpy(matrix, data, sizeof(matrix));
553
554             hflip = vflip = 0;
555             if (matrix[0] < 0 && matrix[4] > 0)
556                 hflip = 1;
557             else if (matrix[0] > 0 && matrix[4] < 0)
558                 vflip = 1;
559             av_display_matrix_flip(matrix, hflip, vflip);
560
561             angle = av_display_rotation_get(matrix);
562
563             if (!(angle >= -180.0 && angle <= 180.0 /* also excludes NaN */) ||
564                 matrix[2] != 0 || matrix[5] != 0 ||
565                 matrix[6] != 0 || matrix[7] != 0) {
566                 av_log(bsf, AV_LOG_WARNING, "Input display matrix is not "
567                        "representable in H.264 parameters.\n");
568             } else {
569                 disp->hor_flip = hflip;
570                 disp->ver_flip = vflip;
571                 disp->anticlockwise_rotation =
572                     (uint16_t)rint((angle >= 0.0 ? angle
573                                                  : angle + 360.0) *
574                                    65536.0 / 360.0);
575                 write = 1;
576             }
577         }
578
579         if (has_sps || !ctx->done_first_au) {
580             if (!isnan(ctx->rotate)) {
581                 disp->anticlockwise_rotation =
582                     (uint16_t)rint((ctx->rotate >= 0.0 ? ctx->rotate
583                                                        : ctx->rotate + 360.0) *
584                                    65536.0 / 360.0);
585                 write = 1;
586             }
587             if (ctx->flip) {
588                 disp->hor_flip = !!(ctx->flip & FLIP_HORIZONTAL);
589                 disp->ver_flip = !!(ctx->flip & FLIP_VERTICAL);
590                 write = 1;
591             }
592         }
593
594         if (write) {
595             disp->display_orientation_repetition_period = 1;
596
597             err = ff_cbs_h264_add_sei_message(ctx->cbc, au, &payload);
598             if (err < 0) {
599                 av_log(bsf, AV_LOG_ERROR, "Failed to add display orientation "
600                        "SEI message to access unit.\n");
601                 goto fail;
602             }
603         }
604     }
605
606     err = ff_cbs_write_packet(ctx->cbc, pkt, au);
607     if (err < 0) {
608         av_log(bsf, AV_LOG_ERROR, "Failed to write packet.\n");
609         goto fail;
610     }
611
612     ctx->done_first_au = 1;
613
614     err = 0;
615 fail:
616     ff_cbs_fragment_reset(ctx->cbc, au);
617
618     if (err < 0)
619         av_packet_unref(pkt);
620
621     return err;
622 }
623
624 static int h264_metadata_init(AVBSFContext *bsf)
625 {
626     H264MetadataContext *ctx = bsf->priv_data;
627     CodedBitstreamFragment *au = &ctx->access_unit;
628     int err, i;
629
630     err = ff_cbs_init(&ctx->cbc, AV_CODEC_ID_H264, bsf);
631     if (err < 0)
632         return err;
633
634     if (bsf->par_in->extradata) {
635         err = ff_cbs_read_extradata(ctx->cbc, au, bsf->par_in);
636         if (err < 0) {
637             av_log(bsf, AV_LOG_ERROR, "Failed to read extradata.\n");
638             goto fail;
639         }
640
641         for (i = 0; i < au->nb_units; i++) {
642             if (au->units[i].type == H264_NAL_SPS) {
643                 err = h264_metadata_update_sps(bsf, au->units[i].content);
644                 if (err < 0)
645                     goto fail;
646             }
647         }
648
649         err = ff_cbs_write_extradata(ctx->cbc, bsf->par_out, au);
650         if (err < 0) {
651             av_log(bsf, AV_LOG_ERROR, "Failed to write extradata.\n");
652             goto fail;
653         }
654     }
655
656     err = 0;
657 fail:
658     ff_cbs_fragment_reset(ctx->cbc, au);
659     return err;
660 }
661
662 static void h264_metadata_close(AVBSFContext *bsf)
663 {
664     H264MetadataContext *ctx = bsf->priv_data;
665
666     ff_cbs_fragment_free(ctx->cbc, &ctx->access_unit);
667     ff_cbs_close(&ctx->cbc);
668 }
669
670 #define OFFSET(x) offsetof(H264MetadataContext, x)
671 #define FLAGS (AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_BSF_PARAM)
672 static const AVOption h264_metadata_options[] = {
673     { "aud", "Access Unit Delimiter NAL units",
674         OFFSET(aud), AV_OPT_TYPE_INT,
675         { .i64 = PASS }, PASS, REMOVE, FLAGS, "aud" },
676     { "pass",   NULL, 0, AV_OPT_TYPE_CONST,
677         { .i64 = PASS   }, .flags = FLAGS, .unit = "aud" },
678     { "insert", NULL, 0, AV_OPT_TYPE_CONST,
679         { .i64 = INSERT }, .flags = FLAGS, .unit = "aud" },
680     { "remove", NULL, 0, AV_OPT_TYPE_CONST,
681         { .i64 = REMOVE }, .flags = FLAGS, .unit = "aud" },
682
683     { "sample_aspect_ratio", "Set sample aspect ratio (table E-1)",
684         OFFSET(sample_aspect_ratio), AV_OPT_TYPE_RATIONAL,
685         { .dbl = 0.0 }, 0, 65535, FLAGS },
686
687     { "overscan_appropriate_flag", "Set VUI overscan appropriate flag",
688         OFFSET(overscan_appropriate_flag), AV_OPT_TYPE_INT,
689         { .i64 = -1 }, -1, 1, FLAGS },
690
691     { "video_format", "Set video format (table E-2)",
692         OFFSET(video_format), AV_OPT_TYPE_INT,
693         { .i64 = -1 }, -1, 7, FLAGS},
694     { "video_full_range_flag", "Set video full range flag",
695         OFFSET(video_full_range_flag), AV_OPT_TYPE_INT,
696         { .i64 = -1 }, -1, 1, FLAGS },
697     { "colour_primaries", "Set colour primaries (table E-3)",
698         OFFSET(colour_primaries), AV_OPT_TYPE_INT,
699         { .i64 = -1 }, -1, 255, FLAGS },
700     { "transfer_characteristics", "Set transfer characteristics (table E-4)",
701         OFFSET(transfer_characteristics), AV_OPT_TYPE_INT,
702         { .i64 = -1 }, -1, 255, FLAGS },
703     { "matrix_coefficients", "Set matrix coefficients (table E-5)",
704         OFFSET(matrix_coefficients), AV_OPT_TYPE_INT,
705         { .i64 = -1 }, -1, 255, FLAGS },
706
707     { "chroma_sample_loc_type", "Set chroma sample location type (figure E-1)",
708         OFFSET(chroma_sample_loc_type), AV_OPT_TYPE_INT,
709         { .i64 = -1 }, -1, 6, FLAGS },
710
711     { "tick_rate", "Set VUI tick rate (num_units_in_tick / time_scale)",
712         OFFSET(tick_rate), AV_OPT_TYPE_RATIONAL,
713         { .dbl = 0.0 }, 0, UINT_MAX, FLAGS },
714     { "fixed_frame_rate_flag", "Set VUI fixed frame rate flag",
715         OFFSET(fixed_frame_rate_flag), AV_OPT_TYPE_INT,
716         { .i64 = -1 }, -1, 1, FLAGS },
717
718     { "crop_left", "Set left border crop offset",
719         OFFSET(crop_left), AV_OPT_TYPE_INT,
720         { .i64 = -1 }, -1, H264_MAX_WIDTH, FLAGS },
721     { "crop_right", "Set right border crop offset",
722         OFFSET(crop_right), AV_OPT_TYPE_INT,
723         { .i64 = -1 }, -1, H264_MAX_WIDTH, FLAGS },
724     { "crop_top", "Set top border crop offset",
725         OFFSET(crop_top), AV_OPT_TYPE_INT,
726         { .i64 = -1 }, -1, H264_MAX_HEIGHT, FLAGS },
727     { "crop_bottom", "Set bottom border crop offset",
728         OFFSET(crop_bottom), AV_OPT_TYPE_INT,
729         { .i64 = -1 }, -1, H264_MAX_HEIGHT, FLAGS },
730
731     { "sei_user_data", "Insert SEI user data (UUID+string)",
732         OFFSET(sei_user_data), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS },
733
734     { "delete_filler", "Delete all filler (both NAL and SEI)",
735         OFFSET(delete_filler), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, FLAGS},
736
737     { "display_orientation", "Display orientation SEI",
738         OFFSET(display_orientation), AV_OPT_TYPE_INT,
739         { .i64 = PASS }, PASS, EXTRACT, FLAGS, "disp_or" },
740     { "pass",    NULL, 0, AV_OPT_TYPE_CONST,
741         { .i64 = PASS    }, .flags = FLAGS, .unit = "disp_or" },
742     { "insert",  NULL, 0, AV_OPT_TYPE_CONST,
743         { .i64 = INSERT  }, .flags = FLAGS, .unit = "disp_or" },
744     { "remove",  NULL, 0, AV_OPT_TYPE_CONST,
745         { .i64 = REMOVE  }, .flags = FLAGS, .unit = "disp_or" },
746     { "extract", NULL, 0, AV_OPT_TYPE_CONST,
747         { .i64 = EXTRACT }, .flags = FLAGS, .unit = "disp_or" },
748
749     { "rotate", "Set rotation in display orientation SEI (anticlockwise angle in degrees)",
750         OFFSET(rotate), AV_OPT_TYPE_DOUBLE,
751         { .dbl = NAN }, -360.0, +360.0, FLAGS },
752     { "flip", "Set flip in display orientation SEI",
753         OFFSET(flip), AV_OPT_TYPE_FLAGS,
754         { .i64 = 0 }, 0, FLIP_HORIZONTAL | FLIP_VERTICAL, FLAGS, "flip" },
755     { "horizontal", "Set hor_flip",
756         0, AV_OPT_TYPE_CONST,
757         { .i64 = FLIP_HORIZONTAL }, .flags = FLAGS, .unit = "flip" },
758     { "vertical",   "Set ver_flip",
759         0, AV_OPT_TYPE_CONST,
760         { .i64 = FLIP_VERTICAL },   .flags = FLAGS, .unit = "flip" },
761
762     { "level", "Set level (table A-1)",
763         OFFSET(level), AV_OPT_TYPE_INT,
764         { .i64 = LEVEL_UNSET }, LEVEL_UNSET, 0xff, FLAGS, "level" },
765     { "auto", "Attempt to guess level from stream properties",
766         0, AV_OPT_TYPE_CONST,
767         { .i64 = LEVEL_AUTO }, .flags = FLAGS, .unit = "level" },
768 #define LEVEL(name, value) name, NULL, 0, AV_OPT_TYPE_CONST, \
769         { .i64 = value },      .flags = FLAGS, .unit = "level"
770     { LEVEL("1",   10) },
771     { LEVEL("1b",   9) },
772     { LEVEL("1.1", 11) },
773     { LEVEL("1.2", 12) },
774     { LEVEL("1.3", 13) },
775     { LEVEL("2",   20) },
776     { LEVEL("2.1", 21) },
777     { LEVEL("2.2", 22) },
778     { LEVEL("3",   30) },
779     { LEVEL("3.1", 31) },
780     { LEVEL("3.2", 32) },
781     { LEVEL("4",   40) },
782     { LEVEL("4.1", 41) },
783     { LEVEL("4.2", 42) },
784     { LEVEL("5",   50) },
785     { LEVEL("5.1", 51) },
786     { LEVEL("5.2", 52) },
787     { LEVEL("6",   60) },
788     { LEVEL("6.1", 61) },
789     { LEVEL("6.2", 62) },
790 #undef LEVEL
791
792     { NULL }
793 };
794
795 static const AVClass h264_metadata_class = {
796     .class_name = "h264_metadata_bsf",
797     .item_name  = av_default_item_name,
798     .option     = h264_metadata_options,
799     .version    = LIBAVUTIL_VERSION_INT,
800 };
801
802 static const enum AVCodecID h264_metadata_codec_ids[] = {
803     AV_CODEC_ID_H264, AV_CODEC_ID_NONE,
804 };
805
806 const AVBitStreamFilter ff_h264_metadata_bsf = {
807     .name           = "h264_metadata",
808     .priv_data_size = sizeof(H264MetadataContext),
809     .priv_class     = &h264_metadata_class,
810     .init           = &h264_metadata_init,
811     .close          = &h264_metadata_close,
812     .filter         = &h264_metadata_filter,
813     .codec_ids      = h264_metadata_codec_ids,
814 };