]> git.sesse.net Git - ffmpeg/blob - libavutil/hwcontext.c
Stop hardcoding align=32 in av_frame_get_buffer() calls.
[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, 0);
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     frame->extended_data = frame->data;
561
562     return 0;
563 }
564
565 void *av_hwdevice_hwconfig_alloc(AVBufferRef *ref)
566 {
567     AVHWDeviceContext *ctx = (AVHWDeviceContext*)ref->data;
568     const HWContextType  *hw_type = ctx->internal->hw_type;
569
570     if (hw_type->device_hwconfig_size == 0)
571         return NULL;
572
573     return av_mallocz(hw_type->device_hwconfig_size);
574 }
575
576 AVHWFramesConstraints *av_hwdevice_get_hwframe_constraints(AVBufferRef *ref,
577                                                            const void *hwconfig)
578 {
579     AVHWDeviceContext *ctx = (AVHWDeviceContext*)ref->data;
580     const HWContextType  *hw_type = ctx->internal->hw_type;
581     AVHWFramesConstraints *constraints;
582
583     if (!hw_type->frames_get_constraints)
584         return NULL;
585
586     constraints = av_mallocz(sizeof(*constraints));
587     if (!constraints)
588         return NULL;
589
590     constraints->min_width = constraints->min_height = 0;
591     constraints->max_width = constraints->max_height = INT_MAX;
592
593     if (hw_type->frames_get_constraints(ctx, hwconfig, constraints) >= 0) {
594         return constraints;
595     } else {
596         av_hwframe_constraints_free(&constraints);
597         return NULL;
598     }
599 }
600
601 void av_hwframe_constraints_free(AVHWFramesConstraints **constraints)
602 {
603     if (*constraints) {
604         av_freep(&(*constraints)->valid_hw_formats);
605         av_freep(&(*constraints)->valid_sw_formats);
606     }
607     av_freep(constraints);
608 }
609
610 int av_hwdevice_ctx_create(AVBufferRef **pdevice_ref, enum AVHWDeviceType type,
611                            const char *device, AVDictionary *opts, int flags)
612 {
613     AVBufferRef *device_ref = NULL;
614     AVHWDeviceContext *device_ctx;
615     int ret = 0;
616
617     device_ref = av_hwdevice_ctx_alloc(type);
618     if (!device_ref) {
619         ret = AVERROR(ENOMEM);
620         goto fail;
621     }
622     device_ctx = (AVHWDeviceContext*)device_ref->data;
623
624     if (!device_ctx->internal->hw_type->device_create) {
625         ret = AVERROR(ENOSYS);
626         goto fail;
627     }
628
629     ret = device_ctx->internal->hw_type->device_create(device_ctx, device,
630                                                        opts, flags);
631     if (ret < 0)
632         goto fail;
633
634     ret = av_hwdevice_ctx_init(device_ref);
635     if (ret < 0)
636         goto fail;
637
638     *pdevice_ref = device_ref;
639     return 0;
640 fail:
641     av_buffer_unref(&device_ref);
642     *pdevice_ref = NULL;
643     return ret;
644 }
645
646 int av_hwdevice_ctx_create_derived(AVBufferRef **dst_ref_ptr,
647                                    enum AVHWDeviceType type,
648                                    AVBufferRef *src_ref, int flags)
649 {
650     AVBufferRef *dst_ref = NULL, *tmp_ref;
651     AVHWDeviceContext *dst_ctx, *tmp_ctx;
652     int ret = 0;
653
654     tmp_ref = src_ref;
655     while (tmp_ref) {
656         tmp_ctx = (AVHWDeviceContext*)tmp_ref->data;
657         if (tmp_ctx->type == type) {
658             dst_ref = av_buffer_ref(tmp_ref);
659             if (!dst_ref) {
660                 ret = AVERROR(ENOMEM);
661                 goto fail;
662             }
663             goto done;
664         }
665         tmp_ref = tmp_ctx->internal->source_device;
666     }
667
668     dst_ref = av_hwdevice_ctx_alloc(type);
669     if (!dst_ref) {
670         ret = AVERROR(ENOMEM);
671         goto fail;
672     }
673     dst_ctx = (AVHWDeviceContext*)dst_ref->data;
674
675     tmp_ref = src_ref;
676     while (tmp_ref) {
677         tmp_ctx = (AVHWDeviceContext*)tmp_ref->data;
678         if (dst_ctx->internal->hw_type->device_derive) {
679             ret = dst_ctx->internal->hw_type->device_derive(dst_ctx,
680                                                             tmp_ctx,
681                                                             flags);
682             if (ret == 0) {
683                 dst_ctx->internal->source_device = av_buffer_ref(src_ref);
684                 if (!dst_ctx->internal->source_device) {
685                     ret = AVERROR(ENOMEM);
686                     goto fail;
687                 }
688                 ret = av_hwdevice_ctx_init(dst_ref);
689                 if (ret < 0)
690                     goto fail;
691                 goto done;
692             }
693             if (ret != AVERROR(ENOSYS))
694                 goto fail;
695         }
696         tmp_ref = tmp_ctx->internal->source_device;
697     }
698
699     ret = AVERROR(ENOSYS);
700     goto fail;
701
702 done:
703     *dst_ref_ptr = dst_ref;
704     return 0;
705
706 fail:
707     av_buffer_unref(&dst_ref);
708     *dst_ref_ptr = NULL;
709     return ret;
710 }
711
712 static void ff_hwframe_unmap(void *opaque, uint8_t *data)
713 {
714     HWMapDescriptor *hwmap = (HWMapDescriptor*)data;
715     AVHWFramesContext *ctx = opaque;
716
717     if (hwmap->unmap)
718         hwmap->unmap(ctx, hwmap);
719
720     av_frame_free(&hwmap->source);
721
722     av_buffer_unref(&hwmap->hw_frames_ctx);
723
724     av_free(hwmap);
725 }
726
727 int ff_hwframe_map_create(AVBufferRef *hwframe_ref,
728                           AVFrame *dst, const AVFrame *src,
729                           void (*unmap)(AVHWFramesContext *ctx,
730                                         HWMapDescriptor *hwmap),
731                           void *priv)
732 {
733     AVHWFramesContext *ctx = (AVHWFramesContext*)hwframe_ref->data;
734     HWMapDescriptor *hwmap;
735     int ret;
736
737     hwmap = av_mallocz(sizeof(*hwmap));
738     if (!hwmap) {
739         ret = AVERROR(ENOMEM);
740         goto fail;
741     }
742
743     hwmap->source = av_frame_alloc();
744     if (!hwmap->source) {
745         ret = AVERROR(ENOMEM);
746         goto fail;
747     }
748     ret = av_frame_ref(hwmap->source, src);
749     if (ret < 0)
750         goto fail;
751
752     hwmap->hw_frames_ctx = av_buffer_ref(hwframe_ref);
753     if (!hwmap->hw_frames_ctx) {
754         ret = AVERROR(ENOMEM);
755         goto fail;
756     }
757
758     hwmap->unmap = unmap;
759     hwmap->priv  = priv;
760
761     dst->buf[0] = av_buffer_create((uint8_t*)hwmap, sizeof(*hwmap),
762                                    &ff_hwframe_unmap, ctx, 0);
763     if (!dst->buf[0]) {
764         ret = AVERROR(ENOMEM);
765         goto fail;
766     }
767
768     return 0;
769
770 fail:
771     if (hwmap) {
772         av_buffer_unref(&hwmap->hw_frames_ctx);
773         av_frame_free(&hwmap->source);
774     }
775     av_free(hwmap);
776     return ret;
777 }
778
779 int av_hwframe_map(AVFrame *dst, const AVFrame *src, int flags)
780 {
781     AVHWFramesContext *src_frames, *dst_frames;
782     HWMapDescriptor *hwmap;
783     int ret;
784
785     if (src->hw_frames_ctx && dst->hw_frames_ctx) {
786         src_frames = (AVHWFramesContext*)src->hw_frames_ctx->data;
787         dst_frames = (AVHWFramesContext*)dst->hw_frames_ctx->data;
788
789         if ((src_frames == dst_frames &&
790              src->format == dst_frames->sw_format &&
791              dst->format == dst_frames->format) ||
792             (src_frames->internal->source_frames &&
793              src_frames->internal->source_frames->data ==
794              (uint8_t*)dst_frames)) {
795             // This is an unmap operation.  We don't need to directly
796             // do anything here other than fill in the original frame,
797             // because the real unmap will be invoked when the last
798             // reference to the mapped frame disappears.
799             if (!src->buf[0]) {
800                 av_log(src_frames, AV_LOG_ERROR, "Invalid mapping "
801                        "found when attempting unmap.\n");
802                 return AVERROR(EINVAL);
803             }
804             hwmap = (HWMapDescriptor*)src->buf[0]->data;
805             av_frame_unref(dst);
806             return av_frame_ref(dst, hwmap->source);
807         }
808     }
809
810     if (src->hw_frames_ctx) {
811         src_frames = (AVHWFramesContext*)src->hw_frames_ctx->data;
812
813         if (src_frames->format == src->format &&
814             src_frames->internal->hw_type->map_from) {
815             ret = src_frames->internal->hw_type->map_from(src_frames,
816                                                           dst, src, flags);
817             if (ret != AVERROR(ENOSYS))
818                 return ret;
819         }
820     }
821
822     if (dst->hw_frames_ctx) {
823         dst_frames = (AVHWFramesContext*)dst->hw_frames_ctx->data;
824
825         if (dst_frames->format == dst->format &&
826             dst_frames->internal->hw_type->map_to) {
827             ret = dst_frames->internal->hw_type->map_to(dst_frames,
828                                                         dst, src, flags);
829             if (ret != AVERROR(ENOSYS))
830                 return ret;
831         }
832     }
833
834     return AVERROR(ENOSYS);
835 }
836
837 int av_hwframe_ctx_create_derived(AVBufferRef **derived_frame_ctx,
838                                   enum AVPixelFormat format,
839                                   AVBufferRef *derived_device_ctx,
840                                   AVBufferRef *source_frame_ctx,
841                                   int flags)
842 {
843     AVBufferRef   *dst_ref = NULL;
844     AVHWFramesContext *dst = NULL;
845     AVHWFramesContext *src = (AVHWFramesContext*)source_frame_ctx->data;
846     int ret;
847
848     if (src->internal->source_frames) {
849         AVHWFramesContext *src_src =
850             (AVHWFramesContext*)src->internal->source_frames->data;
851         AVHWDeviceContext *dst_dev =
852             (AVHWDeviceContext*)derived_device_ctx->data;
853
854         if (src_src->device_ctx == dst_dev) {
855             // This is actually an unmapping, so we just return a
856             // reference to the source frame context.
857             *derived_frame_ctx =
858                 av_buffer_ref(src->internal->source_frames);
859             if (!*derived_frame_ctx) {
860                 ret = AVERROR(ENOMEM);
861                 goto fail;
862             }
863             return 0;
864         }
865     }
866
867     dst_ref = av_hwframe_ctx_alloc(derived_device_ctx);
868     if (!dst_ref) {
869         ret = AVERROR(ENOMEM);
870         goto fail;
871     }
872
873     dst = (AVHWFramesContext*)dst_ref->data;
874
875     dst->format    = format;
876     dst->sw_format = src->sw_format;
877     dst->width     = src->width;
878     dst->height    = src->height;
879
880     dst->internal->source_frames = av_buffer_ref(source_frame_ctx);
881     if (!dst->internal->source_frames) {
882         ret = AVERROR(ENOMEM);
883         goto fail;
884     }
885
886     dst->internal->source_allocation_map_flags =
887         flags & (AV_HWFRAME_MAP_READ      |
888                  AV_HWFRAME_MAP_WRITE     |
889                  AV_HWFRAME_MAP_OVERWRITE |
890                  AV_HWFRAME_MAP_DIRECT);
891
892     ret = AVERROR(ENOSYS);
893     if (src->internal->hw_type->frames_derive_from)
894         ret = src->internal->hw_type->frames_derive_from(dst, src, flags);
895     if (ret == AVERROR(ENOSYS) &&
896         dst->internal->hw_type->frames_derive_to)
897         ret = dst->internal->hw_type->frames_derive_to(dst, src, flags);
898     if (ret == AVERROR(ENOSYS))
899         ret = 0;
900     if (ret)
901         goto fail;
902
903     *derived_frame_ctx = dst_ref;
904     return 0;
905
906 fail:
907     if (dst)
908         av_buffer_unref(&dst->internal->source_frames);
909     av_buffer_unref(&dst_ref);
910     return ret;
911 }
912
913 int ff_hwframe_map_replace(AVFrame *dst, const AVFrame *src)
914 {
915     HWMapDescriptor *hwmap = (HWMapDescriptor*)dst->buf[0]->data;
916     av_frame_unref(hwmap->source);
917     return av_frame_ref(hwmap->source, src);
918 }