]> git.sesse.net Git - ffmpeg/blob - libavutil/hwcontext.c
lavu: add Vulkan hwcontext code
[ffmpeg] / libavutil / hwcontext.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 "config.h"
20
21 #include "buffer.h"
22 #include "common.h"
23 #include "hwcontext.h"
24 #include "hwcontext_internal.h"
25 #include "imgutils.h"
26 #include "log.h"
27 #include "mem.h"
28 #include "pixdesc.h"
29 #include "pixfmt.h"
30
31 static const HWContextType * const hw_table[] = {
32 #if CONFIG_CUDA
33     &ff_hwcontext_type_cuda,
34 #endif
35 #if CONFIG_D3D11VA
36     &ff_hwcontext_type_d3d11va,
37 #endif
38 #if CONFIG_LIBDRM
39     &ff_hwcontext_type_drm,
40 #endif
41 #if CONFIG_DXVA2
42     &ff_hwcontext_type_dxva2,
43 #endif
44 #if CONFIG_OPENCL
45     &ff_hwcontext_type_opencl,
46 #endif
47 #if CONFIG_QSV
48     &ff_hwcontext_type_qsv,
49 #endif
50 #if CONFIG_VAAPI
51     &ff_hwcontext_type_vaapi,
52 #endif
53 #if CONFIG_VDPAU
54     &ff_hwcontext_type_vdpau,
55 #endif
56 #if CONFIG_VIDEOTOOLBOX
57     &ff_hwcontext_type_videotoolbox,
58 #endif
59 #if CONFIG_MEDIACODEC
60     &ff_hwcontext_type_mediacodec,
61 #endif
62 #if CONFIG_VULKAN
63     &ff_hwcontext_type_vulkan,
64 #endif
65     NULL,
66 };
67
68 static const char *const hw_type_names[] = {
69     [AV_HWDEVICE_TYPE_CUDA]   = "cuda",
70     [AV_HWDEVICE_TYPE_DRM]    = "drm",
71     [AV_HWDEVICE_TYPE_DXVA2]  = "dxva2",
72     [AV_HWDEVICE_TYPE_D3D11VA] = "d3d11va",
73     [AV_HWDEVICE_TYPE_OPENCL] = "opencl",
74     [AV_HWDEVICE_TYPE_QSV]    = "qsv",
75     [AV_HWDEVICE_TYPE_VAAPI]  = "vaapi",
76     [AV_HWDEVICE_TYPE_VDPAU]  = "vdpau",
77     [AV_HWDEVICE_TYPE_VIDEOTOOLBOX] = "videotoolbox",
78     [AV_HWDEVICE_TYPE_MEDIACODEC] = "mediacodec",
79     [AV_HWDEVICE_TYPE_VULKAN] = "vulkan",
80 };
81
82 enum AVHWDeviceType av_hwdevice_find_type_by_name(const char *name)
83 {
84     int type;
85     for (type = 0; type < FF_ARRAY_ELEMS(hw_type_names); type++) {
86         if (hw_type_names[type] && !strcmp(hw_type_names[type], name))
87             return type;
88     }
89     return AV_HWDEVICE_TYPE_NONE;
90 }
91
92 const char *av_hwdevice_get_type_name(enum AVHWDeviceType type)
93 {
94     if (type > AV_HWDEVICE_TYPE_NONE &&
95         type < FF_ARRAY_ELEMS(hw_type_names))
96         return hw_type_names[type];
97     else
98         return NULL;
99 }
100
101 enum AVHWDeviceType av_hwdevice_iterate_types(enum AVHWDeviceType prev)
102 {
103     enum AVHWDeviceType next;
104     int i, set = 0;
105     for (i = 0; hw_table[i]; i++) {
106         if (prev != AV_HWDEVICE_TYPE_NONE && hw_table[i]->type <= prev)
107             continue;
108         if (!set || hw_table[i]->type < next) {
109             next = hw_table[i]->type;
110             set = 1;
111         }
112     }
113     return set ? next : AV_HWDEVICE_TYPE_NONE;
114 }
115
116 static const AVClass hwdevice_ctx_class = {
117     .class_name = "AVHWDeviceContext",
118     .item_name  = av_default_item_name,
119     .version    = LIBAVUTIL_VERSION_INT,
120 };
121
122 static void hwdevice_ctx_free(void *opaque, uint8_t *data)
123 {
124     AVHWDeviceContext *ctx = (AVHWDeviceContext*)data;
125
126     /* uninit might still want access the hw context and the user
127      * free() callback might destroy it, so uninit has to be called first */
128     if (ctx->internal->hw_type->device_uninit)
129         ctx->internal->hw_type->device_uninit(ctx);
130
131     if (ctx->free)
132         ctx->free(ctx);
133
134     av_buffer_unref(&ctx->internal->source_device);
135
136     av_freep(&ctx->hwctx);
137     av_freep(&ctx->internal->priv);
138     av_freep(&ctx->internal);
139     av_freep(&ctx);
140 }
141
142 AVBufferRef *av_hwdevice_ctx_alloc(enum AVHWDeviceType type)
143 {
144     AVHWDeviceContext *ctx;
145     AVBufferRef *buf;
146     const HWContextType *hw_type = NULL;
147     int i;
148
149     for (i = 0; hw_table[i]; i++) {
150         if (hw_table[i]->type == type) {
151             hw_type = hw_table[i];
152             break;
153         }
154     }
155     if (!hw_type)
156         return NULL;
157
158     ctx = av_mallocz(sizeof(*ctx));
159     if (!ctx)
160         return NULL;
161
162     ctx->internal = av_mallocz(sizeof(*ctx->internal));
163     if (!ctx->internal)
164         goto fail;
165
166     if (hw_type->device_priv_size) {
167         ctx->internal->priv = av_mallocz(hw_type->device_priv_size);
168         if (!ctx->internal->priv)
169             goto fail;
170     }
171
172     if (hw_type->device_hwctx_size) {
173         ctx->hwctx = av_mallocz(hw_type->device_hwctx_size);
174         if (!ctx->hwctx)
175             goto fail;
176     }
177
178     buf = av_buffer_create((uint8_t*)ctx, sizeof(*ctx),
179                            hwdevice_ctx_free, NULL,
180                            AV_BUFFER_FLAG_READONLY);
181     if (!buf)
182         goto fail;
183
184     ctx->type     = type;
185     ctx->av_class = &hwdevice_ctx_class;
186
187     ctx->internal->hw_type = hw_type;
188
189     return buf;
190
191 fail:
192     if (ctx->internal)
193         av_freep(&ctx->internal->priv);
194     av_freep(&ctx->internal);
195     av_freep(&ctx->hwctx);
196     av_freep(&ctx);
197     return NULL;
198 }
199
200 int av_hwdevice_ctx_init(AVBufferRef *ref)
201 {
202     AVHWDeviceContext *ctx = (AVHWDeviceContext*)ref->data;
203     int ret;
204
205     if (ctx->internal->hw_type->device_init) {
206         ret = ctx->internal->hw_type->device_init(ctx);
207         if (ret < 0)
208             goto fail;
209     }
210
211     return 0;
212 fail:
213     if (ctx->internal->hw_type->device_uninit)
214         ctx->internal->hw_type->device_uninit(ctx);
215     return ret;
216 }
217
218 static const AVClass hwframe_ctx_class = {
219     .class_name = "AVHWFramesContext",
220     .item_name  = av_default_item_name,
221     .version    = LIBAVUTIL_VERSION_INT,
222 };
223
224 static void hwframe_ctx_free(void *opaque, uint8_t *data)
225 {
226     AVHWFramesContext *ctx = (AVHWFramesContext*)data;
227
228     if (ctx->internal->pool_internal)
229         av_buffer_pool_uninit(&ctx->internal->pool_internal);
230
231     if (ctx->internal->hw_type->frames_uninit)
232         ctx->internal->hw_type->frames_uninit(ctx);
233
234     if (ctx->free)
235         ctx->free(ctx);
236
237     av_buffer_unref(&ctx->internal->source_frames);
238
239     av_buffer_unref(&ctx->device_ref);
240
241     av_freep(&ctx->hwctx);
242     av_freep(&ctx->internal->priv);
243     av_freep(&ctx->internal);
244     av_freep(&ctx);
245 }
246
247 AVBufferRef *av_hwframe_ctx_alloc(AVBufferRef *device_ref_in)
248 {
249     AVHWDeviceContext *device_ctx = (AVHWDeviceContext*)device_ref_in->data;
250     const HWContextType  *hw_type = device_ctx->internal->hw_type;
251     AVHWFramesContext *ctx;
252     AVBufferRef *buf, *device_ref = NULL;
253
254     ctx = av_mallocz(sizeof(*ctx));
255     if (!ctx)
256         return NULL;
257
258     ctx->internal = av_mallocz(sizeof(*ctx->internal));
259     if (!ctx->internal)
260         goto fail;
261
262     if (hw_type->frames_priv_size) {
263         ctx->internal->priv = av_mallocz(hw_type->frames_priv_size);
264         if (!ctx->internal->priv)
265             goto fail;
266     }
267
268     if (hw_type->frames_hwctx_size) {
269         ctx->hwctx = av_mallocz(hw_type->frames_hwctx_size);
270         if (!ctx->hwctx)
271             goto fail;
272     }
273
274     device_ref = av_buffer_ref(device_ref_in);
275     if (!device_ref)
276         goto fail;
277
278     buf = av_buffer_create((uint8_t*)ctx, sizeof(*ctx),
279                            hwframe_ctx_free, NULL,
280                            AV_BUFFER_FLAG_READONLY);
281     if (!buf)
282         goto fail;
283
284     ctx->av_class   = &hwframe_ctx_class;
285     ctx->device_ref = device_ref;
286     ctx->device_ctx = device_ctx;
287     ctx->format     = AV_PIX_FMT_NONE;
288     ctx->sw_format  = AV_PIX_FMT_NONE;
289
290     ctx->internal->hw_type = hw_type;
291
292     return buf;
293
294 fail:
295     if (device_ref)
296         av_buffer_unref(&device_ref);
297     if (ctx->internal)
298         av_freep(&ctx->internal->priv);
299     av_freep(&ctx->internal);
300     av_freep(&ctx->hwctx);
301     av_freep(&ctx);
302     return NULL;
303 }
304
305 static int hwframe_pool_prealloc(AVBufferRef *ref)
306 {
307     AVHWFramesContext *ctx = (AVHWFramesContext*)ref->data;
308     AVFrame **frames;
309     int i, ret = 0;
310
311     frames = av_mallocz_array(ctx->initial_pool_size, sizeof(*frames));
312     if (!frames)
313         return AVERROR(ENOMEM);
314
315     for (i = 0; i < ctx->initial_pool_size; i++) {
316         frames[i] = av_frame_alloc();
317         if (!frames[i])
318             goto fail;
319
320         ret = av_hwframe_get_buffer(ref, frames[i], 0);
321         if (ret < 0)
322             goto fail;
323     }
324
325 fail:
326     for (i = 0; i < ctx->initial_pool_size; i++)
327         av_frame_free(&frames[i]);
328     av_freep(&frames);
329
330     return ret;
331 }
332
333 int av_hwframe_ctx_init(AVBufferRef *ref)
334 {
335     AVHWFramesContext *ctx = (AVHWFramesContext*)ref->data;
336     const enum AVPixelFormat *pix_fmt;
337     int ret;
338
339     if (ctx->internal->source_frames) {
340         /* A derived frame context is already initialised. */
341         return 0;
342     }
343
344     /* validate the pixel format */
345     for (pix_fmt = ctx->internal->hw_type->pix_fmts; *pix_fmt != AV_PIX_FMT_NONE; pix_fmt++) {
346         if (*pix_fmt == ctx->format)
347             break;
348     }
349     if (*pix_fmt == AV_PIX_FMT_NONE) {
350         av_log(ctx, AV_LOG_ERROR,
351                "The hardware pixel format '%s' is not supported by the device type '%s'\n",
352                av_get_pix_fmt_name(ctx->format), ctx->internal->hw_type->name);
353         return AVERROR(ENOSYS);
354     }
355
356     /* validate the dimensions */
357     ret = av_image_check_size(ctx->width, ctx->height, 0, ctx);
358     if (ret < 0)
359         return ret;
360
361     /* format-specific init */
362     if (ctx->internal->hw_type->frames_init) {
363         ret = ctx->internal->hw_type->frames_init(ctx);
364         if (ret < 0)
365             goto fail;
366     }
367
368     if (ctx->internal->pool_internal && !ctx->pool)
369         ctx->pool = ctx->internal->pool_internal;
370
371     /* preallocate the frames in the pool, if requested */
372     if (ctx->initial_pool_size > 0) {
373         ret = hwframe_pool_prealloc(ref);
374         if (ret < 0)
375             goto fail;
376     }
377
378     return 0;
379 fail:
380     if (ctx->internal->hw_type->frames_uninit)
381         ctx->internal->hw_type->frames_uninit(ctx);
382     return ret;
383 }
384
385 int av_hwframe_transfer_get_formats(AVBufferRef *hwframe_ref,
386                                     enum AVHWFrameTransferDirection dir,
387                                     enum AVPixelFormat **formats, int flags)
388 {
389     AVHWFramesContext *ctx = (AVHWFramesContext*)hwframe_ref->data;
390
391     if (!ctx->internal->hw_type->transfer_get_formats)
392         return AVERROR(ENOSYS);
393
394     return ctx->internal->hw_type->transfer_get_formats(ctx, dir, formats);
395 }
396
397 static int transfer_data_alloc(AVFrame *dst, const AVFrame *src, int flags)
398 {
399     AVHWFramesContext *ctx = (AVHWFramesContext*)src->hw_frames_ctx->data;
400     AVFrame *frame_tmp;
401     int ret = 0;
402
403     frame_tmp = av_frame_alloc();
404     if (!frame_tmp)
405         return AVERROR(ENOMEM);
406
407     /* if the format is set, use that
408      * otherwise pick the first supported one */
409     if (dst->format >= 0) {
410         frame_tmp->format = dst->format;
411     } else {
412         enum AVPixelFormat *formats;
413
414         ret = av_hwframe_transfer_get_formats(src->hw_frames_ctx,
415                                               AV_HWFRAME_TRANSFER_DIRECTION_FROM,
416                                               &formats, 0);
417         if (ret < 0)
418             goto fail;
419         frame_tmp->format = formats[0];
420         av_freep(&formats);
421     }
422     frame_tmp->width  = ctx->width;
423     frame_tmp->height = ctx->height;
424
425     ret = av_frame_get_buffer(frame_tmp, 32);
426     if (ret < 0)
427         goto fail;
428
429     ret = av_hwframe_transfer_data(frame_tmp, src, flags);
430     if (ret < 0)
431         goto fail;
432
433     frame_tmp->width  = src->width;
434     frame_tmp->height = src->height;
435
436     av_frame_move_ref(dst, frame_tmp);
437
438 fail:
439     av_frame_free(&frame_tmp);
440     return ret;
441 }
442
443 int av_hwframe_transfer_data(AVFrame *dst, const AVFrame *src, int flags)
444 {
445     AVHWFramesContext *ctx;
446     int ret;
447
448     if (!dst->buf[0])
449         return transfer_data_alloc(dst, src, flags);
450
451     /*
452      * Hardware -> Hardware Transfer.
453      * Unlike Software -> Hardware or Hardware -> Software, the transfer
454      * function could be provided by either the src or dst, depending on
455      * the specific combination of hardware.
456      */
457     if (src->hw_frames_ctx && dst->hw_frames_ctx) {
458         AVHWFramesContext *src_ctx =
459             (AVHWFramesContext*)src->hw_frames_ctx->data;
460         AVHWFramesContext *dst_ctx =
461             (AVHWFramesContext*)dst->hw_frames_ctx->data;
462
463         if (src_ctx->internal->source_frames) {
464             av_log(src_ctx, AV_LOG_ERROR,
465                    "A device with a derived frame context cannot be used as "
466                    "the source of a HW -> HW transfer.");
467             return AVERROR(ENOSYS);
468         }
469
470         if (dst_ctx->internal->source_frames) {
471             av_log(src_ctx, AV_LOG_ERROR,
472                    "A device with a derived frame context cannot be used as "
473                    "the destination of a HW -> HW transfer.");
474             return AVERROR(ENOSYS);
475         }
476
477         ret = src_ctx->internal->hw_type->transfer_data_from(src_ctx, dst, src);
478         if (ret == AVERROR(ENOSYS))
479             ret = dst_ctx->internal->hw_type->transfer_data_to(dst_ctx, dst, src);
480         if (ret < 0)
481             return ret;
482     } else {
483         if (src->hw_frames_ctx) {
484             ctx = (AVHWFramesContext*)src->hw_frames_ctx->data;
485
486             ret = ctx->internal->hw_type->transfer_data_from(ctx, dst, src);
487             if (ret < 0)
488                 return ret;
489         } else if (dst->hw_frames_ctx) {
490             ctx = (AVHWFramesContext*)dst->hw_frames_ctx->data;
491
492             ret = ctx->internal->hw_type->transfer_data_to(ctx, dst, src);
493             if (ret < 0)
494                 return ret;
495         } else {
496             return AVERROR(ENOSYS);
497         }
498     }
499     return 0;
500 }
501
502 int av_hwframe_get_buffer(AVBufferRef *hwframe_ref, AVFrame *frame, int flags)
503 {
504     AVHWFramesContext *ctx = (AVHWFramesContext*)hwframe_ref->data;
505     int ret;
506
507     if (ctx->internal->source_frames) {
508         // This is a derived frame context, so we allocate in the source
509         // and map the frame immediately.
510         AVFrame *src_frame;
511
512         frame->format = ctx->format;
513         frame->hw_frames_ctx = av_buffer_ref(hwframe_ref);
514         if (!frame->hw_frames_ctx)
515             return AVERROR(ENOMEM);
516
517         src_frame = av_frame_alloc();
518         if (!src_frame)
519             return AVERROR(ENOMEM);
520
521         ret = av_hwframe_get_buffer(ctx->internal->source_frames,
522                                     src_frame, 0);
523         if (ret < 0) {
524             av_frame_free(&src_frame);
525             return ret;
526         }
527
528         ret = av_hwframe_map(frame, src_frame,
529                              ctx->internal->source_allocation_map_flags);
530         if (ret) {
531             av_log(ctx, AV_LOG_ERROR, "Failed to map frame into derived "
532                    "frame context: %d.\n", ret);
533             av_frame_free(&src_frame);
534             return ret;
535         }
536
537         // Free the source frame immediately - the mapped frame still
538         // contains a reference to it.
539         av_frame_free(&src_frame);
540
541         return 0;
542     }
543
544     if (!ctx->internal->hw_type->frames_get_buffer)
545         return AVERROR(ENOSYS);
546
547     if (!ctx->pool)
548         return AVERROR(EINVAL);
549
550     frame->hw_frames_ctx = av_buffer_ref(hwframe_ref);
551     if (!frame->hw_frames_ctx)
552         return AVERROR(ENOMEM);
553
554     ret = ctx->internal->hw_type->frames_get_buffer(ctx, frame);
555     if (ret < 0) {
556         av_buffer_unref(&frame->hw_frames_ctx);
557         return ret;
558     }
559
560     return 0;
561 }
562
563 void *av_hwdevice_hwconfig_alloc(AVBufferRef *ref)
564 {
565     AVHWDeviceContext *ctx = (AVHWDeviceContext*)ref->data;
566     const HWContextType  *hw_type = ctx->internal->hw_type;
567
568     if (hw_type->device_hwconfig_size == 0)
569         return NULL;
570
571     return av_mallocz(hw_type->device_hwconfig_size);
572 }
573
574 AVHWFramesConstraints *av_hwdevice_get_hwframe_constraints(AVBufferRef *ref,
575                                                            const void *hwconfig)
576 {
577     AVHWDeviceContext *ctx = (AVHWDeviceContext*)ref->data;
578     const HWContextType  *hw_type = ctx->internal->hw_type;
579     AVHWFramesConstraints *constraints;
580
581     if (!hw_type->frames_get_constraints)
582         return NULL;
583
584     constraints = av_mallocz(sizeof(*constraints));
585     if (!constraints)
586         return NULL;
587
588     constraints->min_width = constraints->min_height = 0;
589     constraints->max_width = constraints->max_height = INT_MAX;
590
591     if (hw_type->frames_get_constraints(ctx, hwconfig, constraints) >= 0) {
592         return constraints;
593     } else {
594         av_hwframe_constraints_free(&constraints);
595         return NULL;
596     }
597 }
598
599 void av_hwframe_constraints_free(AVHWFramesConstraints **constraints)
600 {
601     if (*constraints) {
602         av_freep(&(*constraints)->valid_hw_formats);
603         av_freep(&(*constraints)->valid_sw_formats);
604     }
605     av_freep(constraints);
606 }
607
608 int av_hwdevice_ctx_create(AVBufferRef **pdevice_ref, enum AVHWDeviceType type,
609                            const char *device, AVDictionary *opts, int flags)
610 {
611     AVBufferRef *device_ref = NULL;
612     AVHWDeviceContext *device_ctx;
613     int ret = 0;
614
615     device_ref = av_hwdevice_ctx_alloc(type);
616     if (!device_ref) {
617         ret = AVERROR(ENOMEM);
618         goto fail;
619     }
620     device_ctx = (AVHWDeviceContext*)device_ref->data;
621
622     if (!device_ctx->internal->hw_type->device_create) {
623         ret = AVERROR(ENOSYS);
624         goto fail;
625     }
626
627     ret = device_ctx->internal->hw_type->device_create(device_ctx, device,
628                                                        opts, flags);
629     if (ret < 0)
630         goto fail;
631
632     ret = av_hwdevice_ctx_init(device_ref);
633     if (ret < 0)
634         goto fail;
635
636     *pdevice_ref = device_ref;
637     return 0;
638 fail:
639     av_buffer_unref(&device_ref);
640     *pdevice_ref = NULL;
641     return ret;
642 }
643
644 int av_hwdevice_ctx_create_derived(AVBufferRef **dst_ref_ptr,
645                                    enum AVHWDeviceType type,
646                                    AVBufferRef *src_ref, int flags)
647 {
648     AVBufferRef *dst_ref = NULL, *tmp_ref;
649     AVHWDeviceContext *dst_ctx, *tmp_ctx;
650     int ret = 0;
651
652     tmp_ref = src_ref;
653     while (tmp_ref) {
654         tmp_ctx = (AVHWDeviceContext*)tmp_ref->data;
655         if (tmp_ctx->type == type) {
656             dst_ref = av_buffer_ref(tmp_ref);
657             if (!dst_ref) {
658                 ret = AVERROR(ENOMEM);
659                 goto fail;
660             }
661             goto done;
662         }
663         tmp_ref = tmp_ctx->internal->source_device;
664     }
665
666     dst_ref = av_hwdevice_ctx_alloc(type);
667     if (!dst_ref) {
668         ret = AVERROR(ENOMEM);
669         goto fail;
670     }
671     dst_ctx = (AVHWDeviceContext*)dst_ref->data;
672
673     tmp_ref = src_ref;
674     while (tmp_ref) {
675         tmp_ctx = (AVHWDeviceContext*)tmp_ref->data;
676         if (dst_ctx->internal->hw_type->device_derive) {
677             ret = dst_ctx->internal->hw_type->device_derive(dst_ctx,
678                                                             tmp_ctx,
679                                                             flags);
680             if (ret == 0) {
681                 dst_ctx->internal->source_device = av_buffer_ref(src_ref);
682                 if (!dst_ctx->internal->source_device) {
683                     ret = AVERROR(ENOMEM);
684                     goto fail;
685                 }
686                 ret = av_hwdevice_ctx_init(dst_ref);
687                 if (ret < 0)
688                     goto fail;
689                 goto done;
690             }
691             if (ret != AVERROR(ENOSYS))
692                 goto fail;
693         }
694         tmp_ref = tmp_ctx->internal->source_device;
695     }
696
697     ret = AVERROR(ENOSYS);
698     goto fail;
699
700 done:
701     *dst_ref_ptr = dst_ref;
702     return 0;
703
704 fail:
705     av_buffer_unref(&dst_ref);
706     *dst_ref_ptr = NULL;
707     return ret;
708 }
709
710 static void ff_hwframe_unmap(void *opaque, uint8_t *data)
711 {
712     HWMapDescriptor *hwmap = (HWMapDescriptor*)data;
713     AVHWFramesContext *ctx = opaque;
714
715     if (hwmap->unmap)
716         hwmap->unmap(ctx, hwmap);
717
718     av_frame_free(&hwmap->source);
719
720     av_buffer_unref(&hwmap->hw_frames_ctx);
721
722     av_free(hwmap);
723 }
724
725 int ff_hwframe_map_create(AVBufferRef *hwframe_ref,
726                           AVFrame *dst, const AVFrame *src,
727                           void (*unmap)(AVHWFramesContext *ctx,
728                                         HWMapDescriptor *hwmap),
729                           void *priv)
730 {
731     AVHWFramesContext *ctx = (AVHWFramesContext*)hwframe_ref->data;
732     HWMapDescriptor *hwmap;
733     int ret;
734
735     hwmap = av_mallocz(sizeof(*hwmap));
736     if (!hwmap) {
737         ret = AVERROR(ENOMEM);
738         goto fail;
739     }
740
741     hwmap->source = av_frame_alloc();
742     if (!hwmap->source) {
743         ret = AVERROR(ENOMEM);
744         goto fail;
745     }
746     ret = av_frame_ref(hwmap->source, src);
747     if (ret < 0)
748         goto fail;
749
750     hwmap->hw_frames_ctx = av_buffer_ref(hwframe_ref);
751     if (!hwmap->hw_frames_ctx) {
752         ret = AVERROR(ENOMEM);
753         goto fail;
754     }
755
756     hwmap->unmap = unmap;
757     hwmap->priv  = priv;
758
759     dst->buf[0] = av_buffer_create((uint8_t*)hwmap, sizeof(*hwmap),
760                                    &ff_hwframe_unmap, ctx, 0);
761     if (!dst->buf[0]) {
762         ret = AVERROR(ENOMEM);
763         goto fail;
764     }
765
766     return 0;
767
768 fail:
769     if (hwmap) {
770         av_buffer_unref(&hwmap->hw_frames_ctx);
771         av_frame_free(&hwmap->source);
772     }
773     av_free(hwmap);
774     return ret;
775 }
776
777 int av_hwframe_map(AVFrame *dst, const AVFrame *src, int flags)
778 {
779     AVHWFramesContext *src_frames, *dst_frames;
780     HWMapDescriptor *hwmap;
781     int ret;
782
783     if (src->hw_frames_ctx && dst->hw_frames_ctx) {
784         src_frames = (AVHWFramesContext*)src->hw_frames_ctx->data;
785         dst_frames = (AVHWFramesContext*)dst->hw_frames_ctx->data;
786
787         if ((src_frames == dst_frames &&
788              src->format == dst_frames->sw_format &&
789              dst->format == dst_frames->format) ||
790             (src_frames->internal->source_frames &&
791              src_frames->internal->source_frames->data ==
792              (uint8_t*)dst_frames)) {
793             // This is an unmap operation.  We don't need to directly
794             // do anything here other than fill in the original frame,
795             // because the real unmap will be invoked when the last
796             // reference to the mapped frame disappears.
797             if (!src->buf[0]) {
798                 av_log(src_frames, AV_LOG_ERROR, "Invalid mapping "
799                        "found when attempting unmap.\n");
800                 return AVERROR(EINVAL);
801             }
802             hwmap = (HWMapDescriptor*)src->buf[0]->data;
803             av_frame_unref(dst);
804             return av_frame_ref(dst, hwmap->source);
805         }
806     }
807
808     if (src->hw_frames_ctx) {
809         src_frames = (AVHWFramesContext*)src->hw_frames_ctx->data;
810
811         if (src_frames->format == src->format &&
812             src_frames->internal->hw_type->map_from) {
813             ret = src_frames->internal->hw_type->map_from(src_frames,
814                                                           dst, src, flags);
815             if (ret != AVERROR(ENOSYS))
816                 return ret;
817         }
818     }
819
820     if (dst->hw_frames_ctx) {
821         dst_frames = (AVHWFramesContext*)dst->hw_frames_ctx->data;
822
823         if (dst_frames->format == dst->format &&
824             dst_frames->internal->hw_type->map_to) {
825             ret = dst_frames->internal->hw_type->map_to(dst_frames,
826                                                         dst, src, flags);
827             if (ret != AVERROR(ENOSYS))
828                 return ret;
829         }
830     }
831
832     return AVERROR(ENOSYS);
833 }
834
835 int av_hwframe_ctx_create_derived(AVBufferRef **derived_frame_ctx,
836                                   enum AVPixelFormat format,
837                                   AVBufferRef *derived_device_ctx,
838                                   AVBufferRef *source_frame_ctx,
839                                   int flags)
840 {
841     AVBufferRef   *dst_ref = NULL;
842     AVHWFramesContext *dst = NULL;
843     AVHWFramesContext *src = (AVHWFramesContext*)source_frame_ctx->data;
844     int ret;
845
846     if (src->internal->source_frames) {
847         AVHWFramesContext *src_src =
848             (AVHWFramesContext*)src->internal->source_frames->data;
849         AVHWDeviceContext *dst_dev =
850             (AVHWDeviceContext*)derived_device_ctx->data;
851
852         if (src_src->device_ctx == dst_dev) {
853             // This is actually an unmapping, so we just return a
854             // reference to the source frame context.
855             *derived_frame_ctx =
856                 av_buffer_ref(src->internal->source_frames);
857             if (!*derived_frame_ctx) {
858                 ret = AVERROR(ENOMEM);
859                 goto fail;
860             }
861             return 0;
862         }
863     }
864
865     dst_ref = av_hwframe_ctx_alloc(derived_device_ctx);
866     if (!dst_ref) {
867         ret = AVERROR(ENOMEM);
868         goto fail;
869     }
870
871     dst = (AVHWFramesContext*)dst_ref->data;
872
873     dst->format    = format;
874     dst->sw_format = src->sw_format;
875     dst->width     = src->width;
876     dst->height    = src->height;
877
878     dst->internal->source_frames = av_buffer_ref(source_frame_ctx);
879     if (!dst->internal->source_frames) {
880         ret = AVERROR(ENOMEM);
881         goto fail;
882     }
883
884     dst->internal->source_allocation_map_flags =
885         flags & (AV_HWFRAME_MAP_READ      |
886                  AV_HWFRAME_MAP_WRITE     |
887                  AV_HWFRAME_MAP_OVERWRITE |
888                  AV_HWFRAME_MAP_DIRECT);
889
890     ret = AVERROR(ENOSYS);
891     if (src->internal->hw_type->frames_derive_from)
892         ret = src->internal->hw_type->frames_derive_from(dst, src, flags);
893     if (ret == AVERROR(ENOSYS) &&
894         dst->internal->hw_type->frames_derive_to)
895         ret = dst->internal->hw_type->frames_derive_to(dst, src, flags);
896     if (ret == AVERROR(ENOSYS))
897         ret = 0;
898     if (ret)
899         goto fail;
900
901     *derived_frame_ctx = dst_ref;
902     return 0;
903
904 fail:
905     if (dst)
906         av_buffer_unref(&dst->internal->source_frames);
907     av_buffer_unref(&dst_ref);
908     return ret;
909 }
910
911 int ff_hwframe_map_replace(AVFrame *dst, const AVFrame *src)
912 {
913     HWMapDescriptor *hwmap = (HWMapDescriptor*)dst->buf[0]->data;
914     av_frame_unref(hwmap->source);
915     return av_frame_ref(hwmap->source, src);
916 }