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