]> git.sesse.net Git - ffmpeg/blob - libavcodec/vaapi_encode_h264.c
Merge commit '1dfc3cf89d0eb026af28be46294b85d79499ffb5'
[ffmpeg] / libavcodec / vaapi_encode_h264.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 <va/va.h>
20 #include <va/va_enc_h264.h>
21
22 #include "libavutil/avassert.h"
23 #include "libavutil/internal.h"
24 #include "libavutil/opt.h"
25 #include "libavutil/pixfmt.h"
26
27 #include "avcodec.h"
28 #include "h264.h"
29 #include "h264_sei.h"
30 #include "internal.h"
31 #include "vaapi_encode.h"
32 #include "vaapi_encode_h26x.h"
33
34 enum {
35     SLICE_TYPE_P  = 0,
36     SLICE_TYPE_B  = 1,
37     SLICE_TYPE_I  = 2,
38     SLICE_TYPE_SP = 3,
39     SLICE_TYPE_SI = 4,
40 };
41
42 // This structure contains all possibly-useful per-sequence syntax elements
43 // which are not already contained in the various VAAPI structures.
44 typedef struct VAAPIEncodeH264MiscSequenceParams {
45     unsigned int profile_idc;
46     char constraint_set0_flag;
47     char constraint_set1_flag;
48     char constraint_set2_flag;
49     char constraint_set3_flag;
50     char constraint_set4_flag;
51     char constraint_set5_flag;
52
53     char separate_colour_plane_flag;
54     char qpprime_y_zero_transform_bypass_flag;
55
56     char gaps_in_frame_num_allowed_flag;
57     char delta_pic_order_always_zero_flag;
58     char bottom_field_pic_order_in_frame_present_flag;
59
60     unsigned int num_slice_groups_minus1;
61     unsigned int slice_group_map_type;
62
63     int pic_init_qs_minus26;
64
65     char overscan_info_present_flag;
66     char overscan_appropriate_flag;
67
68     char video_signal_type_present_flag;
69     unsigned int video_format;
70     char video_full_range_flag;
71     char colour_description_present_flag;
72     unsigned int colour_primaries;
73     unsigned int transfer_characteristics;
74     unsigned int matrix_coefficients;
75
76     char chroma_loc_info_present_flag;
77     unsigned int chroma_sample_loc_type_top_field;
78     unsigned int chroma_sample_loc_type_bottom_field;
79
80     // Some timing elements are in VAEncSequenceParameterBufferH264.
81     char fixed_frame_rate_flag;
82
83     char nal_hrd_parameters_present_flag;
84     char vcl_hrd_parameters_present_flag;
85     char low_delay_hrd_flag;
86     char pic_struct_present_flag;
87
88     char motion_vectors_over_pic_boundaries_flag;
89     unsigned int max_bytes_per_pic_denom;
90     unsigned int max_bits_per_mb_denom;
91     unsigned int max_num_reorder_frames;
92     unsigned int max_dec_pic_buffering;
93
94     unsigned int cpb_cnt_minus1;
95     unsigned int bit_rate_scale;
96     unsigned int cpb_size_scale;
97     unsigned int bit_rate_value_minus1[32];
98     unsigned int cpb_size_value_minus1[32];
99     char cbr_flag[32];
100     unsigned int initial_cpb_removal_delay_length_minus1;
101     unsigned int cpb_removal_delay_length_minus1;
102     unsigned int dpb_output_delay_length_minus1;
103     unsigned int time_offset_length;
104
105     unsigned int initial_cpb_removal_delay;
106     unsigned int initial_cpb_removal_delay_offset;
107
108     unsigned int pic_struct;
109 } VAAPIEncodeH264MiscSequenceParams;
110
111 // This structure contains all possibly-useful per-slice syntax elements
112 // which are not already contained in the various VAAPI structures.
113 typedef struct VAAPIEncodeH264MiscSliceParams {
114     unsigned int nal_unit_type;
115     unsigned int nal_ref_idc;
116
117     unsigned int colour_plane_id;
118     char field_pic_flag;
119     char bottom_field_flag;
120
121     unsigned int redundant_pic_cnt;
122
123     char sp_for_switch_flag;
124     int slice_qs_delta;
125
126     char ref_pic_list_modification_flag_l0;
127     char ref_pic_list_modification_flag_l1;
128
129     char no_output_of_prior_pics_flag;
130     char long_term_reference_flag;
131     char adaptive_ref_pic_marking_mode_flag;
132 } VAAPIEncodeH264MiscSliceParams;
133
134 typedef struct VAAPIEncodeH264Slice {
135     VAAPIEncodeH264MiscSliceParams misc_slice_params;
136 } VAAPIEncodeH264Slice;
137
138 typedef struct VAAPIEncodeH264Context {
139     VAAPIEncodeH264MiscSequenceParams misc_sequence_params;
140
141     int mb_width;
142     int mb_height;
143
144     int fixed_qp_idr;
145     int fixed_qp_p;
146     int fixed_qp_b;
147
148     int next_frame_num;
149     int64_t last_idr_frame;
150     int64_t idr_pic_count;
151
152     int cpb_delay;
153     int dpb_delay;
154
155     // Rate control configuration.
156     int send_timing_sei;
157
158 #if VA_CHECK_VERSION(0, 36, 0)
159     // Speed-quality tradeoff setting.
160     struct {
161         VAEncMiscParameterBuffer misc;
162         VAEncMiscParameterBufferQualityLevel quality;
163     } quality_params;
164 #endif
165 } VAAPIEncodeH264Context;
166
167 typedef struct VAAPIEncodeH264Options {
168     int qp;
169     int quality;
170     int low_power;
171 } VAAPIEncodeH264Options;
172
173
174 #define vseq_var(name)     vseq->name, name
175 #define vseq_field(name)   vseq->seq_fields.bits.name, name
176 #define vvui_field(name)   vseq->vui_fields.bits.name, name
177 #define vpic_var(name)     vpic->name, name
178 #define vpic_field(name)   vpic->pic_fields.bits.name, name
179 #define vslice_var(name)   vslice->name, name
180 #define vslice_field(name) vslice->slice_fields.bits.name, name
181 #define mseq_var(name)     mseq->name, name
182 #define mslice_var(name)   mslice->name, name
183
184 static void vaapi_encode_h264_write_nal_header(PutBitContext *pbc,
185                                                int nal_unit_type, int nal_ref_idc)
186 {
187     u(1, 0, forbidden_zero_bit);
188     u(2, nal_ref_idc, nal_ref_idc);
189     u(5, nal_unit_type, nal_unit_type);
190 }
191
192 static void vaapi_encode_h264_write_trailing_rbsp(PutBitContext *pbc)
193 {
194     u(1, 1, rbsp_stop_one_bit);
195     while (put_bits_count(pbc) & 7)
196         u(1, 0, rbsp_alignment_zero_bit);
197 }
198
199 static void vaapi_encode_h264_write_vui(PutBitContext *pbc,
200                                         VAAPIEncodeContext *ctx)
201 {
202     VAEncSequenceParameterBufferH264  *vseq = ctx->codec_sequence_params;
203     VAAPIEncodeH264Context            *priv = ctx->priv_data;
204     VAAPIEncodeH264MiscSequenceParams *mseq = &priv->misc_sequence_params;
205     int i;
206
207     u(1, vvui_field(aspect_ratio_info_present_flag));
208     if (vseq->vui_fields.bits.aspect_ratio_info_present_flag) {
209         u(8, vseq_var(aspect_ratio_idc));
210         if (vseq->aspect_ratio_idc == 255) {
211             u(16, vseq_var(sar_width));
212             u(16, vseq_var(sar_height));
213         }
214     }
215
216     u(1, mseq_var(overscan_info_present_flag));
217     if (mseq->overscan_info_present_flag)
218         u(1, mseq_var(overscan_appropriate_flag));
219
220     u(1, mseq_var(video_signal_type_present_flag));
221     if (mseq->video_signal_type_present_flag) {
222         u(3, mseq_var(video_format));
223         u(1, mseq_var(video_full_range_flag));
224         u(1, mseq_var(colour_description_present_flag));
225         if (mseq->colour_description_present_flag) {
226             u(8, mseq_var(colour_primaries));
227             u(8, mseq_var(transfer_characteristics));
228             u(8, mseq_var(matrix_coefficients));
229         }
230     }
231
232     u(1, mseq_var(chroma_loc_info_present_flag));
233     if (mseq->chroma_loc_info_present_flag) {
234         ue(mseq_var(chroma_sample_loc_type_top_field));
235         ue(mseq_var(chroma_sample_loc_type_bottom_field));
236     }
237
238     u(1, vvui_field(timing_info_present_flag));
239     if (vseq->vui_fields.bits.timing_info_present_flag) {
240         u(32, vseq_var(num_units_in_tick));
241         u(32, vseq_var(time_scale));
242         u(1, mseq_var(fixed_frame_rate_flag));
243     }
244
245     u(1, mseq_var(nal_hrd_parameters_present_flag));
246     if (mseq->nal_hrd_parameters_present_flag) {
247         ue(mseq_var(cpb_cnt_minus1));
248         u(4, mseq_var(bit_rate_scale));
249         u(4, mseq_var(cpb_size_scale));
250         for (i = 0; i <= mseq->cpb_cnt_minus1; i++) {
251             ue(mseq_var(bit_rate_value_minus1[i]));
252             ue(mseq_var(cpb_size_value_minus1[i]));
253             u(1, mseq_var(cbr_flag[i]));
254         }
255         u(5, mseq_var(initial_cpb_removal_delay_length_minus1));
256         u(5, mseq_var(cpb_removal_delay_length_minus1));
257         u(5, mseq_var(dpb_output_delay_length_minus1));
258         u(5, mseq_var(time_offset_length));
259     }
260     u(1, mseq_var(vcl_hrd_parameters_present_flag));
261     if (mseq->vcl_hrd_parameters_present_flag) {
262         av_assert0(0 && "vcl hrd parameters not supported");
263     }
264
265     if (mseq->nal_hrd_parameters_present_flag ||
266         mseq->vcl_hrd_parameters_present_flag)
267         u(1, mseq_var(low_delay_hrd_flag));
268     u(1, mseq_var(pic_struct_present_flag));
269
270     u(1, vvui_field(bitstream_restriction_flag));
271     if (vseq->vui_fields.bits.bitstream_restriction_flag) {
272         u(1, mseq_var(motion_vectors_over_pic_boundaries_flag));
273         ue(mseq_var(max_bytes_per_pic_denom));
274         ue(mseq_var(max_bits_per_mb_denom));
275         ue(vvui_field(log2_max_mv_length_horizontal));
276         ue(vvui_field(log2_max_mv_length_vertical));
277         ue(mseq_var(max_num_reorder_frames));
278         ue(mseq_var(max_dec_pic_buffering));
279     }
280 }
281
282 static void vaapi_encode_h264_write_sps(PutBitContext *pbc,
283                                         VAAPIEncodeContext *ctx)
284 {
285     VAEncSequenceParameterBufferH264  *vseq = ctx->codec_sequence_params;
286     VAAPIEncodeH264Context            *priv = ctx->priv_data;
287     VAAPIEncodeH264MiscSequenceParams *mseq = &priv->misc_sequence_params;
288     int i;
289
290     vaapi_encode_h264_write_nal_header(pbc, H264_NAL_SPS, 3);
291
292     u(8, mseq_var(profile_idc));
293     u(1, mseq_var(constraint_set0_flag));
294     u(1, mseq_var(constraint_set1_flag));
295     u(1, mseq_var(constraint_set2_flag));
296     u(1, mseq_var(constraint_set3_flag));
297     u(1, mseq_var(constraint_set4_flag));
298     u(1, mseq_var(constraint_set5_flag));
299     u(2, 0, reserved_zero_2bits);
300
301     u(8, vseq_var(level_idc));
302
303     ue(vseq_var(seq_parameter_set_id));
304
305     if (mseq->profile_idc == 100 || mseq->profile_idc == 110 ||
306         mseq->profile_idc == 122 || mseq->profile_idc == 244 ||
307         mseq->profile_idc ==  44 || mseq->profile_idc ==  83 ||
308         mseq->profile_idc ==  86 || mseq->profile_idc == 118 ||
309         mseq->profile_idc == 128 || mseq->profile_idc == 138) {
310         ue(vseq_field(chroma_format_idc));
311
312         if (vseq->seq_fields.bits.chroma_format_idc == 3)
313             u(1, mseq_var(separate_colour_plane_flag));
314
315         ue(vseq_var(bit_depth_luma_minus8));
316         ue(vseq_var(bit_depth_chroma_minus8));
317
318         u(1, mseq_var(qpprime_y_zero_transform_bypass_flag));
319
320         u(1, vseq_field(seq_scaling_matrix_present_flag));
321         if (vseq->seq_fields.bits.seq_scaling_matrix_present_flag) {
322             av_assert0(0 && "scaling matrices not supported");
323         }
324     }
325
326     ue(vseq_field(log2_max_frame_num_minus4));
327     ue(vseq_field(pic_order_cnt_type));
328
329     if (vseq->seq_fields.bits.pic_order_cnt_type == 0) {
330         ue(vseq_field(log2_max_pic_order_cnt_lsb_minus4));
331     } else if (vseq->seq_fields.bits.pic_order_cnt_type == 1) {
332         u(1, mseq_var(delta_pic_order_always_zero_flag));
333         se(vseq_var(offset_for_non_ref_pic));
334         se(vseq_var(offset_for_top_to_bottom_field));
335         ue(vseq_var(num_ref_frames_in_pic_order_cnt_cycle));
336
337         for (i = 0; i < vseq->num_ref_frames_in_pic_order_cnt_cycle; i++)
338             se(vseq_var(offset_for_ref_frame[i]));
339     }
340
341     ue(vseq_var(max_num_ref_frames));
342     u(1, mseq_var(gaps_in_frame_num_allowed_flag));
343
344     ue(vseq->picture_width_in_mbs  - 1, pic_width_in_mbs_minus1);
345     ue(vseq->picture_height_in_mbs - 1, pic_height_in_mbs_minus1);
346
347     u(1, vseq_field(frame_mbs_only_flag));
348     if (!vseq->seq_fields.bits.frame_mbs_only_flag)
349         u(1, vseq_field(mb_adaptive_frame_field_flag));
350
351     u(1, vseq_field(direct_8x8_inference_flag));
352
353     u(1, vseq_var(frame_cropping_flag));
354     if (vseq->frame_cropping_flag) {
355         ue(vseq_var(frame_crop_left_offset));
356         ue(vseq_var(frame_crop_right_offset));
357         ue(vseq_var(frame_crop_top_offset));
358         ue(vseq_var(frame_crop_bottom_offset));
359     }
360
361     u(1, vseq_var(vui_parameters_present_flag));
362     if (vseq->vui_parameters_present_flag)
363         vaapi_encode_h264_write_vui(pbc, ctx);
364
365     vaapi_encode_h264_write_trailing_rbsp(pbc);
366 }
367
368 static void vaapi_encode_h264_write_pps(PutBitContext *pbc,
369                                         VAAPIEncodeContext *ctx)
370 {
371     VAEncPictureParameterBufferH264   *vpic = ctx->codec_picture_params;
372     VAAPIEncodeH264Context            *priv = ctx->priv_data;
373     VAAPIEncodeH264MiscSequenceParams *mseq = &priv->misc_sequence_params;
374
375     vaapi_encode_h264_write_nal_header(pbc, H264_NAL_PPS, 3);
376
377     ue(vpic_var(pic_parameter_set_id));
378     ue(vpic_var(seq_parameter_set_id));
379
380     u(1, vpic_field(entropy_coding_mode_flag));
381     u(1, mseq_var(bottom_field_pic_order_in_frame_present_flag));
382
383     ue(mseq_var(num_slice_groups_minus1));
384     if (mseq->num_slice_groups_minus1 > 0) {
385         ue(mseq_var(slice_group_map_type));
386         av_assert0(0 && "slice groups not supported");
387     }
388
389     ue(vpic_var(num_ref_idx_l0_active_minus1));
390     ue(vpic_var(num_ref_idx_l1_active_minus1));
391
392     u(1, vpic_field(weighted_pred_flag));
393     u(2, vpic_field(weighted_bipred_idc));
394
395     se(vpic->pic_init_qp - 26, pic_init_qp_minus26);
396     se(mseq_var(pic_init_qs_minus26));
397     se(vpic_var(chroma_qp_index_offset));
398
399     u(1, vpic_field(deblocking_filter_control_present_flag));
400     u(1, vpic_field(constrained_intra_pred_flag));
401     u(1, vpic_field(redundant_pic_cnt_present_flag));
402     u(1, vpic_field(transform_8x8_mode_flag));
403
404     u(1, vpic_field(pic_scaling_matrix_present_flag));
405     if (vpic->pic_fields.bits.pic_scaling_matrix_present_flag) {
406         av_assert0(0 && "scaling matrices not supported");
407     }
408
409     se(vpic_var(second_chroma_qp_index_offset));
410
411     vaapi_encode_h264_write_trailing_rbsp(pbc);
412 }
413
414 static void vaapi_encode_h264_write_slice_header2(PutBitContext *pbc,
415                                                   VAAPIEncodeContext *ctx,
416                                                   VAAPIEncodePicture *pic,
417                                                   VAAPIEncodeSlice *slice)
418 {
419     VAEncSequenceParameterBufferH264  *vseq = ctx->codec_sequence_params;
420     VAEncPictureParameterBufferH264   *vpic = pic->codec_picture_params;
421     VAEncSliceParameterBufferH264   *vslice = slice->codec_slice_params;
422     VAAPIEncodeH264Context            *priv = ctx->priv_data;
423     VAAPIEncodeH264MiscSequenceParams *mseq = &priv->misc_sequence_params;
424     VAAPIEncodeH264Slice            *pslice = slice->priv_data;
425     VAAPIEncodeH264MiscSliceParams  *mslice = &pslice->misc_slice_params;
426
427     vaapi_encode_h264_write_nal_header(pbc, mslice->nal_unit_type,
428                                        mslice->nal_ref_idc);
429
430     ue(vslice->macroblock_address, first_mb_in_slice);
431     ue(vslice_var(slice_type));
432     ue(vpic_var(pic_parameter_set_id));
433
434     if (mseq->separate_colour_plane_flag) {
435         u(2, mslice_var(colour_plane_id));
436     }
437
438     u(4 + vseq->seq_fields.bits.log2_max_frame_num_minus4,
439       (vpic->frame_num &
440        ((1 << (4 + vseq->seq_fields.bits.log2_max_frame_num_minus4)) - 1)),
441       frame_num);
442
443     if (!vseq->seq_fields.bits.frame_mbs_only_flag) {
444         u(1, mslice_var(field_pic_flag));
445         if (mslice->field_pic_flag)
446             u(1, mslice_var(bottom_field_flag));
447     }
448
449     if (vpic->pic_fields.bits.idr_pic_flag) {
450         ue(vslice_var(idr_pic_id));
451     }
452
453     if (vseq->seq_fields.bits.pic_order_cnt_type == 0) {
454         u(4 + vseq->seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4,
455           vslice_var(pic_order_cnt_lsb));
456         if (mseq->bottom_field_pic_order_in_frame_present_flag &&
457             !mslice->field_pic_flag) {
458             se(vslice_var(delta_pic_order_cnt_bottom));
459         }
460     }
461
462     if (vseq->seq_fields.bits.pic_order_cnt_type == 1 &&
463         !vseq->seq_fields.bits.delta_pic_order_always_zero_flag) {
464         se(vslice_var(delta_pic_order_cnt[0]));
465         if (mseq->bottom_field_pic_order_in_frame_present_flag &&
466             !mslice->field_pic_flag) {
467             se(vslice_var(delta_pic_order_cnt[1]));
468         }
469     }
470
471     if (vpic->pic_fields.bits.redundant_pic_cnt_present_flag) {
472         ue(mslice_var(redundant_pic_cnt));
473     }
474
475     if (vslice->slice_type == SLICE_TYPE_B) {
476         u(1, vslice_var(direct_spatial_mv_pred_flag));
477     }
478
479     if (vslice->slice_type == SLICE_TYPE_P ||
480         vslice->slice_type == SLICE_TYPE_SP ||
481         vslice->slice_type == SLICE_TYPE_B) {
482         u(1, vslice_var(num_ref_idx_active_override_flag));
483         if (vslice->num_ref_idx_active_override_flag) {
484             ue(vslice_var(num_ref_idx_l0_active_minus1));
485             if (vslice->slice_type == SLICE_TYPE_B)
486                 ue(vslice_var(num_ref_idx_l1_active_minus1));
487         }
488     }
489
490     if (mslice->nal_unit_type == 20 || mslice->nal_unit_type == 21) {
491         av_assert0(0 && "no MVC support");
492     } else {
493         if (vslice->slice_type % 5 != 2 && vslice->slice_type % 5 != 4) {
494             u(1, mslice_var(ref_pic_list_modification_flag_l0));
495             if (mslice->ref_pic_list_modification_flag_l0) {
496                 av_assert0(0 && "ref pic list modification");
497             }
498         }
499         if (vslice->slice_type % 5 == 1) {
500             u(1, mslice_var(ref_pic_list_modification_flag_l1));
501             if (mslice->ref_pic_list_modification_flag_l1) {
502                 av_assert0(0 && "ref pic list modification");
503             }
504         }
505     }
506
507     if ((vpic->pic_fields.bits.weighted_pred_flag &&
508          (vslice->slice_type == SLICE_TYPE_P ||
509           vslice->slice_type == SLICE_TYPE_SP)) ||
510         (vpic->pic_fields.bits.weighted_bipred_idc == 1 &&
511          vslice->slice_type == SLICE_TYPE_B)) {
512         av_assert0(0 && "prediction weights not supported");
513     }
514
515     av_assert0(mslice->nal_ref_idc > 0 ==
516                vpic->pic_fields.bits.reference_pic_flag);
517     if (mslice->nal_ref_idc != 0) {
518         if (vpic->pic_fields.bits.idr_pic_flag) {
519             u(1, mslice_var(no_output_of_prior_pics_flag));
520             u(1, mslice_var(long_term_reference_flag));
521         } else {
522             u(1, mslice_var(adaptive_ref_pic_marking_mode_flag));
523             if (mslice->adaptive_ref_pic_marking_mode_flag) {
524                 av_assert0(0 && "MMCOs not supported");
525             }
526         }
527     }
528
529     if (vpic->pic_fields.bits.entropy_coding_mode_flag &&
530         vslice->slice_type != SLICE_TYPE_I &&
531         vslice->slice_type != SLICE_TYPE_SI) {
532         ue(vslice_var(cabac_init_idc));
533     }
534
535     se(vslice_var(slice_qp_delta));
536     if (vslice->slice_type == SLICE_TYPE_SP ||
537         vslice->slice_type == SLICE_TYPE_SI) {
538         if (vslice->slice_type == SLICE_TYPE_SP)
539             u(1, mslice_var(sp_for_switch_flag));
540         se(mslice_var(slice_qs_delta));
541     }
542
543     if (vpic->pic_fields.bits.deblocking_filter_control_present_flag) {
544         ue(vslice_var(disable_deblocking_filter_idc));
545         if (vslice->disable_deblocking_filter_idc != 1) {
546             se(vslice_var(slice_alpha_c0_offset_div2));
547             se(vslice_var(slice_beta_offset_div2));
548         }
549     }
550
551     if (mseq->num_slice_groups_minus1 > 0 &&
552         mseq->slice_group_map_type >= 3 && mseq->slice_group_map_type <= 5) {
553         av_assert0(0 && "slice groups not supported");
554     }
555
556     // No alignment - this need not be a byte boundary.
557 }
558
559 static void vaapi_encode_h264_write_buffering_period(PutBitContext *pbc,
560                                                      VAAPIEncodeContext *ctx,
561                                                      VAAPIEncodePicture *pic)
562 {
563     VAAPIEncodeH264Context            *priv = ctx->priv_data;
564     VAAPIEncodeH264MiscSequenceParams *mseq = &priv->misc_sequence_params;
565     VAEncPictureParameterBufferH264   *vpic = pic->codec_picture_params;
566     int i;
567
568     ue(vpic_var(seq_parameter_set_id));
569
570     if (mseq->nal_hrd_parameters_present_flag) {
571         for (i = 0; i <= mseq->cpb_cnt_minus1; i++) {
572             u(mseq->initial_cpb_removal_delay_length_minus1 + 1,
573               mseq_var(initial_cpb_removal_delay));
574             u(mseq->initial_cpb_removal_delay_length_minus1 + 1,
575               mseq_var(initial_cpb_removal_delay_offset));
576         }
577     }
578     if (mseq->vcl_hrd_parameters_present_flag) {
579         av_assert0(0 && "vcl hrd parameters not supported");
580     }
581 }
582
583 static void vaapi_encode_h264_write_pic_timing(PutBitContext *pbc,
584                                                VAAPIEncodeContext *ctx,
585                                                VAAPIEncodePicture *pic)
586 {
587     VAEncSequenceParameterBufferH264  *vseq = ctx->codec_sequence_params;
588     VAAPIEncodeH264Context            *priv = ctx->priv_data;
589     VAAPIEncodeH264MiscSequenceParams *mseq = &priv->misc_sequence_params;
590     int i, num_clock_ts;
591
592     if (mseq->nal_hrd_parameters_present_flag ||
593         mseq->vcl_hrd_parameters_present_flag) {
594         u(mseq->cpb_removal_delay_length_minus1 + 1,
595           2 * vseq->num_units_in_tick * priv->cpb_delay,
596           cpb_removal_delay);
597         u(mseq->dpb_output_delay_length_minus1 + 1,
598           2 * vseq->num_units_in_tick * priv->dpb_delay,
599           dpb_output_delay);
600     }
601     if (mseq->pic_struct_present_flag) {
602         u(4, mseq_var(pic_struct));
603         num_clock_ts = (mseq->pic_struct <= 2 ? 1 :
604                         mseq->pic_struct <= 4 ? 2 :
605                         mseq->pic_struct <= 8 ? 3 : 0);
606         for (i = 0; i < num_clock_ts; i++) {
607             u(1, 0, clock_timestamp_flag[i]);
608             // No full timestamp information.
609         }
610     }
611 }
612
613 static void vaapi_encode_h264_write_identifier(PutBitContext *pbc,
614                                                VAAPIEncodeContext *ctx,
615                                                VAAPIEncodePicture *pic)
616 {
617     const char *lavc   = LIBAVCODEC_IDENT;
618     const char *vaapi  = VA_VERSION_S;
619     const char *driver = vaQueryVendorString(ctx->hwctx->display);
620     char tmp[256];
621     int i;
622
623     // Random (version 4) ISO 11578 UUID.
624     uint8_t uuid[16] = {
625         0x59, 0x94, 0x8b, 0x28, 0x11, 0xec, 0x45, 0xaf,
626         0x96, 0x75, 0x19, 0xd4, 0x1f, 0xea, 0xa9, 0x4d,
627     };
628
629     for (i = 0; i < 16; i++)
630         u(8, uuid[i], uuid_iso_iec_11578);
631
632     snprintf(tmp, sizeof(tmp), "%s / VAAPI %s / %s", lavc, vaapi, driver);
633     for (i = 0; i < sizeof(tmp) && tmp[i]; i++)
634         u(8, tmp[i], user_data_payload_byte);
635 }
636
637 static void vaapi_encode_h264_write_sei(PutBitContext *pbc,
638                                         VAAPIEncodeContext *ctx,
639                                         VAAPIEncodePicture *pic)
640 {
641     VAAPIEncodeH264Context *priv = ctx->priv_data;
642     PutBitContext payload_bits;
643     char payload[256];
644     int payload_type, payload_size, i;
645     void (*write_payload)(PutBitContext *pbc,
646                           VAAPIEncodeContext *ctx,
647                           VAAPIEncodePicture *pic) = NULL;
648
649     vaapi_encode_h264_write_nal_header(pbc, H264_NAL_SEI, 0);
650
651     for (payload_type = 0; payload_type < 64; payload_type++) {
652         switch (payload_type) {
653         case SEI_TYPE_BUFFERING_PERIOD:
654             if (!priv->send_timing_sei ||
655                 pic->type != PICTURE_TYPE_IDR)
656                 continue;
657             write_payload = &vaapi_encode_h264_write_buffering_period;
658             break;
659         case SEI_TYPE_PIC_TIMING:
660             if (!priv->send_timing_sei)
661                 continue;
662             write_payload = &vaapi_encode_h264_write_pic_timing;
663             break;
664         case SEI_TYPE_USER_DATA_UNREGISTERED:
665             if (pic->encode_order != 0)
666                 continue;
667             write_payload = &vaapi_encode_h264_write_identifier;
668             break;
669         default:
670             continue;
671         }
672
673         init_put_bits(&payload_bits, payload, sizeof(payload));
674         write_payload(&payload_bits, ctx, pic);
675         if (put_bits_count(&payload_bits) & 7) {
676             write_u(&payload_bits, 1, 1, bit_equal_to_one);
677             while (put_bits_count(&payload_bits) & 7)
678                 write_u(&payload_bits, 1, 0, bit_equal_to_zero);
679         }
680         payload_size = put_bits_count(&payload_bits) / 8;
681         flush_put_bits(&payload_bits);
682
683         u(8, payload_type, last_payload_type_byte);
684         u(8, payload_size, last_payload_size_byte);
685         for (i = 0; i < payload_size; i++)
686             u(8, payload[i] & 0xff, sei_payload);
687     }
688
689     vaapi_encode_h264_write_trailing_rbsp(pbc);
690 }
691
692 static int vaapi_encode_h264_write_sequence_header(AVCodecContext *avctx,
693                                                    char *data, size_t *data_len)
694 {
695     VAAPIEncodeContext *ctx = avctx->priv_data;
696     PutBitContext pbc;
697     char tmp[256];
698     int err;
699     size_t nal_len, bit_len, bit_pos, next_len;
700
701     bit_len = *data_len;
702     bit_pos = 0;
703
704     init_put_bits(&pbc, tmp, sizeof(tmp));
705     vaapi_encode_h264_write_sps(&pbc, ctx);
706     nal_len = put_bits_count(&pbc);
707     flush_put_bits(&pbc);
708
709     next_len = bit_len - bit_pos;
710     err = ff_vaapi_encode_h26x_nal_unit_to_byte_stream(data + bit_pos / 8,
711                                                        &next_len,
712                                                        tmp, nal_len);
713     if (err < 0)
714         return err;
715     bit_pos += next_len;
716
717     init_put_bits(&pbc, tmp, sizeof(tmp));
718     vaapi_encode_h264_write_pps(&pbc, ctx);
719     nal_len = put_bits_count(&pbc);
720     flush_put_bits(&pbc);
721
722     next_len = bit_len - bit_pos;
723     err = ff_vaapi_encode_h26x_nal_unit_to_byte_stream(data + bit_pos / 8,
724                                                        &next_len,
725                                                        tmp, nal_len);
726     if (err < 0)
727         return err;
728     bit_pos += next_len;
729
730     *data_len = bit_pos;
731     return 0;
732 }
733
734 static int vaapi_encode_h264_write_slice_header(AVCodecContext *avctx,
735                                                 VAAPIEncodePicture *pic,
736                                                 VAAPIEncodeSlice *slice,
737                                                 char *data, size_t *data_len)
738 {
739     VAAPIEncodeContext *ctx = avctx->priv_data;
740     PutBitContext pbc;
741     char tmp[256];
742     size_t header_len;
743
744     init_put_bits(&pbc, tmp, sizeof(tmp));
745     vaapi_encode_h264_write_slice_header2(&pbc, ctx, pic, slice);
746     header_len = put_bits_count(&pbc);
747     flush_put_bits(&pbc);
748
749     return ff_vaapi_encode_h26x_nal_unit_to_byte_stream(data, data_len,
750                                                         tmp, header_len);
751 }
752
753 static int vaapi_encode_h264_write_extra_header(AVCodecContext *avctx,
754                                                 VAAPIEncodePicture *pic,
755                                                 int index, int *type,
756                                                 char *data, size_t *data_len)
757 {
758     VAAPIEncodeContext *ctx = avctx->priv_data;
759     PutBitContext pbc;
760     char tmp[256];
761     size_t header_len;
762
763     if (index == 0 && ctx->va_rc_mode == VA_RC_CBR) {
764         *type = VAEncPackedHeaderH264_SEI;
765
766         init_put_bits(&pbc, tmp, sizeof(tmp));
767         vaapi_encode_h264_write_sei(&pbc, ctx, pic);
768         header_len = put_bits_count(&pbc);
769         flush_put_bits(&pbc);
770
771         return ff_vaapi_encode_h26x_nal_unit_to_byte_stream(data, data_len,
772                                                             tmp, header_len);
773
774     } else {
775         return AVERROR_EOF;
776     }
777 }
778
779 static int vaapi_encode_h264_init_sequence_params(AVCodecContext *avctx)
780 {
781     VAAPIEncodeContext                 *ctx = avctx->priv_data;
782     VAEncSequenceParameterBufferH264  *vseq = ctx->codec_sequence_params;
783     VAEncPictureParameterBufferH264   *vpic = ctx->codec_picture_params;
784     VAAPIEncodeH264Context            *priv = ctx->priv_data;
785     VAAPIEncodeH264MiscSequenceParams *mseq = &priv->misc_sequence_params;
786     int i;
787
788     {
789         vseq->seq_parameter_set_id = 0;
790
791         vseq->level_idc = avctx->level;
792
793         vseq->max_num_ref_frames = 1 + (avctx->max_b_frames > 0);
794
795         vseq->picture_width_in_mbs  = priv->mb_width;
796         vseq->picture_height_in_mbs = priv->mb_height;
797
798         vseq->seq_fields.bits.chroma_format_idc = 1;
799         vseq->seq_fields.bits.frame_mbs_only_flag = 1;
800         vseq->seq_fields.bits.direct_8x8_inference_flag = 1;
801         vseq->seq_fields.bits.log2_max_frame_num_minus4 = 4;
802         vseq->seq_fields.bits.pic_order_cnt_type = 0;
803
804         if (avctx->width  != ctx->surface_width ||
805             avctx->height != ctx->surface_height) {
806             vseq->frame_cropping_flag = 1;
807
808             vseq->frame_crop_left_offset   = 0;
809             vseq->frame_crop_right_offset  =
810                 (ctx->surface_width - avctx->width) / 2;
811             vseq->frame_crop_top_offset    = 0;
812             vseq->frame_crop_bottom_offset =
813                 (ctx->surface_height - avctx->height) / 2;
814         } else {
815             vseq->frame_cropping_flag = 0;
816         }
817
818         vseq->vui_parameters_present_flag = 1;
819         if (avctx->sample_aspect_ratio.num != 0) {
820             vseq->vui_fields.bits.aspect_ratio_info_present_flag = 1;
821             // There is a large enum of these which we could support
822             // individually rather than using the generic X/Y form?
823             if (avctx->sample_aspect_ratio.num ==
824                 avctx->sample_aspect_ratio.den) {
825                 vseq->aspect_ratio_idc = 1;
826             } else {
827                 vseq->aspect_ratio_idc = 255; // Extended SAR.
828                 vseq->sar_width  = avctx->sample_aspect_ratio.num;
829                 vseq->sar_height = avctx->sample_aspect_ratio.den;
830             }
831         }
832         if (avctx->color_primaries != AVCOL_PRI_UNSPECIFIED ||
833             avctx->color_trc       != AVCOL_TRC_UNSPECIFIED ||
834             avctx->colorspace      != AVCOL_SPC_UNSPECIFIED) {
835             mseq->video_signal_type_present_flag = 1;
836             mseq->video_format             = 5; // Unspecified.
837             mseq->video_full_range_flag    = 0;
838             mseq->colour_description_present_flag = 1;
839             // These enums are derived from the standard and hence
840             // we can just use the values directly.
841             mseq->colour_primaries         = avctx->color_primaries;
842             mseq->transfer_characteristics = avctx->color_trc;
843             mseq->matrix_coefficients      = avctx->colorspace;
844         }
845
846         vseq->vui_fields.bits.bitstream_restriction_flag = 1;
847         mseq->motion_vectors_over_pic_boundaries_flag = 1;
848         mseq->max_bytes_per_pic_denom = 0;
849         mseq->max_bits_per_mb_denom   = 0;
850         vseq->vui_fields.bits.log2_max_mv_length_horizontal = 16;
851         vseq->vui_fields.bits.log2_max_mv_length_vertical   = 16;
852
853         mseq->max_num_reorder_frames = (avctx->max_b_frames > 0);
854         mseq->max_dec_pic_buffering  = vseq->max_num_ref_frames;
855
856         vseq->bits_per_second = avctx->bit_rate;
857
858         vseq->vui_fields.bits.timing_info_present_flag = 1;
859         if (avctx->framerate.num > 0 && avctx->framerate.den > 0) {
860             vseq->num_units_in_tick = avctx->framerate.den;
861             vseq->time_scale        = 2 * avctx->framerate.num;
862             mseq->fixed_frame_rate_flag = 1;
863         } else {
864             vseq->num_units_in_tick = avctx->time_base.num;
865             vseq->time_scale        = 2 * avctx->time_base.den;
866             mseq->fixed_frame_rate_flag = 0;
867         }
868
869         if (ctx->va_rc_mode == VA_RC_CBR) {
870             priv->send_timing_sei = 1;
871             mseq->nal_hrd_parameters_present_flag = 1;
872
873             mseq->cpb_cnt_minus1 = 0;
874
875             // Try to scale these to a sensible range so that the
876             // golomb encode of the value is not overlong.
877             mseq->bit_rate_scale =
878                 av_clip_uintp2(av_log2(avctx->bit_rate) - 15 - 6, 4);
879             mseq->bit_rate_value_minus1[0] =
880                 (avctx->bit_rate >> mseq->bit_rate_scale + 6) - 1;
881
882             mseq->cpb_size_scale =
883                 av_clip_uintp2(av_log2(ctx->hrd_params.hrd.buffer_size) - 15 - 4, 4);
884             mseq->cpb_size_value_minus1[0] =
885                 (ctx->hrd_params.hrd.buffer_size >> mseq->cpb_size_scale + 4) - 1;
886
887             // CBR mode isn't actually available here, despite naming.
888             mseq->cbr_flag[0] = 0;
889
890             mseq->initial_cpb_removal_delay_length_minus1 = 23;
891             mseq->cpb_removal_delay_length_minus1         = 23;
892             mseq->dpb_output_delay_length_minus1          = 7;
893             mseq->time_offset_length = 0;
894
895             // This calculation can easily overflow 32 bits.
896             mseq->initial_cpb_removal_delay = 90000 *
897                 (uint64_t)ctx->hrd_params.hrd.initial_buffer_fullness /
898                 ctx->hrd_params.hrd.buffer_size;
899
900             mseq->initial_cpb_removal_delay_offset = 0;
901         } else {
902             priv->send_timing_sei = 0;
903             mseq->nal_hrd_parameters_present_flag = 0;
904         }
905
906         vseq->intra_period     = ctx->p_per_i * (ctx->b_per_p + 1);
907         vseq->intra_idr_period = vseq->intra_period;
908         vseq->ip_period        = ctx->b_per_p + 1;
909     }
910
911     {
912         vpic->CurrPic.picture_id = VA_INVALID_ID;
913         vpic->CurrPic.flags      = VA_PICTURE_H264_INVALID;
914
915         for (i = 0; i < FF_ARRAY_ELEMS(vpic->ReferenceFrames); i++) {
916             vpic->ReferenceFrames[i].picture_id = VA_INVALID_ID;
917             vpic->ReferenceFrames[i].flags      = VA_PICTURE_H264_INVALID;
918         }
919
920         vpic->coded_buf = VA_INVALID_ID;
921
922         vpic->pic_parameter_set_id = 0;
923         vpic->seq_parameter_set_id = 0;
924
925         vpic->num_ref_idx_l0_active_minus1 = 0;
926         vpic->num_ref_idx_l1_active_minus1 = 0;
927
928         vpic->pic_fields.bits.entropy_coding_mode_flag =
929             ((avctx->profile & 0xff) != 66);
930         vpic->pic_fields.bits.weighted_pred_flag = 0;
931         vpic->pic_fields.bits.weighted_bipred_idc = 0;
932         vpic->pic_fields.bits.transform_8x8_mode_flag =
933             ((avctx->profile & 0xff) >= 100);
934
935         vpic->pic_init_qp = priv->fixed_qp_idr;
936     }
937
938     {
939         mseq->profile_idc = avctx->profile & 0xff;
940
941         if (avctx->profile & FF_PROFILE_H264_CONSTRAINED)
942             mseq->constraint_set1_flag = 1;
943         if (avctx->profile & FF_PROFILE_H264_INTRA)
944             mseq->constraint_set3_flag = 1;
945     }
946
947     return 0;
948 }
949
950 static int vaapi_encode_h264_init_picture_params(AVCodecContext *avctx,
951                                                  VAAPIEncodePicture *pic)
952 {
953     VAAPIEncodeContext                *ctx = avctx->priv_data;
954     VAEncSequenceParameterBufferH264 *vseq = ctx->codec_sequence_params;
955     VAEncPictureParameterBufferH264  *vpic = pic->codec_picture_params;
956     VAAPIEncodeH264Context           *priv = ctx->priv_data;
957     int i;
958
959     if (pic->type == PICTURE_TYPE_IDR) {
960         av_assert0(pic->display_order == pic->encode_order);
961         vpic->frame_num = 0;
962         priv->next_frame_num = 1;
963         priv->cpb_delay = 0;
964         priv->last_idr_frame = pic->display_order;
965     } else {
966         vpic->frame_num = priv->next_frame_num;
967         if (pic->type != PICTURE_TYPE_B) {
968             // nal_ref_idc != 0
969             ++priv->next_frame_num;
970         }
971         ++priv->cpb_delay;
972     }
973     priv->dpb_delay = pic->display_order - pic->encode_order + 1;
974
975     vpic->frame_num = vpic->frame_num &
976         ((1 << (4 + vseq->seq_fields.bits.log2_max_frame_num_minus4)) - 1);
977
978     vpic->CurrPic.picture_id          = pic->recon_surface;
979     vpic->CurrPic.frame_idx           = vpic->frame_num;
980     vpic->CurrPic.flags               = 0;
981     vpic->CurrPic.TopFieldOrderCnt    = pic->display_order - priv->last_idr_frame;
982     vpic->CurrPic.BottomFieldOrderCnt = pic->display_order - priv->last_idr_frame;
983
984     for (i = 0; i < pic->nb_refs; i++) {
985         VAAPIEncodePicture *ref = pic->refs[i];
986         av_assert0(ref && ref->encode_order < pic->encode_order);
987         vpic->ReferenceFrames[i].picture_id = ref->recon_surface;
988         vpic->ReferenceFrames[i].frame_idx  = ref->encode_order;
989         vpic->ReferenceFrames[i].flags = VA_PICTURE_H264_SHORT_TERM_REFERENCE;
990         vpic->ReferenceFrames[i].TopFieldOrderCnt    = ref->display_order - priv->last_idr_frame;
991         vpic->ReferenceFrames[i].BottomFieldOrderCnt = ref->display_order - priv->last_idr_frame;
992     }
993     for (; i < FF_ARRAY_ELEMS(vpic->ReferenceFrames); i++) {
994         vpic->ReferenceFrames[i].picture_id = VA_INVALID_ID;
995         vpic->ReferenceFrames[i].flags = VA_PICTURE_H264_INVALID;
996     }
997
998     vpic->coded_buf = pic->output_buffer;
999
1000     vpic->pic_fields.bits.idr_pic_flag = (pic->type == PICTURE_TYPE_IDR);
1001     vpic->pic_fields.bits.reference_pic_flag = (pic->type != PICTURE_TYPE_B);
1002
1003     pic->nb_slices = 1;
1004
1005     return 0;
1006 }
1007
1008 static int vaapi_encode_h264_init_slice_params(AVCodecContext *avctx,
1009                                                VAAPIEncodePicture *pic,
1010                                                VAAPIEncodeSlice *slice)
1011 {
1012     VAAPIEncodeContext                 *ctx = avctx->priv_data;
1013     VAEncSequenceParameterBufferH264  *vseq = ctx->codec_sequence_params;
1014     VAEncPictureParameterBufferH264   *vpic = pic->codec_picture_params;
1015     VAEncSliceParameterBufferH264   *vslice = slice->codec_slice_params;
1016     VAAPIEncodeH264Context            *priv = ctx->priv_data;
1017     VAAPIEncodeH264Slice            *pslice;
1018     VAAPIEncodeH264MiscSliceParams  *mslice;
1019     int i;
1020
1021     slice->priv_data = av_mallocz(sizeof(*pslice));
1022     if (!slice->priv_data)
1023         return AVERROR(ENOMEM);
1024     pslice = slice->priv_data;
1025     mslice = &pslice->misc_slice_params;
1026
1027     if (pic->type == PICTURE_TYPE_IDR)
1028         mslice->nal_unit_type = H264_NAL_IDR_SLICE;
1029     else
1030         mslice->nal_unit_type = H264_NAL_SLICE;
1031
1032     switch (pic->type) {
1033     case PICTURE_TYPE_IDR:
1034         vslice->slice_type  = SLICE_TYPE_I;
1035         mslice->nal_ref_idc = 3;
1036         break;
1037     case PICTURE_TYPE_I:
1038         vslice->slice_type  = SLICE_TYPE_I;
1039         mslice->nal_ref_idc = 2;
1040         break;
1041     case PICTURE_TYPE_P:
1042         vslice->slice_type  = SLICE_TYPE_P;
1043         mslice->nal_ref_idc = 1;
1044         break;
1045     case PICTURE_TYPE_B:
1046         vslice->slice_type  = SLICE_TYPE_B;
1047         mslice->nal_ref_idc = 0;
1048         break;
1049     default:
1050         av_assert0(0 && "invalid picture type");
1051     }
1052
1053     // Only one slice per frame.
1054     vslice->macroblock_address = 0;
1055     vslice->num_macroblocks = priv->mb_width * priv->mb_height;
1056
1057     vslice->macroblock_info = VA_INVALID_ID;
1058
1059     vslice->pic_parameter_set_id = vpic->pic_parameter_set_id;
1060     vslice->idr_pic_id = priv->idr_pic_count++;
1061
1062     vslice->pic_order_cnt_lsb = (pic->display_order - priv->last_idr_frame) &
1063         ((1 << (4 + vseq->seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4)) - 1);
1064
1065     for (i = 0; i < FF_ARRAY_ELEMS(vslice->RefPicList0); i++) {
1066         vslice->RefPicList0[i].picture_id = VA_INVALID_ID;
1067         vslice->RefPicList0[i].flags      = VA_PICTURE_H264_INVALID;
1068         vslice->RefPicList1[i].picture_id = VA_INVALID_ID;
1069         vslice->RefPicList1[i].flags      = VA_PICTURE_H264_INVALID;
1070     }
1071
1072     av_assert0(pic->nb_refs <= 2);
1073     if (pic->nb_refs >= 1) {
1074         // Backward reference for P- or B-frame.
1075         av_assert0(pic->type == PICTURE_TYPE_P ||
1076                    pic->type == PICTURE_TYPE_B);
1077
1078         vslice->num_ref_idx_l0_active_minus1 = 0;
1079         vslice->RefPicList0[0] = vpic->ReferenceFrames[0];
1080     }
1081     if (pic->nb_refs >= 2) {
1082         // Forward reference for B-frame.
1083         av_assert0(pic->type == PICTURE_TYPE_B);
1084
1085         vslice->num_ref_idx_l1_active_minus1 = 0;
1086         vslice->RefPicList1[0] = vpic->ReferenceFrames[1];
1087     }
1088
1089     if (pic->type == PICTURE_TYPE_B)
1090         vslice->slice_qp_delta = priv->fixed_qp_b - vpic->pic_init_qp;
1091     else if (pic->type == PICTURE_TYPE_P)
1092         vslice->slice_qp_delta = priv->fixed_qp_p - vpic->pic_init_qp;
1093     else
1094         vslice->slice_qp_delta = priv->fixed_qp_idr - vpic->pic_init_qp;
1095
1096     vslice->direct_spatial_mv_pred_flag = 1;
1097
1098     return 0;
1099 }
1100
1101 static av_cold int vaapi_encode_h264_configure(AVCodecContext *avctx)
1102 {
1103     VAAPIEncodeContext      *ctx = avctx->priv_data;
1104     VAAPIEncodeH264Context *priv = ctx->priv_data;
1105     VAAPIEncodeH264Options  *opt = ctx->codec_options;
1106
1107     priv->mb_width  = FFALIGN(avctx->width,  16) / 16;
1108     priv->mb_height = FFALIGN(avctx->height, 16) / 16;
1109
1110     if (ctx->va_rc_mode == VA_RC_CQP) {
1111         priv->fixed_qp_p = opt->qp;
1112         if (avctx->i_quant_factor > 0.0)
1113             priv->fixed_qp_idr = (int)((priv->fixed_qp_p * avctx->i_quant_factor +
1114                                         avctx->i_quant_offset) + 0.5);
1115         else
1116             priv->fixed_qp_idr = priv->fixed_qp_p;
1117         if (avctx->b_quant_factor > 0.0)
1118             priv->fixed_qp_b = (int)((priv->fixed_qp_p * avctx->b_quant_factor +
1119                                       avctx->b_quant_offset) + 0.5);
1120         else
1121             priv->fixed_qp_b = priv->fixed_qp_p;
1122
1123         av_log(avctx, AV_LOG_DEBUG, "Using fixed QP = "
1124                "%d / %d / %d for IDR- / P- / B-frames.\n",
1125                priv->fixed_qp_idr, priv->fixed_qp_p, priv->fixed_qp_b);
1126
1127     } else if (ctx->va_rc_mode == VA_RC_CBR) {
1128         // These still need to be  set for pic_init_qp/slice_qp_delta.
1129         priv->fixed_qp_idr = 26;
1130         priv->fixed_qp_p   = 26;
1131         priv->fixed_qp_b   = 26;
1132
1133         av_log(avctx, AV_LOG_DEBUG, "Using constant-bitrate = %"PRId64" bps.\n",
1134                avctx->bit_rate);
1135
1136     } else {
1137         av_assert0(0 && "Invalid RC mode.");
1138     }
1139
1140     if (opt->quality > 0) {
1141 #if VA_CHECK_VERSION(0, 36, 0)
1142         priv->quality_params.misc.type =
1143             VAEncMiscParameterTypeQualityLevel;
1144         priv->quality_params.quality.quality_level = opt->quality;
1145
1146         ctx->global_params[ctx->nb_global_params] =
1147             &priv->quality_params.misc;
1148         ctx->global_params_size[ctx->nb_global_params++] =
1149             sizeof(priv->quality_params);
1150 #else
1151         av_log(avctx, AV_LOG_WARNING, "The encode quality option is not "
1152                "supported with this VAAPI version.\n");
1153 #endif
1154     }
1155
1156     return 0;
1157 }
1158
1159 static const VAAPIEncodeType vaapi_encode_type_h264 = {
1160     .priv_data_size        = sizeof(VAAPIEncodeH264Context),
1161
1162     .configure             = &vaapi_encode_h264_configure,
1163
1164     .sequence_params_size  = sizeof(VAEncSequenceParameterBufferH264),
1165     .init_sequence_params  = &vaapi_encode_h264_init_sequence_params,
1166
1167     .picture_params_size   = sizeof(VAEncPictureParameterBufferH264),
1168     .init_picture_params   = &vaapi_encode_h264_init_picture_params,
1169
1170     .slice_params_size     = sizeof(VAEncSliceParameterBufferH264),
1171     .init_slice_params     = &vaapi_encode_h264_init_slice_params,
1172
1173     .sequence_header_type  = VAEncPackedHeaderSequence,
1174     .write_sequence_header = &vaapi_encode_h264_write_sequence_header,
1175
1176     .slice_header_type     = VAEncPackedHeaderH264_Slice,
1177     .write_slice_header    = &vaapi_encode_h264_write_slice_header,
1178
1179     .write_extra_header    = &vaapi_encode_h264_write_extra_header,
1180 };
1181
1182 static av_cold int vaapi_encode_h264_init(AVCodecContext *avctx)
1183 {
1184     VAAPIEncodeContext     *ctx = avctx->priv_data;
1185     VAAPIEncodeH264Options *opt =
1186         (VAAPIEncodeH264Options*)ctx->codec_options_data;
1187
1188     ctx->codec = &vaapi_encode_type_h264;
1189
1190     switch (avctx->profile) {
1191     case FF_PROFILE_H264_CONSTRAINED_BASELINE:
1192         ctx->va_profile = VAProfileH264ConstrainedBaseline;
1193         if (avctx->max_b_frames != 0) {
1194             avctx->max_b_frames = 0;
1195             av_log(avctx, AV_LOG_WARNING, "H.264 constrained baseline profile "
1196                    "doesn't support encoding with B frames, disabling them.\n");
1197         }
1198         break;
1199     case FF_PROFILE_H264_BASELINE:
1200         ctx->va_profile = VAProfileH264Baseline;
1201         if (avctx->max_b_frames != 0) {
1202             avctx->max_b_frames = 0;
1203             av_log(avctx, AV_LOG_WARNING, "H.264 baseline profile "
1204                    "doesn't support encoding with B frames, disabling them.\n");
1205         }
1206         break;
1207     case FF_PROFILE_H264_MAIN:
1208         ctx->va_profile = VAProfileH264Main;
1209         break;
1210     case FF_PROFILE_H264_EXTENDED:
1211         av_log(avctx, AV_LOG_ERROR, "H.264 extended profile "
1212                "is not supported.\n");
1213         return AVERROR_PATCHWELCOME;
1214     case FF_PROFILE_UNKNOWN:
1215     case FF_PROFILE_H264_HIGH:
1216         ctx->va_profile = VAProfileH264High;
1217         break;
1218     case FF_PROFILE_H264_HIGH_10:
1219     case FF_PROFILE_H264_HIGH_10_INTRA:
1220         av_log(avctx, AV_LOG_ERROR, "H.264 10-bit profiles "
1221                "are not supported.\n");
1222         return AVERROR_PATCHWELCOME;
1223     case FF_PROFILE_H264_HIGH_422:
1224     case FF_PROFILE_H264_HIGH_422_INTRA:
1225     case FF_PROFILE_H264_HIGH_444:
1226     case FF_PROFILE_H264_HIGH_444_PREDICTIVE:
1227     case FF_PROFILE_H264_HIGH_444_INTRA:
1228     case FF_PROFILE_H264_CAVLC_444:
1229         av_log(avctx, AV_LOG_ERROR, "H.264 non-4:2:0 profiles "
1230                "are not supported.\n");
1231         return AVERROR_PATCHWELCOME;
1232     default:
1233         av_log(avctx, AV_LOG_ERROR, "Unknown H.264 profile %d.\n",
1234                avctx->profile);
1235         return AVERROR(EINVAL);
1236     }
1237     if (opt->low_power) {
1238 #if VA_CHECK_VERSION(0, 39, 2)
1239         ctx->va_entrypoint = VAEntrypointEncSliceLP;
1240 #else
1241         av_log(avctx, AV_LOG_ERROR, "Low-power encoding is not "
1242                "supported with this VAAPI version.\n");
1243         return AVERROR(EINVAL);
1244 #endif
1245     } else {
1246         ctx->va_entrypoint = VAEntrypointEncSlice;
1247     }
1248
1249     // Only 8-bit encode is supported.
1250     ctx->va_rt_format = VA_RT_FORMAT_YUV420;
1251
1252     if (avctx->bit_rate > 0)
1253         ctx->va_rc_mode = VA_RC_CBR;
1254     else
1255         ctx->va_rc_mode = VA_RC_CQP;
1256
1257     ctx->va_packed_headers =
1258         VA_ENC_PACKED_HEADER_SEQUENCE | // SPS and PPS.
1259         VA_ENC_PACKED_HEADER_SLICE    | // Slice headers.
1260         VA_ENC_PACKED_HEADER_MISC;      // SEI.
1261
1262     ctx->surface_width  = FFALIGN(avctx->width,  16);
1263     ctx->surface_height = FFALIGN(avctx->height, 16);
1264
1265     return ff_vaapi_encode_init(avctx);
1266 }
1267
1268 #define OFFSET(x) (offsetof(VAAPIEncodeContext, codec_options_data) + \
1269                    offsetof(VAAPIEncodeH264Options, x))
1270 #define FLAGS (AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM)
1271 static const AVOption vaapi_encode_h264_options[] = {
1272     { "qp", "Constant QP (for P-frames; scaled by qfactor/qoffset for I/B)",
1273       OFFSET(qp), AV_OPT_TYPE_INT, { .i64 = 20 }, 0, 52, FLAGS },
1274     { "quality", "Set encode quality (trades off against speed, higher is faster)",
1275       OFFSET(quality), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 8, FLAGS },
1276     { "low_power", "Use low-power encoding mode (experimental: only supported "
1277       "on some platforms, does not support all features)",
1278       OFFSET(low_power), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, FLAGS },
1279     { NULL },
1280 };
1281
1282 static const AVCodecDefault vaapi_encode_h264_defaults[] = {
1283     { "profile",        "100" },
1284     { "level",          "51"  },
1285     { "b",              "0"   },
1286     { "bf",             "2"   },
1287     { "g",              "120" },
1288     { "i_qfactor",      "1"   },
1289     { "i_qoffset",      "0"   },
1290     { "b_qfactor",      "6/5" },
1291     { "b_qoffset",      "0"   },
1292     { NULL },
1293 };
1294
1295 static const AVClass vaapi_encode_h264_class = {
1296     .class_name = "h264_vaapi",
1297     .item_name  = av_default_item_name,
1298     .option     = vaapi_encode_h264_options,
1299     .version    = LIBAVUTIL_VERSION_INT,
1300 };
1301
1302 AVCodec ff_h264_vaapi_encoder = {
1303     .name           = "h264_vaapi",
1304     .long_name      = NULL_IF_CONFIG_SMALL("H.264/AVC (VAAPI)"),
1305     .type           = AVMEDIA_TYPE_VIDEO,
1306     .id             = AV_CODEC_ID_H264,
1307     .priv_data_size = (sizeof(VAAPIEncodeContext) +
1308                        sizeof(VAAPIEncodeH264Options)),
1309     .init           = &vaapi_encode_h264_init,
1310     .encode2        = &ff_vaapi_encode2,
1311     .close          = &ff_vaapi_encode_close,
1312     .priv_class     = &vaapi_encode_h264_class,
1313     .capabilities   = AV_CODEC_CAP_DELAY,
1314     .defaults       = vaapi_encode_h264_defaults,
1315     .pix_fmts = (const enum AVPixelFormat[]) {
1316         AV_PIX_FMT_VAAPI,
1317         AV_PIX_FMT_NONE,
1318     },
1319 };