]> git.sesse.net Git - ffmpeg/blob - libavcodec/vaapi_encode.c
Merge commit '8bb9824fcbc5a6ebf68391d70a2c4f03447990d2'
[ffmpeg] / libavcodec / vaapi_encode.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 <inttypes.h>
20 #include <string.h>
21
22 #include "libavutil/avassert.h"
23 #include "libavutil/common.h"
24 #include "libavutil/log.h"
25 #include "libavutil/pixdesc.h"
26
27 #include "vaapi_encode.h"
28 #include "avcodec.h"
29
30 static const char * const picture_type_name[] = { "IDR", "I", "P", "B" };
31
32 static int vaapi_encode_make_packed_header(AVCodecContext *avctx,
33                                            VAAPIEncodePicture *pic,
34                                            int type, char *data, size_t bit_len)
35 {
36     VAAPIEncodeContext *ctx = avctx->priv_data;
37     VAStatus vas;
38     VABufferID param_buffer, data_buffer;
39     VABufferID *tmp;
40     VAEncPackedHeaderParameterBuffer params = {
41         .type = type,
42         .bit_length = bit_len,
43         .has_emulation_bytes = 1,
44     };
45
46     tmp = av_realloc_array(pic->param_buffers, sizeof(*tmp), pic->nb_param_buffers + 2);
47     if (!tmp)
48         return AVERROR(ENOMEM);
49     pic->param_buffers = tmp;
50
51     vas = vaCreateBuffer(ctx->hwctx->display, ctx->va_context,
52                          VAEncPackedHeaderParameterBufferType,
53                          sizeof(params), 1, &params, &param_buffer);
54     if (vas != VA_STATUS_SUCCESS) {
55         av_log(avctx, AV_LOG_ERROR, "Failed to create parameter buffer "
56                "for packed header (type %d): %d (%s).\n",
57                type, vas, vaErrorStr(vas));
58         return AVERROR(EIO);
59     }
60     pic->param_buffers[pic->nb_param_buffers++] = param_buffer;
61
62     vas = vaCreateBuffer(ctx->hwctx->display, ctx->va_context,
63                          VAEncPackedHeaderDataBufferType,
64                          (bit_len + 7) / 8, 1, data, &data_buffer);
65     if (vas != VA_STATUS_SUCCESS) {
66         av_log(avctx, AV_LOG_ERROR, "Failed to create data buffer "
67                "for packed header (type %d): %d (%s).\n",
68                type, vas, vaErrorStr(vas));
69         return AVERROR(EIO);
70     }
71     pic->param_buffers[pic->nb_param_buffers++] = data_buffer;
72
73     av_log(avctx, AV_LOG_DEBUG, "Packed header buffer (%d) is %#x/%#x "
74            "(%zu bits).\n", type, param_buffer, data_buffer, bit_len);
75     return 0;
76 }
77
78 static int vaapi_encode_make_param_buffer(AVCodecContext *avctx,
79                                           VAAPIEncodePicture *pic,
80                                           int type, char *data, size_t len)
81 {
82     VAAPIEncodeContext *ctx = avctx->priv_data;
83     VAStatus vas;
84     VABufferID *tmp;
85     VABufferID buffer;
86
87     tmp = av_realloc_array(pic->param_buffers, sizeof(*tmp), pic->nb_param_buffers + 1);
88     if (!tmp)
89         return AVERROR(ENOMEM);
90     pic->param_buffers = tmp;
91
92     vas = vaCreateBuffer(ctx->hwctx->display, ctx->va_context,
93                          type, len, 1, data, &buffer);
94     if (vas != VA_STATUS_SUCCESS) {
95         av_log(avctx, AV_LOG_ERROR, "Failed to create parameter buffer "
96                "(type %d): %d (%s).\n", type, vas, vaErrorStr(vas));
97         return AVERROR(EIO);
98     }
99     pic->param_buffers[pic->nb_param_buffers++] = buffer;
100
101     av_log(avctx, AV_LOG_DEBUG, "Param buffer (%d) is %#x.\n",
102            type, buffer);
103     return 0;
104 }
105
106 static int vaapi_encode_wait(AVCodecContext *avctx,
107                              VAAPIEncodePicture *pic)
108 {
109     VAAPIEncodeContext *ctx = avctx->priv_data;
110     VAStatus vas;
111
112     av_assert0(pic->encode_issued);
113
114     if (pic->encode_complete) {
115         // Already waited for this picture.
116         return 0;
117     }
118
119     av_log(avctx, AV_LOG_DEBUG, "Sync to pic %"PRId64"/%"PRId64" "
120            "(input surface %#x).\n", pic->display_order,
121            pic->encode_order, pic->input_surface);
122
123     vas = vaSyncSurface(ctx->hwctx->display, pic->input_surface);
124     if (vas != VA_STATUS_SUCCESS) {
125         av_log(avctx, AV_LOG_ERROR, "Failed to sync to picture completion: "
126                "%d (%s).\n", vas, vaErrorStr(vas));
127         return AVERROR(EIO);
128     }
129
130     // Input is definitely finished with now.
131     av_frame_free(&pic->input_image);
132
133     pic->encode_complete = 1;
134     return 0;
135 }
136
137 static int vaapi_encode_issue(AVCodecContext *avctx,
138                               VAAPIEncodePicture *pic)
139 {
140     VAAPIEncodeContext *ctx = avctx->priv_data;
141     VAAPIEncodeSlice *slice;
142     VAStatus vas;
143     int err, i;
144     char data[MAX_PARAM_BUFFER_SIZE];
145     size_t bit_len;
146
147     av_log(avctx, AV_LOG_DEBUG, "Issuing encode for pic %"PRId64"/%"PRId64" "
148            "as type %s.\n", pic->display_order, pic->encode_order,
149            picture_type_name[pic->type]);
150     if (pic->nb_refs == 0) {
151         av_log(avctx, AV_LOG_DEBUG, "No reference pictures.\n");
152     } else {
153         av_log(avctx, AV_LOG_DEBUG, "Refers to:");
154         for (i = 0; i < pic->nb_refs; i++) {
155             av_log(avctx, AV_LOG_DEBUG, " %"PRId64"/%"PRId64,
156                    pic->refs[i]->display_order, pic->refs[i]->encode_order);
157         }
158         av_log(avctx, AV_LOG_DEBUG, ".\n");
159     }
160
161     av_assert0(pic->input_available && !pic->encode_issued);
162     for (i = 0; i < pic->nb_refs; i++) {
163         av_assert0(pic->refs[i]);
164         // If we are serialised then the references must have already
165         // completed.  If not, they must have been issued but need not
166         // have completed yet.
167         if (ctx->issue_mode == ISSUE_MODE_SERIALISE_EVERYTHING)
168             av_assert0(pic->refs[i]->encode_complete);
169         else
170             av_assert0(pic->refs[i]->encode_issued);
171     }
172
173     av_log(avctx, AV_LOG_DEBUG, "Input surface is %#x.\n", pic->input_surface);
174
175     pic->recon_image = av_frame_alloc();
176     if (!pic->recon_image) {
177         err = AVERROR(ENOMEM);
178         goto fail;
179     }
180
181     err = av_hwframe_get_buffer(ctx->recon_frames_ref, pic->recon_image, 0);
182     if (err < 0) {
183         err = AVERROR(ENOMEM);
184         goto fail;
185     }
186     pic->recon_surface = (VASurfaceID)(uintptr_t)pic->recon_image->data[3];
187     av_log(avctx, AV_LOG_DEBUG, "Recon surface is %#x.\n", pic->recon_surface);
188
189     pic->output_buffer_ref = av_buffer_pool_get(ctx->output_buffer_pool);
190     if (!pic->output_buffer_ref) {
191         err = AVERROR(ENOMEM);
192         goto fail;
193     }
194     pic->output_buffer = (VABufferID)(uintptr_t)pic->output_buffer_ref->data;
195     av_log(avctx, AV_LOG_DEBUG, "Output buffer is %#x.\n",
196            pic->output_buffer);
197
198     if (ctx->codec->picture_params_size > 0) {
199         pic->codec_picture_params = av_malloc(ctx->codec->picture_params_size);
200         if (!pic->codec_picture_params)
201             goto fail;
202         memcpy(pic->codec_picture_params, ctx->codec_picture_params,
203                ctx->codec->picture_params_size);
204     } else {
205         av_assert0(!ctx->codec_picture_params);
206     }
207
208     pic->nb_param_buffers = 0;
209
210     if (pic->encode_order == 0) {
211         // Global parameter buffers are set on the first picture only.
212
213         for (i = 0; i < ctx->nb_global_params; i++) {
214             err = vaapi_encode_make_param_buffer(avctx, pic,
215                                                  VAEncMiscParameterBufferType,
216                                                  (char*)ctx->global_params[i],
217                                                  ctx->global_params_size[i]);
218             if (err < 0)
219                 goto fail;
220         }
221     }
222
223     if (pic->type == PICTURE_TYPE_IDR && ctx->codec->init_sequence_params) {
224         err = vaapi_encode_make_param_buffer(avctx, pic,
225                                              VAEncSequenceParameterBufferType,
226                                              ctx->codec_sequence_params,
227                                              ctx->codec->sequence_params_size);
228         if (err < 0)
229             goto fail;
230     }
231
232     if (ctx->codec->init_picture_params) {
233         err = ctx->codec->init_picture_params(avctx, pic);
234         if (err < 0) {
235             av_log(avctx, AV_LOG_ERROR, "Failed to initialise picture "
236                    "parameters: %d.\n", err);
237             goto fail;
238         }
239         err = vaapi_encode_make_param_buffer(avctx, pic,
240                                              VAEncPictureParameterBufferType,
241                                              pic->codec_picture_params,
242                                              ctx->codec->picture_params_size);
243         if (err < 0)
244             goto fail;
245     }
246
247     if (pic->type == PICTURE_TYPE_IDR) {
248         if (ctx->va_packed_headers & VA_ENC_PACKED_HEADER_SEQUENCE &&
249             ctx->codec->write_sequence_header) {
250             bit_len = 8 * sizeof(data);
251             err = ctx->codec->write_sequence_header(avctx, data, &bit_len);
252             if (err < 0) {
253                 av_log(avctx, AV_LOG_ERROR, "Failed to write per-sequence "
254                        "header: %d.\n", err);
255                 goto fail;
256             }
257             err = vaapi_encode_make_packed_header(avctx, pic,
258                                                   ctx->codec->sequence_header_type,
259                                                   data, bit_len);
260             if (err < 0)
261                 goto fail;
262         }
263     }
264
265     if (ctx->va_packed_headers & VA_ENC_PACKED_HEADER_PICTURE &&
266         ctx->codec->write_picture_header) {
267         bit_len = 8 * sizeof(data);
268         err = ctx->codec->write_picture_header(avctx, pic, data, &bit_len);
269         if (err < 0) {
270             av_log(avctx, AV_LOG_ERROR, "Failed to write per-picture "
271                    "header: %d.\n", err);
272             goto fail;
273         }
274         err = vaapi_encode_make_packed_header(avctx, pic,
275                                               ctx->codec->picture_header_type,
276                                               data, bit_len);
277         if (err < 0)
278             goto fail;
279     }
280
281     if (ctx->codec->write_extra_buffer) {
282         for (i = 0;; i++) {
283             size_t len = sizeof(data);
284             int type;
285             err = ctx->codec->write_extra_buffer(avctx, pic, i, &type,
286                                                  data, &len);
287             if (err == AVERROR_EOF)
288                 break;
289             if (err < 0) {
290                 av_log(avctx, AV_LOG_ERROR, "Failed to write extra "
291                        "buffer %d: %d.\n", i, err);
292                 goto fail;
293             }
294
295             err = vaapi_encode_make_param_buffer(avctx, pic, type,
296                                                  data, len);
297             if (err < 0)
298                 goto fail;
299         }
300     }
301
302     if (ctx->va_packed_headers & VA_ENC_PACKED_HEADER_MISC &&
303         ctx->codec->write_extra_header) {
304         for (i = 0;; i++) {
305             int type;
306             bit_len = 8 * sizeof(data);
307             err = ctx->codec->write_extra_header(avctx, pic, i, &type,
308                                                  data, &bit_len);
309             if (err == AVERROR_EOF)
310                 break;
311             if (err < 0) {
312                 av_log(avctx, AV_LOG_ERROR, "Failed to write extra "
313                        "header %d: %d.\n", i, err);
314                 goto fail;
315             }
316
317             err = vaapi_encode_make_packed_header(avctx, pic, type,
318                                                   data, bit_len);
319             if (err < 0)
320                 goto fail;
321         }
322     }
323
324     pic->slices = av_mallocz_array(pic->nb_slices, sizeof(*pic->slices));
325     if (!pic->slices) {
326         err = AVERROR(ENOMEM);
327         goto fail;
328     }
329     for (i = 0; i < pic->nb_slices; i++) {
330         slice = &pic->slices[i];
331         slice->index = i;
332
333         if (ctx->codec->slice_params_size > 0) {
334             slice->codec_slice_params = av_mallocz(ctx->codec->slice_params_size);
335             if (!slice->codec_slice_params) {
336                 err = AVERROR(ENOMEM);
337                 goto fail;
338             }
339         }
340
341         if (ctx->codec->init_slice_params) {
342             err = ctx->codec->init_slice_params(avctx, pic, slice);
343             if (err < 0) {
344                 av_log(avctx, AV_LOG_ERROR, "Failed to initialise slice "
345                        "parameters: %d.\n", err);
346                 goto fail;
347             }
348         }
349
350         if (ctx->va_packed_headers & VA_ENC_PACKED_HEADER_SLICE &&
351             ctx->codec->write_slice_header) {
352             bit_len = 8 * sizeof(data);
353             err = ctx->codec->write_slice_header(avctx, pic, slice,
354                                                  data, &bit_len);
355             if (err < 0) {
356                 av_log(avctx, AV_LOG_ERROR, "Failed to write per-slice "
357                        "header: %d.\n", err);
358                 goto fail;
359             }
360             err = vaapi_encode_make_packed_header(avctx, pic,
361                                                   ctx->codec->slice_header_type,
362                                                   data, bit_len);
363             if (err < 0)
364                 goto fail;
365         }
366
367         if (ctx->codec->init_slice_params) {
368             err = vaapi_encode_make_param_buffer(avctx, pic,
369                                                  VAEncSliceParameterBufferType,
370                                                  slice->codec_slice_params,
371                                                  ctx->codec->slice_params_size);
372             if (err < 0)
373                 goto fail;
374         }
375     }
376
377     vas = vaBeginPicture(ctx->hwctx->display, ctx->va_context,
378                          pic->input_surface);
379     if (vas != VA_STATUS_SUCCESS) {
380         av_log(avctx, AV_LOG_ERROR, "Failed to begin picture encode issue: "
381                "%d (%s).\n", vas, vaErrorStr(vas));
382         err = AVERROR(EIO);
383         goto fail_with_picture;
384     }
385
386     vas = vaRenderPicture(ctx->hwctx->display, ctx->va_context,
387                           pic->param_buffers, pic->nb_param_buffers);
388     if (vas != VA_STATUS_SUCCESS) {
389         av_log(avctx, AV_LOG_ERROR, "Failed to upload encode parameters: "
390                "%d (%s).\n", vas, vaErrorStr(vas));
391         err = AVERROR(EIO);
392         goto fail_with_picture;
393     }
394
395     vas = vaEndPicture(ctx->hwctx->display, ctx->va_context);
396     if (vas != VA_STATUS_SUCCESS) {
397         av_log(avctx, AV_LOG_ERROR, "Failed to end picture encode issue: "
398                "%d (%s).\n", vas, vaErrorStr(vas));
399         err = AVERROR(EIO);
400         // vaRenderPicture() has been called here, so we should not destroy
401         // the parameter buffers unless separate destruction is required.
402         if (CONFIG_VAAPI_1 || ctx->hwctx->driver_quirks &
403             AV_VAAPI_DRIVER_QUIRK_RENDER_PARAM_BUFFERS)
404             goto fail;
405         else
406             goto fail_at_end;
407     }
408
409     if (CONFIG_VAAPI_1 || ctx->hwctx->driver_quirks &
410         AV_VAAPI_DRIVER_QUIRK_RENDER_PARAM_BUFFERS) {
411         for (i = 0; i < pic->nb_param_buffers; i++) {
412             vas = vaDestroyBuffer(ctx->hwctx->display,
413                                   pic->param_buffers[i]);
414             if (vas != VA_STATUS_SUCCESS) {
415                 av_log(avctx, AV_LOG_ERROR, "Failed to destroy "
416                        "param buffer %#x: %d (%s).\n",
417                        pic->param_buffers[i], vas, vaErrorStr(vas));
418                 // And ignore.
419             }
420         }
421     }
422
423     pic->encode_issued = 1;
424
425     if (ctx->issue_mode == ISSUE_MODE_SERIALISE_EVERYTHING)
426         return vaapi_encode_wait(avctx, pic);
427     else
428         return 0;
429
430 fail_with_picture:
431     vaEndPicture(ctx->hwctx->display, ctx->va_context);
432 fail:
433     for(i = 0; i < pic->nb_param_buffers; i++)
434         vaDestroyBuffer(ctx->hwctx->display, pic->param_buffers[i]);
435     for (i = 0; i < pic->nb_slices; i++) {
436         if (pic->slices) {
437             av_freep(&pic->slices[i].priv_data);
438             av_freep(&pic->slices[i].codec_slice_params);
439         }
440     }
441 fail_at_end:
442     av_freep(&pic->codec_picture_params);
443     av_freep(&pic->param_buffers);
444     av_freep(&pic->slices);
445     av_frame_free(&pic->recon_image);
446     av_buffer_unref(&pic->output_buffer_ref);
447     pic->output_buffer = VA_INVALID_ID;
448     return err;
449 }
450
451 static int vaapi_encode_output(AVCodecContext *avctx,
452                                VAAPIEncodePicture *pic, AVPacket *pkt)
453 {
454     VAAPIEncodeContext *ctx = avctx->priv_data;
455     VACodedBufferSegment *buf_list, *buf;
456     VAStatus vas;
457     int err;
458
459     err = vaapi_encode_wait(avctx, pic);
460     if (err < 0)
461         return err;
462
463     buf_list = NULL;
464     vas = vaMapBuffer(ctx->hwctx->display, pic->output_buffer,
465                       (void**)&buf_list);
466     if (vas != VA_STATUS_SUCCESS) {
467         av_log(avctx, AV_LOG_ERROR, "Failed to map output buffers: "
468                "%d (%s).\n", vas, vaErrorStr(vas));
469         err = AVERROR(EIO);
470         goto fail;
471     }
472
473     for (buf = buf_list; buf; buf = buf->next) {
474         av_log(avctx, AV_LOG_DEBUG, "Output buffer: %u bytes "
475                "(status %08x).\n", buf->size, buf->status);
476
477         err = av_new_packet(pkt, buf->size);
478         if (err < 0)
479             goto fail_mapped;
480
481         memcpy(pkt->data, buf->buf, buf->size);
482     }
483
484     if (pic->type == PICTURE_TYPE_IDR)
485         pkt->flags |= AV_PKT_FLAG_KEY;
486
487     pkt->pts = pic->pts;
488
489     vas = vaUnmapBuffer(ctx->hwctx->display, pic->output_buffer);
490     if (vas != VA_STATUS_SUCCESS) {
491         av_log(avctx, AV_LOG_ERROR, "Failed to unmap output buffers: "
492                "%d (%s).\n", vas, vaErrorStr(vas));
493         err = AVERROR(EIO);
494         goto fail;
495     }
496
497     av_buffer_unref(&pic->output_buffer_ref);
498     pic->output_buffer = VA_INVALID_ID;
499
500     av_log(avctx, AV_LOG_DEBUG, "Output read for pic %"PRId64"/%"PRId64".\n",
501            pic->display_order, pic->encode_order);
502     return 0;
503
504 fail_mapped:
505     vaUnmapBuffer(ctx->hwctx->display, pic->output_buffer);
506 fail:
507     av_buffer_unref(&pic->output_buffer_ref);
508     pic->output_buffer = VA_INVALID_ID;
509     return err;
510 }
511
512 static int vaapi_encode_discard(AVCodecContext *avctx,
513                                 VAAPIEncodePicture *pic)
514 {
515     vaapi_encode_wait(avctx, pic);
516
517     if (pic->output_buffer_ref) {
518         av_log(avctx, AV_LOG_DEBUG, "Discard output for pic "
519                "%"PRId64"/%"PRId64".\n",
520                pic->display_order, pic->encode_order);
521
522         av_buffer_unref(&pic->output_buffer_ref);
523         pic->output_buffer = VA_INVALID_ID;
524     }
525
526     return 0;
527 }
528
529 static VAAPIEncodePicture *vaapi_encode_alloc(void)
530 {
531     VAAPIEncodePicture *pic;
532
533     pic = av_mallocz(sizeof(*pic));
534     if (!pic)
535         return NULL;
536
537     pic->input_surface = VA_INVALID_ID;
538     pic->recon_surface = VA_INVALID_ID;
539     pic->output_buffer = VA_INVALID_ID;
540
541     return pic;
542 }
543
544 static int vaapi_encode_free(AVCodecContext *avctx,
545                              VAAPIEncodePicture *pic)
546 {
547     int i;
548
549     if (pic->encode_issued)
550         vaapi_encode_discard(avctx, pic);
551
552     for (i = 0; i < pic->nb_slices; i++) {
553         if (pic->slices) {
554             av_freep(&pic->slices[i].priv_data);
555             av_freep(&pic->slices[i].codec_slice_params);
556         }
557     }
558     av_freep(&pic->codec_picture_params);
559
560     av_frame_free(&pic->input_image);
561     av_frame_free(&pic->recon_image);
562
563     av_freep(&pic->param_buffers);
564     av_freep(&pic->slices);
565     // Output buffer should already be destroyed.
566     av_assert0(pic->output_buffer == VA_INVALID_ID);
567
568     av_freep(&pic->priv_data);
569     av_freep(&pic->codec_picture_params);
570
571     av_free(pic);
572
573     return 0;
574 }
575
576 static int vaapi_encode_step(AVCodecContext *avctx,
577                              VAAPIEncodePicture *target)
578 {
579     VAAPIEncodeContext *ctx = avctx->priv_data;
580     VAAPIEncodePicture *pic;
581     int i, err;
582
583     if (ctx->issue_mode == ISSUE_MODE_SERIALISE_EVERYTHING ||
584         ctx->issue_mode == ISSUE_MODE_MINIMISE_LATENCY) {
585         // These two modes are equivalent, except that we wait for
586         // immediate completion on each operation if serialised.
587
588         if (!target) {
589             // No target, nothing to do yet.
590             return 0;
591         }
592
593         if (target->encode_complete) {
594             // Already done.
595             return 0;
596         }
597
598         pic = target;
599         for (i = 0; i < pic->nb_refs; i++) {
600             if (!pic->refs[i]->encode_complete) {
601                 err = vaapi_encode_step(avctx, pic->refs[i]);
602                 if (err < 0)
603                     return err;
604             }
605         }
606
607         err = vaapi_encode_issue(avctx, pic);
608         if (err < 0)
609             return err;
610
611     } else if (ctx->issue_mode == ISSUE_MODE_MAXIMISE_THROUGHPUT) {
612         int activity;
613
614         // Run through the list of all available pictures repeatedly
615         // and issue the first one found which has all dependencies
616         // available (including previously-issued but not necessarily
617         // completed pictures).
618         do {
619             activity = 0;
620             for (pic = ctx->pic_start; pic; pic = pic->next) {
621                 if (!pic->input_available || pic->encode_issued)
622                     continue;
623                 for (i = 0; i < pic->nb_refs; i++) {
624                     if (!pic->refs[i]->encode_issued)
625                         break;
626                 }
627                 if (i < pic->nb_refs)
628                     continue;
629                 err = vaapi_encode_issue(avctx, pic);
630                 if (err < 0)
631                     return err;
632                 activity = 1;
633                 // Start again from the beginning of the list,
634                 // because issuing this picture may have satisfied
635                 // forward dependencies of earlier ones.
636                 break;
637             }
638         } while(activity);
639
640         // If we had a defined target for this step then it will
641         // always have been issued by now.
642         if (target) {
643             av_assert0(target->encode_issued && "broken dependencies?");
644         }
645
646     } else {
647         av_assert0(0);
648     }
649
650     return 0;
651 }
652
653 static int vaapi_encode_get_next(AVCodecContext *avctx,
654                                  VAAPIEncodePicture **pic_out)
655 {
656     VAAPIEncodeContext *ctx = avctx->priv_data;
657     VAAPIEncodePicture *start, *end, *pic;
658     int i;
659
660     for (pic = ctx->pic_start; pic; pic = pic->next) {
661         if (pic->next)
662             av_assert0(pic->display_order + 1 == pic->next->display_order);
663         if (pic->display_order == ctx->input_order) {
664             *pic_out = pic;
665             return 0;
666         }
667     }
668
669     pic = vaapi_encode_alloc();
670     if (!pic)
671         return AVERROR(ENOMEM);
672
673     if (ctx->input_order == 0 || ctx->force_idr ||
674         ctx->gop_counter >= avctx->gop_size) {
675         pic->type = PICTURE_TYPE_IDR;
676         ctx->force_idr = 0;
677         ctx->gop_counter = 1;
678         ctx->p_counter = 0;
679     } else if (ctx->p_counter >= ctx->p_per_i) {
680         pic->type = PICTURE_TYPE_I;
681         ++ctx->gop_counter;
682         ctx->p_counter = 0;
683     } else {
684         pic->type = PICTURE_TYPE_P;
685         pic->refs[0] = ctx->pic_end;
686         pic->nb_refs = 1;
687         ++ctx->gop_counter;
688         ++ctx->p_counter;
689     }
690     start = end = pic;
691
692     if (pic->type != PICTURE_TYPE_IDR) {
693         // If that was not an IDR frame, add B-frames display-before and
694         // encode-after it, but not exceeding the GOP size.
695
696         for (i = 0; i < ctx->b_per_p &&
697              ctx->gop_counter < avctx->gop_size; i++) {
698             pic = vaapi_encode_alloc();
699             if (!pic)
700                 goto fail;
701
702             pic->type = PICTURE_TYPE_B;
703             pic->refs[0] = ctx->pic_end;
704             pic->refs[1] = end;
705             pic->nb_refs = 2;
706
707             pic->next = start;
708             pic->display_order = ctx->input_order + ctx->b_per_p - i - 1;
709             pic->encode_order  = pic->display_order + 1;
710             start = pic;
711
712             ++ctx->gop_counter;
713         }
714     }
715
716     if (ctx->input_order == 0) {
717         pic->display_order = 0;
718         pic->encode_order  = 0;
719
720         ctx->pic_start = ctx->pic_end = pic;
721
722     } else {
723         for (i = 0, pic = start; pic; i++, pic = pic->next) {
724             pic->display_order = ctx->input_order + i;
725             if (end->type == PICTURE_TYPE_IDR)
726                 pic->encode_order = ctx->input_order + i;
727             else if (pic == end)
728                 pic->encode_order = ctx->input_order;
729             else
730                 pic->encode_order = ctx->input_order + i + 1;
731         }
732
733         av_assert0(ctx->pic_end);
734         ctx->pic_end->next = start;
735         ctx->pic_end = end;
736     }
737     *pic_out = start;
738
739     av_log(avctx, AV_LOG_DEBUG, "Pictures:");
740     for (pic = ctx->pic_start; pic; pic = pic->next) {
741         av_log(avctx, AV_LOG_DEBUG, " %s (%"PRId64"/%"PRId64")",
742                picture_type_name[pic->type],
743                pic->display_order, pic->encode_order);
744     }
745     av_log(avctx, AV_LOG_DEBUG, "\n");
746
747     return 0;
748
749 fail:
750     while (start) {
751         pic = start->next;
752         vaapi_encode_free(avctx, start);
753         start = pic;
754     }
755     return AVERROR(ENOMEM);
756 }
757
758 static int vaapi_encode_truncate_gop(AVCodecContext *avctx)
759 {
760     VAAPIEncodeContext *ctx = avctx->priv_data;
761     VAAPIEncodePicture *pic, *last_pic, *next;
762
763     // Find the last picture we actually have input for.
764     for (pic = ctx->pic_start; pic; pic = pic->next) {
765         if (!pic->input_available)
766             break;
767         last_pic = pic;
768     }
769
770     if (pic) {
771         av_assert0(last_pic);
772
773         if (last_pic->type == PICTURE_TYPE_B) {
774             // Some fixing up is required.  Change the type of this
775             // picture to P, then modify preceding B references which
776             // point beyond it to point at it instead.
777
778             last_pic->type = PICTURE_TYPE_P;
779             last_pic->encode_order = last_pic->refs[1]->encode_order;
780
781             for (pic = ctx->pic_start; pic != last_pic; pic = pic->next) {
782                 if (pic->type == PICTURE_TYPE_B &&
783                     pic->refs[1] == last_pic->refs[1])
784                     pic->refs[1] = last_pic;
785             }
786
787             last_pic->nb_refs = 1;
788             last_pic->refs[1] = NULL;
789         } else {
790             // We can use the current structure (no references point
791             // beyond the end), but there are unused pics to discard.
792         }
793
794         // Discard all following pics, they will never be used.
795         for (pic = last_pic->next; pic; pic = next) {
796             next = pic->next;
797             vaapi_encode_free(avctx, pic);
798         }
799
800         last_pic->next = NULL;
801         ctx->pic_end = last_pic;
802
803     } else {
804         // Input is available for all pictures, so we don't need to
805         // mangle anything.
806     }
807
808     av_log(avctx, AV_LOG_DEBUG, "Pictures ending truncated GOP:");
809     for (pic = ctx->pic_start; pic; pic = pic->next) {
810         av_log(avctx, AV_LOG_DEBUG, " %s (%"PRId64"/%"PRId64")",
811                picture_type_name[pic->type],
812                pic->display_order, pic->encode_order);
813     }
814     av_log(avctx, AV_LOG_DEBUG, "\n");
815
816     return 0;
817 }
818
819 static int vaapi_encode_clear_old(AVCodecContext *avctx)
820 {
821     VAAPIEncodeContext *ctx = avctx->priv_data;
822     VAAPIEncodePicture *pic, *old;
823     int i;
824
825     while (ctx->pic_start != ctx->pic_end) {
826         old = ctx->pic_start;
827         if (old->encode_order > ctx->output_order)
828             break;
829
830         for (pic = old->next; pic; pic = pic->next) {
831             if (pic->encode_complete)
832                 continue;
833             for (i = 0; i < pic->nb_refs; i++) {
834                 if (pic->refs[i] == old) {
835                     // We still need this picture because it's referred to
836                     // directly by a later one, so it and all following
837                     // pictures have to stay.
838                     return 0;
839                 }
840             }
841         }
842
843         pic = ctx->pic_start;
844         ctx->pic_start = pic->next;
845         vaapi_encode_free(avctx, pic);
846     }
847
848     return 0;
849 }
850
851 int ff_vaapi_encode2(AVCodecContext *avctx, AVPacket *pkt,
852                      const AVFrame *input_image, int *got_packet)
853 {
854     VAAPIEncodeContext *ctx = avctx->priv_data;
855     VAAPIEncodePicture *pic;
856     int err;
857
858     if (input_image) {
859         av_log(avctx, AV_LOG_DEBUG, "Encode frame: %ux%u (%"PRId64").\n",
860                input_image->width, input_image->height, input_image->pts);
861
862         if (input_image->pict_type == AV_PICTURE_TYPE_I) {
863             err = vaapi_encode_truncate_gop(avctx);
864             if (err < 0)
865                 goto fail;
866             ctx->force_idr = 1;
867         }
868
869         err = vaapi_encode_get_next(avctx, &pic);
870         if (err) {
871             av_log(avctx, AV_LOG_ERROR, "Input setup failed: %d.\n", err);
872             return err;
873         }
874
875         pic->input_image = av_frame_alloc();
876         if (!pic->input_image) {
877             err = AVERROR(ENOMEM);
878             goto fail;
879         }
880         err = av_frame_ref(pic->input_image, input_image);
881         if (err < 0)
882             goto fail;
883         pic->input_surface = (VASurfaceID)(uintptr_t)input_image->data[3];
884         pic->pts = input_image->pts;
885
886         if (ctx->input_order == 0)
887             ctx->first_pts = pic->pts;
888         if (ctx->input_order == ctx->decode_delay)
889             ctx->dts_pts_diff = pic->pts - ctx->first_pts;
890         if (ctx->output_delay > 0)
891             ctx->ts_ring[ctx->input_order % (3 * ctx->output_delay)] = pic->pts;
892
893         pic->input_available = 1;
894
895     } else {
896         if (!ctx->end_of_stream) {
897             err = vaapi_encode_truncate_gop(avctx);
898             if (err < 0)
899                 goto fail;
900             ctx->end_of_stream = 1;
901         }
902     }
903
904     ++ctx->input_order;
905     ++ctx->output_order;
906     av_assert0(ctx->output_order + ctx->output_delay + 1 == ctx->input_order);
907
908     for (pic = ctx->pic_start; pic; pic = pic->next)
909         if (pic->encode_order == ctx->output_order)
910             break;
911
912     // pic can be null here if we don't have a specific target in this
913     // iteration.  We might still issue encodes if things can be overlapped,
914     // even though we don't intend to output anything.
915
916     err = vaapi_encode_step(avctx, pic);
917     if (err < 0) {
918         av_log(avctx, AV_LOG_ERROR, "Encode failed: %d.\n", err);
919         goto fail;
920     }
921
922     if (!pic) {
923         *got_packet = 0;
924     } else {
925         err = vaapi_encode_output(avctx, pic, pkt);
926         if (err < 0) {
927             av_log(avctx, AV_LOG_ERROR, "Output failed: %d.\n", err);
928             goto fail;
929         }
930
931         if (ctx->output_delay == 0) {
932             pkt->dts = pkt->pts;
933         } else if (ctx->output_order < ctx->decode_delay) {
934             if (ctx->ts_ring[ctx->output_order] < INT64_MIN + ctx->dts_pts_diff)
935                 pkt->dts = INT64_MIN;
936             else
937                 pkt->dts = ctx->ts_ring[ctx->output_order] - ctx->dts_pts_diff;
938         } else {
939             pkt->dts = ctx->ts_ring[(ctx->output_order - ctx->decode_delay) %
940                                     (3 * ctx->output_delay)];
941         }
942
943         *got_packet = 1;
944     }
945
946     err = vaapi_encode_clear_old(avctx);
947     if (err < 0) {
948         av_log(avctx, AV_LOG_ERROR, "List clearing failed: %d.\n", err);
949         goto fail;
950     }
951
952     return 0;
953
954 fail:
955     // Unclear what to clean up on failure.  There are probably some things we
956     // could do usefully clean up here, but for now just leave them for uninit()
957     // to do instead.
958     return err;
959 }
960
961 static av_cold int vaapi_encode_config_attributes(AVCodecContext *avctx)
962 {
963     VAAPIEncodeContext *ctx = avctx->priv_data;
964     VAStatus vas;
965     int i, n, err;
966     VAProfile    *profiles    = NULL;
967     VAEntrypoint *entrypoints = NULL;
968     VAConfigAttrib attr[] = {
969         { VAConfigAttribRTFormat         },
970         { VAConfigAttribRateControl      },
971         { VAConfigAttribEncMaxRefFrames  },
972         { VAConfigAttribEncPackedHeaders },
973     };
974
975     n = vaMaxNumProfiles(ctx->hwctx->display);
976     profiles = av_malloc_array(n, sizeof(VAProfile));
977     if (!profiles) {
978         err = AVERROR(ENOMEM);
979         goto fail;
980     }
981     vas = vaQueryConfigProfiles(ctx->hwctx->display, profiles, &n);
982     if (vas != VA_STATUS_SUCCESS) {
983         av_log(ctx, AV_LOG_ERROR, "Failed to query profiles: %d (%s).\n",
984                vas, vaErrorStr(vas));
985         err = AVERROR(ENOSYS);
986         goto fail;
987     }
988     for (i = 0; i < n; i++) {
989         if (profiles[i] == ctx->va_profile)
990             break;
991     }
992     if (i >= n) {
993         av_log(ctx, AV_LOG_ERROR, "Encoding profile not found (%d).\n",
994                ctx->va_profile);
995         err = AVERROR(ENOSYS);
996         goto fail;
997     }
998
999     n = vaMaxNumEntrypoints(ctx->hwctx->display);
1000     entrypoints = av_malloc_array(n, sizeof(VAEntrypoint));
1001     if (!entrypoints) {
1002         err = AVERROR(ENOMEM);
1003         goto fail;
1004     }
1005     vas = vaQueryConfigEntrypoints(ctx->hwctx->display, ctx->va_profile,
1006                                    entrypoints, &n);
1007     if (vas != VA_STATUS_SUCCESS) {
1008         av_log(ctx, AV_LOG_ERROR, "Failed to query entrypoints for "
1009                "profile %u: %d (%s).\n", ctx->va_profile,
1010                vas, vaErrorStr(vas));
1011         err = AVERROR(ENOSYS);
1012         goto fail;
1013     }
1014     for (i = 0; i < n; i++) {
1015         if (entrypoints[i] == ctx->va_entrypoint)
1016             break;
1017     }
1018     if (i >= n) {
1019         av_log(ctx, AV_LOG_ERROR, "Encoding entrypoint not found "
1020                "(%d / %d).\n", ctx->va_profile, ctx->va_entrypoint);
1021         err = AVERROR(ENOSYS);
1022         goto fail;
1023     }
1024
1025     vas = vaGetConfigAttributes(ctx->hwctx->display,
1026                                 ctx->va_profile, ctx->va_entrypoint,
1027                                 attr, FF_ARRAY_ELEMS(attr));
1028     if (vas != VA_STATUS_SUCCESS) {
1029         av_log(avctx, AV_LOG_ERROR, "Failed to fetch config "
1030                "attributes: %d (%s).\n", vas, vaErrorStr(vas));
1031         return AVERROR(EINVAL);
1032     }
1033
1034     for (i = 0; i < FF_ARRAY_ELEMS(attr); i++) {
1035         if (attr[i].value == VA_ATTRIB_NOT_SUPPORTED) {
1036             // Unfortunately we have to treat this as "don't know" and hope
1037             // for the best, because the Intel MJPEG encoder returns this
1038             // for all the interesting attributes.
1039             av_log(avctx, AV_LOG_DEBUG, "Attribute (%d) is not supported.\n",
1040                    attr[i].type);
1041             continue;
1042         }
1043         switch (attr[i].type) {
1044         case VAConfigAttribRTFormat:
1045             if (!(ctx->va_rt_format & attr[i].value)) {
1046                 av_log(avctx, AV_LOG_ERROR, "Surface RT format %#x "
1047                        "is not supported (mask %#x).\n",
1048                        ctx->va_rt_format, attr[i].value);
1049                 err = AVERROR(EINVAL);
1050                 goto fail;
1051             }
1052             ctx->config_attributes[ctx->nb_config_attributes++] =
1053                 (VAConfigAttrib) {
1054                 .type  = VAConfigAttribRTFormat,
1055                 .value = ctx->va_rt_format,
1056             };
1057             break;
1058         case VAConfigAttribRateControl:
1059             // Hack for backward compatibility: CBR was the only
1060             // usable RC mode for a long time, so old drivers will
1061             // only have it.  Normal default options may now choose
1062             // VBR and then fail, however, so override it here with
1063             // CBR if that is the only supported mode.
1064             if (ctx->va_rc_mode == VA_RC_VBR &&
1065                 !(attr[i].value & VA_RC_VBR) &&
1066                 (attr[i].value & VA_RC_CBR)) {
1067                 av_log(avctx, AV_LOG_WARNING, "VBR rate control is "
1068                        "not supported with this driver version; "
1069                        "using CBR instead.\n");
1070                 ctx->va_rc_mode = VA_RC_CBR;
1071             }
1072             if (!(ctx->va_rc_mode & attr[i].value)) {
1073                 av_log(avctx, AV_LOG_ERROR, "Rate control mode %#x "
1074                        "is not supported (mask: %#x).\n",
1075                        ctx->va_rc_mode, attr[i].value);
1076                 err = AVERROR(EINVAL);
1077                 goto fail;
1078             }
1079             ctx->config_attributes[ctx->nb_config_attributes++] =
1080                 (VAConfigAttrib) {
1081                 .type  = VAConfigAttribRateControl,
1082                 .value = ctx->va_rc_mode,
1083             };
1084             break;
1085         case VAConfigAttribEncMaxRefFrames:
1086         {
1087             unsigned int ref_l0 = attr[i].value & 0xffff;
1088             unsigned int ref_l1 = (attr[i].value >> 16) & 0xffff;
1089
1090             if (avctx->gop_size > 1 && ref_l0 < 1) {
1091                 av_log(avctx, AV_LOG_ERROR, "P frames are not "
1092                        "supported (%#x).\n", attr[i].value);
1093                 err = AVERROR(EINVAL);
1094                 goto fail;
1095             }
1096             if (avctx->max_b_frames > 0 && ref_l1 < 1) {
1097                 av_log(avctx, AV_LOG_ERROR, "B frames are not "
1098                        "supported (%#x).\n", attr[i].value);
1099                 err = AVERROR(EINVAL);
1100                 goto fail;
1101             }
1102         }
1103         break;
1104         case VAConfigAttribEncPackedHeaders:
1105             if (ctx->va_packed_headers & ~attr[i].value) {
1106                 // This isn't fatal, but packed headers are always
1107                 // preferable because they are under our control.
1108                 // When absent, the driver is generating them and some
1109                 // features may not work (e.g. VUI or SEI in H.264).
1110                 av_log(avctx, AV_LOG_WARNING, "Warning: some packed "
1111                        "headers are not supported (want %#x, got %#x).\n",
1112                        ctx->va_packed_headers, attr[i].value);
1113                 ctx->va_packed_headers &= attr[i].value;
1114             }
1115             ctx->config_attributes[ctx->nb_config_attributes++] =
1116                 (VAConfigAttrib) {
1117                 .type  = VAConfigAttribEncPackedHeaders,
1118                 .value = ctx->va_packed_headers,
1119             };
1120             break;
1121         default:
1122             av_assert0(0 && "Unexpected config attribute.");
1123         }
1124     }
1125
1126     err = 0;
1127 fail:
1128     av_freep(&profiles);
1129     av_freep(&entrypoints);
1130     return err;
1131 }
1132
1133 static av_cold int vaapi_encode_init_rate_control(AVCodecContext *avctx)
1134 {
1135     VAAPIEncodeContext *ctx = avctx->priv_data;
1136     int rc_bits_per_second;
1137     int rc_target_percentage;
1138     int rc_window_size;
1139     int hrd_buffer_size;
1140     int hrd_initial_buffer_fullness;
1141     int fr_num, fr_den;
1142
1143     if (avctx->bit_rate > INT32_MAX) {
1144         av_log(avctx, AV_LOG_ERROR, "Target bitrate of 2^31 bps or "
1145                "higher is not supported.\n");
1146         return AVERROR(EINVAL);
1147     }
1148
1149     if (avctx->rc_buffer_size)
1150         hrd_buffer_size = avctx->rc_buffer_size;
1151     else
1152         hrd_buffer_size = avctx->bit_rate;
1153     if (avctx->rc_initial_buffer_occupancy)
1154         hrd_initial_buffer_fullness = avctx->rc_initial_buffer_occupancy;
1155     else
1156         hrd_initial_buffer_fullness = hrd_buffer_size * 3 / 4;
1157
1158     if (ctx->va_rc_mode == VA_RC_CBR) {
1159         rc_bits_per_second   = avctx->bit_rate;
1160         rc_target_percentage = 100;
1161         rc_window_size       = 1000;
1162     } else {
1163         if (avctx->rc_max_rate < avctx->bit_rate) {
1164             // Max rate is unset or invalid, just use the normal bitrate.
1165             rc_bits_per_second   = avctx->bit_rate;
1166             rc_target_percentage = 100;
1167         } else {
1168             rc_bits_per_second   = avctx->rc_max_rate;
1169             rc_target_percentage = (avctx->bit_rate * 100) / rc_bits_per_second;
1170         }
1171         rc_window_size = (hrd_buffer_size * 1000) / avctx->bit_rate;
1172     }
1173
1174     ctx->rc_params.misc.type = VAEncMiscParameterTypeRateControl;
1175     ctx->rc_params.rc = (VAEncMiscParameterRateControl) {
1176         .bits_per_second   = rc_bits_per_second,
1177         .target_percentage = rc_target_percentage,
1178         .window_size       = rc_window_size,
1179         .initial_qp        = 0,
1180         .min_qp            = (avctx->qmin > 0 ? avctx->qmin : 0),
1181         .basic_unit_size   = 0,
1182     };
1183     ctx->global_params[ctx->nb_global_params] =
1184         &ctx->rc_params.misc;
1185     ctx->global_params_size[ctx->nb_global_params++] =
1186         sizeof(ctx->rc_params);
1187
1188     ctx->hrd_params.misc.type = VAEncMiscParameterTypeHRD;
1189     ctx->hrd_params.hrd = (VAEncMiscParameterHRD) {
1190         .initial_buffer_fullness = hrd_initial_buffer_fullness,
1191         .buffer_size             = hrd_buffer_size,
1192     };
1193     ctx->global_params[ctx->nb_global_params] =
1194         &ctx->hrd_params.misc;
1195     ctx->global_params_size[ctx->nb_global_params++] =
1196         sizeof(ctx->hrd_params);
1197
1198     if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
1199         av_reduce(&fr_num, &fr_den,
1200                   avctx->framerate.num, avctx->framerate.den, 65535);
1201     else
1202         av_reduce(&fr_num, &fr_den,
1203                   avctx->time_base.den, avctx->time_base.num, 65535);
1204
1205     ctx->fr_params.misc.type = VAEncMiscParameterTypeFrameRate;
1206     ctx->fr_params.fr.framerate = (unsigned int)fr_den << 16 | fr_num;
1207
1208 #if VA_CHECK_VERSION(0, 40, 0)
1209     ctx->global_params[ctx->nb_global_params] =
1210         &ctx->fr_params.misc;
1211     ctx->global_params_size[ctx->nb_global_params++] =
1212         sizeof(ctx->fr_params);
1213 #endif
1214
1215     return 0;
1216 }
1217
1218 static void vaapi_encode_free_output_buffer(void *opaque,
1219                                             uint8_t *data)
1220 {
1221     AVCodecContext   *avctx = opaque;
1222     VAAPIEncodeContext *ctx = avctx->priv_data;
1223     VABufferID buffer_id;
1224
1225     buffer_id = (VABufferID)(uintptr_t)data;
1226
1227     vaDestroyBuffer(ctx->hwctx->display, buffer_id);
1228
1229     av_log(avctx, AV_LOG_DEBUG, "Freed output buffer %#x\n", buffer_id);
1230 }
1231
1232 static AVBufferRef *vaapi_encode_alloc_output_buffer(void *opaque,
1233                                                      int size)
1234 {
1235     AVCodecContext   *avctx = opaque;
1236     VAAPIEncodeContext *ctx = avctx->priv_data;
1237     VABufferID buffer_id;
1238     VAStatus vas;
1239     AVBufferRef *ref;
1240
1241     // The output buffer size is fixed, so it needs to be large enough
1242     // to hold the largest possible compressed frame.  We assume here
1243     // that the uncompressed frame plus some header data is an upper
1244     // bound on that.
1245     vas = vaCreateBuffer(ctx->hwctx->display, ctx->va_context,
1246                          VAEncCodedBufferType,
1247                          3 * ctx->surface_width * ctx->surface_height +
1248                          (1 << 16), 1, 0, &buffer_id);
1249     if (vas != VA_STATUS_SUCCESS) {
1250         av_log(avctx, AV_LOG_ERROR, "Failed to create bitstream "
1251                "output buffer: %d (%s).\n", vas, vaErrorStr(vas));
1252         return NULL;
1253     }
1254
1255     av_log(avctx, AV_LOG_DEBUG, "Allocated output buffer %#x\n", buffer_id);
1256
1257     ref = av_buffer_create((uint8_t*)(uintptr_t)buffer_id,
1258                            sizeof(buffer_id),
1259                            &vaapi_encode_free_output_buffer,
1260                            avctx, AV_BUFFER_FLAG_READONLY);
1261     if (!ref) {
1262         vaDestroyBuffer(ctx->hwctx->display, buffer_id);
1263         return NULL;
1264     }
1265
1266     return ref;
1267 }
1268
1269 static av_cold int vaapi_encode_create_recon_frames(AVCodecContext *avctx)
1270 {
1271     VAAPIEncodeContext *ctx = avctx->priv_data;
1272     AVVAAPIHWConfig *hwconfig = NULL;
1273     AVHWFramesConstraints *constraints = NULL;
1274     enum AVPixelFormat recon_format;
1275     int err, i;
1276
1277     hwconfig = av_hwdevice_hwconfig_alloc(ctx->device_ref);
1278     if (!hwconfig) {
1279         err = AVERROR(ENOMEM);
1280         goto fail;
1281     }
1282     hwconfig->config_id = ctx->va_config;
1283
1284     constraints = av_hwdevice_get_hwframe_constraints(ctx->device_ref,
1285                                                       hwconfig);
1286     if (!constraints) {
1287         err = AVERROR(ENOMEM);
1288         goto fail;
1289     }
1290
1291     // Probably we can use the input surface format as the surface format
1292     // of the reconstructed frames.  If not, we just pick the first (only?)
1293     // format in the valid list and hope that it all works.
1294     recon_format = AV_PIX_FMT_NONE;
1295     if (constraints->valid_sw_formats) {
1296         for (i = 0; constraints->valid_sw_formats[i] != AV_PIX_FMT_NONE; i++) {
1297             if (ctx->input_frames->sw_format ==
1298                 constraints->valid_sw_formats[i]) {
1299                 recon_format = ctx->input_frames->sw_format;
1300                 break;
1301             }
1302         }
1303         if (recon_format == AV_PIX_FMT_NONE) {
1304             // No match.  Just use the first in the supported list and
1305             // hope for the best.
1306             recon_format = constraints->valid_sw_formats[0];
1307         }
1308     } else {
1309         // No idea what to use; copy input format.
1310         recon_format = ctx->input_frames->sw_format;
1311     }
1312     av_log(avctx, AV_LOG_DEBUG, "Using %s as format of "
1313            "reconstructed frames.\n", av_get_pix_fmt_name(recon_format));
1314
1315     if (ctx->surface_width  < constraints->min_width  ||
1316         ctx->surface_height < constraints->min_height ||
1317         ctx->surface_width  > constraints->max_width ||
1318         ctx->surface_height > constraints->max_height) {
1319         av_log(avctx, AV_LOG_ERROR, "Hardware does not support encoding at "
1320                "size %dx%d (constraints: width %d-%d height %d-%d).\n",
1321                ctx->surface_width, ctx->surface_height,
1322                constraints->min_width,  constraints->max_width,
1323                constraints->min_height, constraints->max_height);
1324         err = AVERROR(EINVAL);
1325         goto fail;
1326     }
1327
1328     av_freep(&hwconfig);
1329     av_hwframe_constraints_free(&constraints);
1330
1331     ctx->recon_frames_ref = av_hwframe_ctx_alloc(ctx->device_ref);
1332     if (!ctx->recon_frames_ref) {
1333         err = AVERROR(ENOMEM);
1334         goto fail;
1335     }
1336     ctx->recon_frames = (AVHWFramesContext*)ctx->recon_frames_ref->data;
1337
1338     ctx->recon_frames->format    = AV_PIX_FMT_VAAPI;
1339     ctx->recon_frames->sw_format = recon_format;
1340     ctx->recon_frames->width     = ctx->surface_width;
1341     ctx->recon_frames->height    = ctx->surface_height;
1342     // At most three IDR/I/P frames and two runs of B frames can be in
1343     // flight at any one time.
1344     ctx->recon_frames->initial_pool_size = 3 + 2 * avctx->max_b_frames;
1345
1346     err = av_hwframe_ctx_init(ctx->recon_frames_ref);
1347     if (err < 0) {
1348         av_log(avctx, AV_LOG_ERROR, "Failed to initialise reconstructed "
1349                "frame context: %d.\n", err);
1350         goto fail;
1351     }
1352
1353     err = 0;
1354   fail:
1355     av_freep(&hwconfig);
1356     av_hwframe_constraints_free(&constraints);
1357     return err;
1358 }
1359
1360 av_cold int ff_vaapi_encode_init(AVCodecContext *avctx)
1361 {
1362     VAAPIEncodeContext *ctx = avctx->priv_data;
1363     AVVAAPIFramesContext *recon_hwctx = NULL;
1364     VAStatus vas;
1365     int err;
1366
1367     if (!avctx->hw_frames_ctx) {
1368         av_log(avctx, AV_LOG_ERROR, "A hardware frames reference is "
1369                "required to associate the encoding device.\n");
1370         return AVERROR(EINVAL);
1371     }
1372
1373     ctx->codec_options = ctx->codec_options_data;
1374
1375     ctx->va_config  = VA_INVALID_ID;
1376     ctx->va_context = VA_INVALID_ID;
1377
1378     ctx->priv_data = av_mallocz(ctx->codec->priv_data_size);
1379     if (!ctx->priv_data) {
1380         err = AVERROR(ENOMEM);
1381         goto fail;
1382     }
1383
1384     ctx->input_frames_ref = av_buffer_ref(avctx->hw_frames_ctx);
1385     if (!ctx->input_frames_ref) {
1386         err = AVERROR(ENOMEM);
1387         goto fail;
1388     }
1389     ctx->input_frames = (AVHWFramesContext*)ctx->input_frames_ref->data;
1390
1391     ctx->device_ref = av_buffer_ref(ctx->input_frames->device_ref);
1392     if (!ctx->device_ref) {
1393         err = AVERROR(ENOMEM);
1394         goto fail;
1395     }
1396     ctx->device = (AVHWDeviceContext*)ctx->device_ref->data;
1397     ctx->hwctx = ctx->device->hwctx;
1398
1399     err = vaapi_encode_config_attributes(avctx);
1400     if (err < 0)
1401         goto fail;
1402
1403     vas = vaCreateConfig(ctx->hwctx->display,
1404                          ctx->va_profile, ctx->va_entrypoint,
1405                          ctx->config_attributes, ctx->nb_config_attributes,
1406                          &ctx->va_config);
1407     if (vas != VA_STATUS_SUCCESS) {
1408         av_log(avctx, AV_LOG_ERROR, "Failed to create encode pipeline "
1409                "configuration: %d (%s).\n", vas, vaErrorStr(vas));
1410         err = AVERROR(EIO);
1411         goto fail;
1412     }
1413
1414     err = vaapi_encode_create_recon_frames(avctx);
1415     if (err < 0)
1416         goto fail;
1417
1418     recon_hwctx = ctx->recon_frames->hwctx;
1419     vas = vaCreateContext(ctx->hwctx->display, ctx->va_config,
1420                           ctx->surface_width, ctx->surface_height,
1421                           VA_PROGRESSIVE,
1422                           recon_hwctx->surface_ids,
1423                           recon_hwctx->nb_surfaces,
1424                           &ctx->va_context);
1425     if (vas != VA_STATUS_SUCCESS) {
1426         av_log(avctx, AV_LOG_ERROR, "Failed to create encode pipeline "
1427                "context: %d (%s).\n", vas, vaErrorStr(vas));
1428         err = AVERROR(EIO);
1429         goto fail;
1430     }
1431
1432     ctx->output_buffer_pool =
1433         av_buffer_pool_init2(sizeof(VABufferID), avctx,
1434                              &vaapi_encode_alloc_output_buffer, NULL);
1435     if (!ctx->output_buffer_pool) {
1436         err = AVERROR(ENOMEM);
1437         goto fail;
1438     }
1439
1440     if (ctx->va_rc_mode & ~VA_RC_CQP) {
1441         err = vaapi_encode_init_rate_control(avctx);
1442         if (err < 0)
1443             goto fail;
1444     }
1445
1446     if (ctx->codec->configure) {
1447         err = ctx->codec->configure(avctx);
1448         if (err < 0)
1449             goto fail;
1450     }
1451
1452     if (avctx->compression_level >= 0) {
1453 #if VA_CHECK_VERSION(0, 36, 0)
1454         VAConfigAttrib attr = { VAConfigAttribEncQualityRange };
1455
1456         vas = vaGetConfigAttributes(ctx->hwctx->display,
1457                                     ctx->va_profile,
1458                                     ctx->va_entrypoint,
1459                                     &attr, 1);
1460         if (vas != VA_STATUS_SUCCESS) {
1461             av_log(avctx, AV_LOG_WARNING, "Failed to query quality "
1462                    "attribute: will use default compression level.\n");
1463         } else {
1464             if (avctx->compression_level > attr.value) {
1465                 av_log(avctx, AV_LOG_WARNING, "Invalid compression "
1466                        "level: valid range is 0-%d, using %d.\n",
1467                        attr.value, attr.value);
1468                 avctx->compression_level = attr.value;
1469             }
1470
1471             ctx->quality_params.misc.type =
1472                 VAEncMiscParameterTypeQualityLevel;
1473             ctx->quality_params.quality.quality_level =
1474                 avctx->compression_level;
1475
1476             ctx->global_params[ctx->nb_global_params] =
1477                 &ctx->quality_params.misc;
1478             ctx->global_params_size[ctx->nb_global_params++] =
1479                 sizeof(ctx->quality_params);
1480         }
1481 #else
1482         av_log(avctx, AV_LOG_WARNING, "The encode compression level "
1483                "option is not supported with this VAAPI version.\n");
1484 #endif
1485     }
1486
1487     ctx->input_order  = 0;
1488     ctx->output_delay = avctx->max_b_frames;
1489     ctx->decode_delay = 1;
1490     ctx->output_order = - ctx->output_delay - 1;
1491
1492     // Currently we never generate I frames, only IDR.
1493     ctx->p_per_i = INT_MAX;
1494     ctx->b_per_p = avctx->max_b_frames;
1495
1496     if (ctx->codec->sequence_params_size > 0) {
1497         ctx->codec_sequence_params =
1498             av_mallocz(ctx->codec->sequence_params_size);
1499         if (!ctx->codec_sequence_params) {
1500             err = AVERROR(ENOMEM);
1501             goto fail;
1502         }
1503     }
1504     if (ctx->codec->picture_params_size > 0) {
1505         ctx->codec_picture_params =
1506             av_mallocz(ctx->codec->picture_params_size);
1507         if (!ctx->codec_picture_params) {
1508             err = AVERROR(ENOMEM);
1509             goto fail;
1510         }
1511     }
1512
1513     if (ctx->codec->init_sequence_params) {
1514         err = ctx->codec->init_sequence_params(avctx);
1515         if (err < 0) {
1516             av_log(avctx, AV_LOG_ERROR, "Codec sequence initialisation "
1517                    "failed: %d.\n", err);
1518             goto fail;
1519         }
1520     }
1521
1522     // This should be configurable somehow.  (Needs testing on a machine
1523     // where it actually overlaps properly, though.)
1524     ctx->issue_mode = ISSUE_MODE_MAXIMISE_THROUGHPUT;
1525
1526     if (ctx->va_packed_headers & VA_ENC_PACKED_HEADER_SEQUENCE &&
1527         ctx->codec->write_sequence_header) {
1528         char data[MAX_PARAM_BUFFER_SIZE];
1529         size_t bit_len = 8 * sizeof(data);
1530
1531         err = ctx->codec->write_sequence_header(avctx, data, &bit_len);
1532         if (err < 0) {
1533             av_log(avctx, AV_LOG_ERROR, "Failed to write sequence header "
1534                    "for extradata: %d.\n", err);
1535             goto fail;
1536         } else {
1537             avctx->extradata_size = (bit_len + 7) / 8;
1538             avctx->extradata = av_mallocz(avctx->extradata_size +
1539                                           AV_INPUT_BUFFER_PADDING_SIZE);
1540             if (!avctx->extradata) {
1541                 err = AVERROR(ENOMEM);
1542                 goto fail;
1543             }
1544             memcpy(avctx->extradata, data, avctx->extradata_size);
1545         }
1546     }
1547
1548     return 0;
1549
1550 fail:
1551     ff_vaapi_encode_close(avctx);
1552     return err;
1553 }
1554
1555 av_cold int ff_vaapi_encode_close(AVCodecContext *avctx)
1556 {
1557     VAAPIEncodeContext *ctx = avctx->priv_data;
1558     VAAPIEncodePicture *pic, *next;
1559
1560     for (pic = ctx->pic_start; pic; pic = next) {
1561         next = pic->next;
1562         vaapi_encode_free(avctx, pic);
1563     }
1564
1565     if (ctx->va_context != VA_INVALID_ID) {
1566         vaDestroyContext(ctx->hwctx->display, ctx->va_context);
1567         ctx->va_context = VA_INVALID_ID;
1568     }
1569
1570     if (ctx->va_config != VA_INVALID_ID) {
1571         vaDestroyConfig(ctx->hwctx->display, ctx->va_config);
1572         ctx->va_config = VA_INVALID_ID;
1573     }
1574
1575     av_buffer_pool_uninit(&ctx->output_buffer_pool);
1576
1577     av_freep(&ctx->codec_sequence_params);
1578     av_freep(&ctx->codec_picture_params);
1579
1580     av_buffer_unref(&ctx->recon_frames_ref);
1581     av_buffer_unref(&ctx->input_frames_ref);
1582     av_buffer_unref(&ctx->device_ref);
1583
1584     av_freep(&ctx->priv_data);
1585
1586     return 0;
1587 }