FFmpeg
Loading...
Searching...
No Matches
vf_hwdownload.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 "libavutil/buffer.h"
20#include "libavutil/hwcontext.h"
21#include "libavutil/log.h"
22#include "libavutil/mem.h"
23#include "libavutil/opt.h"
24#include "libavutil/pixdesc.h"
25
26#include "avfilter.h"
27#include "filters.h"
28#include "formats.h"
29#include "video.h"
30
37
39 AVFilterFormatsConfig **cfg_in,
40 AVFilterFormatsConfig **cfg_out)
41{
42 int err;
43
45 &cfg_in[0]->formats)) ||
47 &cfg_out[0]->formats)))
48 return err;
49
50 return 0;
51}
52
54{
55 FilterLink *l = ff_filter_link(inlink);
56 AVFilterContext *avctx = inlink->dst;
57 HWDownloadContext *ctx = avctx->priv;
58
59 av_buffer_unref(&ctx->hwframes_ref);
60
61 if (!l->hw_frames_ctx) {
62 av_log(ctx, AV_LOG_ERROR, "The input must have a hardware frame "
63 "reference.\n");
64 return AVERROR(EINVAL);
65 }
66
67 ctx->hwframes_ref = av_buffer_ref(l->hw_frames_ctx);
68 if (!ctx->hwframes_ref)
69 return AVERROR(ENOMEM);
70
71 ctx->hwframes = (AVHWFramesContext*)ctx->hwframes_ref->data;
72
73 return 0;
74}
75
77{
78 AVFilterContext *avctx = outlink->src;
79 AVFilterLink *inlink = avctx->inputs[0];
80 HWDownloadContext *ctx = avctx->priv;
82 int err, i, found;
83
84 if (!ctx->hwframes_ref)
85 return AVERROR(EINVAL);
86
87 err = av_hwframe_transfer_get_formats(ctx->hwframes_ref,
89 &formats, 0);
90 if (err < 0)
91 return err;
92
93 found = 0;
94 for (i = 0; formats[i] != AV_PIX_FMT_NONE; i++) {
95 if (formats[i] == outlink->format) {
96 found = 1;
97 break;
98 }
99 }
101
102 if (!found) {
103 av_log(ctx, AV_LOG_ERROR, "Invalid output format %s for hwframe "
104 "download.\n", av_get_pix_fmt_name(outlink->format));
105 return AVERROR(EINVAL);
106 }
107
108 outlink->w = inlink->w;
109 outlink->h = inlink->h;
110
111 return 0;
112}
113
115{
116 AVFilterContext *avctx = link->dst;
117 AVFilterLink *outlink = avctx->outputs[0];
118 HWDownloadContext *ctx = avctx->priv;
119 AVFrame *output = NULL;
120 int err;
121
122 if (!ctx->hwframes_ref || !input->hw_frames_ctx) {
123 av_log(ctx, AV_LOG_ERROR, "Input frames must have hardware context.\n");
124 err = AVERROR(EINVAL);
125 goto fail;
126 }
127 if ((void*)ctx->hwframes != input->hw_frames_ctx->data) {
128 av_log(ctx, AV_LOG_ERROR, "Input frame is not the in the configured "
129 "hwframe context.\n");
130 err = AVERROR(EINVAL);
131 goto fail;
132 }
133
134 output = ff_get_video_buffer(outlink, ctx->hwframes->width,
135 ctx->hwframes->height);
136 if (!output) {
137 err = AVERROR(ENOMEM);
138 goto fail;
139 }
140
141 err = av_hwframe_transfer_data(output, input, 0);
142 if (err < 0) {
143 av_log(ctx, AV_LOG_ERROR, "Failed to download frame: %d.\n", err);
144 goto fail;
145 }
146
147 output->width = outlink->w;
148 output->height = outlink->h;
149
150 err = av_frame_copy_props(output, input);
151 if (err < 0)
152 goto fail;
153
154 av_frame_free(&input);
155
156 return ff_filter_frame(avctx->outputs[0], output);
157
158fail:
159 av_frame_free(&input);
160 av_frame_free(&output);
161 return err;
162}
163
165{
166 HWDownloadContext *ctx = avctx->priv;
167
168 av_buffer_unref(&ctx->hwframes_ref);
169}
170
171static const AVClass hwdownload_class = {
172 .class_name = "hwdownload",
173 .item_name = av_default_item_name,
174 .option = NULL,
175 .version = LIBAVUTIL_VERSION_INT,
176};
177
179 {
180 .name = "default",
181 .type = AVMEDIA_TYPE_VIDEO,
182 .config_props = hwdownload_config_input,
183 .filter_frame = hwdownload_filter_frame,
184 },
185};
186
188 {
189 .name = "default",
190 .type = AVMEDIA_TYPE_VIDEO,
191 .config_props = hwdownload_config_output,
192 },
193};
194
196 .p.name = "hwdownload",
197 .p.description = NULL_IF_CONFIG_SMALL("Download a hardware frame to a normal frame"),
198 .p.priv_class = &hwdownload_class,
199 .uninit = hwdownload_uninit,
200 .priv_size = sizeof(HWDownloadContext),
204 .flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE,
205};
const FFFilter ff_vf_hwdownload
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
Main libavfilter public API header.
refcounted data buffer API
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define NULL
Definition coverity.c:32
int ff_formats_ref(AVFilterFormats *f, AVFilterFormats **ref)
Add ref as a new reference to formats.
Definition formats.c:756
AVFilterFormats * ff_formats_pixdesc_filter(unsigned want, unsigned rej)
Construct a formats list containing all pixel formats with certain properties.
Definition formats.c:620
#define fail
Definition test.h:479
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:139
AVBufferRef * av_buffer_ref(const AVBufferRef *buf)
Create a new reference to an AVBuffer.
Definition buffer.c:103
#define AVERROR(e)
Definition error.h:45
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition frame.c:64
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition frame.c:599
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
const char * av_default_item_name(void *ptr)
Return the context name.
Definition log.c:241
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
#define LIBAVUTIL_VERSION_INT
Definition version.h:85
int av_hwframe_transfer_get_formats(AVBufferRef *hwframe_ref, enum AVHWFrameTransferDirection dir, enum AVPixelFormat **formats, int flags)
Get a list of possible source or target formats usable in av_hwframe_transfer_data().
Definition hwcontext.c:386
int av_hwframe_transfer_data(AVFrame *dst, const AVFrame *src, int flags)
Copy data to or from a hw surface.
Definition hwcontext.c:448
@ AV_HWFRAME_TRANSFER_DIRECTION_FROM
Transfer the data from the queried hw frame.
Definition hwcontext.h:410
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
#define FF_FILTER_FLAG_HWFRAME_AWARE
The filter is aware of hardware frames, and any hardware frame context should not be automatically pr...
Definition filters.h:208
static FilterLink * ff_filter_link(AVFilterLink *link)
Definition filters.h:199
#define FILTER_QUERY_FUNC2(func)
Definition filters.h:241
#define av_cold
Definition attributes.h:117
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
Memory handling functions.
AVOptions.
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:3380
#define AV_PIX_FMT_FLAG_HWACCEL
Pixel format is an HW accelerated format.
Definition pixdesc.h:128
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
@ AV_PIX_FMT_NONE
Definition pixfmt.h:72
formats
Definition signature.h:47
A reference to a data buffer.
Definition buffer.h:82
uint8_t * data
The data buffer.
Definition buffer.h:90
Describe the class of an AVClass context structure.
Definition log.h:76
An instance of a filter.
Definition avfilter.h:273
AVFilterLink ** inputs
array of pointers to input links
Definition avfilter.h:281
void * priv
private data for use by the filter
Definition avfilter.h:288
AVFilterLink ** outputs
array of pointers to output links
Definition avfilter.h:285
Lists of formats / etc.
Definition avfilter.h:120
A filter pad used for either input or output.
Definition filters.h:40
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
int width
Definition frame.h:544
AVBufferRef * hw_frames_ctx
For hwaccel-format frames, this should be a reference to the AVHWFramesContext describing the frame.
Definition frame.h:769
int height
Definition frame.h:544
This struct describes a set or pool of "hardware" frames (i.e.
Definition hwcontext.h:118
AVBufferRef * hwframes_ref
AVHWFramesContext * hwframes
#define av_freep(p)
#define av_log(a,...)
static AVFormatContext * ctx
Definition movenc.c:49
static const AVClass hwdownload_class
static const AVFilterPad hwdownload_outputs[]
static int hwdownload_query_formats(const AVFilterContext *avctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
static int hwdownload_config_input(AVFilterLink *inlink)
static int hwdownload_config_output(AVFilterLink *outlink)
static av_cold void hwdownload_uninit(AVFilterContext *avctx)
static const AVFilterPad hwdownload_inputs[]
static int hwdownload_filter_frame(AVFilterLink *link, AVFrame *input)
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition video.c:89