FFmpeg
vf_sr.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 Sergey Lavrushkin
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 /**
22  * @file
23  * Filter implementing image super-resolution using deep convolutional networks.
24  * https://arxiv.org/abs/1501.00092
25  * https://arxiv.org/abs/1609.05158
26  */
27 
28 #include "avfilter.h"
29 #include "internal.h"
30 #include "video.h"
31 #include "libavutil/opt.h"
32 #include "libavutil/pixdesc.h"
33 #include "libswscale/swscale.h"
34 #include "dnn_filter_common.h"
35 
36 typedef struct SRContext {
37  const AVClass *class;
43 } SRContext;
44 
45 #define OFFSET(x) offsetof(SRContext, x)
46 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM
47 static const AVOption sr_options[] = {
48  { "dnn_backend", "DNN backend used for model execution", OFFSET(dnnctx.backend_type), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, FLAGS, .unit = "backend" },
49 #if (CONFIG_LIBTENSORFLOW == 1)
50  { "tensorflow", "tensorflow backend flag", 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, 0, 0, FLAGS, .unit = "backend" },
51 #endif
52  { "scale_factor", "scale factor for SRCNN model", OFFSET(scale_factor), AV_OPT_TYPE_INT, { .i64 = 2 }, 2, 4, FLAGS },
53  { "model", "path to model file specifying network architecture and its parameters", OFFSET(dnnctx.model_filename), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
54  { "input", "input name of the model", OFFSET(dnnctx.model_inputname), AV_OPT_TYPE_STRING, { .str = "x" }, 0, 0, FLAGS },
55  { "output", "output name of the model", OFFSET(dnnctx.model_outputnames_string), AV_OPT_TYPE_STRING, { .str = "y" }, 0, 0, FLAGS },
56  { NULL }
57 };
58 
60 
62 {
63  SRContext *sr_context = context->priv;
64  return ff_dnn_init(&sr_context->dnnctx, DFT_PROCESS_FRAME, context);
65 }
66 
67 static const enum AVPixelFormat pixel_formats[] = {
71 };
72 
73 static int config_output(AVFilterLink *outlink)
74 {
75  AVFilterContext *context = outlink->src;
76  SRContext *ctx = context->priv;
77  int result;
78  AVFilterLink *inlink = context->inputs[0];
79  int out_width, out_height;
80 
81  // have a try run in case that the dnn model resize the frame
82  result = ff_dnn_get_output(&ctx->dnnctx, inlink->w, inlink->h, &out_width, &out_height);
83  if (result != 0) {
84  av_log(ctx, AV_LOG_ERROR, "could not get output from the model\n");
85  return result;
86  }
87 
88  if (inlink->w != out_width || inlink->h != out_height) {
89  //espcn
90  outlink->w = out_width;
91  outlink->h = out_height;
92  if (inlink->format != AV_PIX_FMT_GRAY8){
94  int sws_src_h = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
95  int sws_src_w = AV_CEIL_RSHIFT(inlink->w, desc->log2_chroma_w);
96  int sws_dst_h = AV_CEIL_RSHIFT(outlink->h, desc->log2_chroma_h);
97  int sws_dst_w = AV_CEIL_RSHIFT(outlink->w, desc->log2_chroma_w);
98  ctx->sws_uv_scale = sws_getContext(sws_src_w, sws_src_h, AV_PIX_FMT_GRAY8,
99  sws_dst_w, sws_dst_h, AV_PIX_FMT_GRAY8,
101  ctx->sws_uv_height = sws_src_h;
102  }
103  } else {
104  //srcnn
105  outlink->w = out_width * ctx->scale_factor;
106  outlink->h = out_height * ctx->scale_factor;
107  ctx->sws_pre_scale = sws_getContext(inlink->w, inlink->h, inlink->format,
108  outlink->w, outlink->h, outlink->format,
110  }
111 
112  return 0;
113 }
114 
116 {
117  DNNAsyncStatusType async_state = 0;
119  SRContext *ctx = context->priv;
120  AVFilterLink *outlink = context->outputs[0];
121  AVFrame *out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
122  int dnn_result;
123 
124  if (!out){
125  av_log(context, AV_LOG_ERROR, "could not allocate memory for output frame\n");
126  av_frame_free(&in);
127  return AVERROR(ENOMEM);
128  }
130 
131  if (ctx->sws_pre_scale) {
132  sws_scale(ctx->sws_pre_scale,
133  (const uint8_t **)in->data, in->linesize, 0, in->height,
134  out->data, out->linesize);
135  dnn_result = ff_dnn_execute_model(&ctx->dnnctx, out, out);
136  } else {
137  dnn_result = ff_dnn_execute_model(&ctx->dnnctx, in, out);
138  }
139 
140  if (dnn_result != 0){
141  av_log(ctx, AV_LOG_ERROR, "failed to execute loaded model\n");
142  av_frame_free(&in);
143  av_frame_free(&out);
144  return dnn_result;
145  }
146 
147  do {
148  async_state = ff_dnn_get_result(&ctx->dnnctx, &in, &out);
149  } while (async_state == DAST_NOT_READY);
150 
151  if (async_state != DAST_SUCCESS)
152  return AVERROR(EINVAL);
153 
154  if (ctx->sws_uv_scale) {
155  sws_scale(ctx->sws_uv_scale, (const uint8_t **)(in->data + 1), in->linesize + 1,
156  0, ctx->sws_uv_height, out->data + 1, out->linesize + 1);
157  sws_scale(ctx->sws_uv_scale, (const uint8_t **)(in->data + 2), in->linesize + 2,
158  0, ctx->sws_uv_height, out->data + 2, out->linesize + 2);
159  }
160  if (in != out) {
161  av_frame_free(&in);
162  }
163  return ff_filter_frame(outlink, out);
164 }
165 
167 {
168  SRContext *sr_context = context->priv;
169 
170  ff_dnn_uninit(&sr_context->dnnctx);
171  sws_freeContext(sr_context->sws_uv_scale);
172  sws_freeContext(sr_context->sws_pre_scale);
173 }
174 
175 static const AVFilterPad sr_inputs[] = {
176  {
177  .name = "default",
178  .type = AVMEDIA_TYPE_VIDEO,
179  .filter_frame = filter_frame,
180  },
181 };
182 
183 static const AVFilterPad sr_outputs[] = {
184  {
185  .name = "default",
186  .config_props = config_output,
187  .type = AVMEDIA_TYPE_VIDEO,
188  },
189 };
190 
192  .name = "sr",
193  .description = NULL_IF_CONFIG_SMALL("Apply DNN-based image super resolution to the input."),
194  .priv_size = sizeof(SRContext),
195  .init = init,
196  .uninit = uninit,
200  .priv_class = &sr_class,
201 };
ff_get_video_buffer
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:112
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:71
SRContext::dnnctx
DnnContext dnnctx
Definition: vf_sr.c:38
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
opt.h
sr_outputs
static const AVFilterPad sr_outputs[]
Definition: vf_sr.c:183
out
FILE * out
Definition: movenc.c:55
sr_options
static const AVOption sr_options[]
Definition: vf_sr.c:47
SRContext::sws_pre_scale
struct SwsContext * sws_pre_scale
Definition: vf_sr.c:42
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1015
av_pix_fmt_desc_get
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2965
FILTER_PIXFMTS_ARRAY
#define FILTER_PIXFMTS_ARRAY(array)
Definition: internal.h:162
inlink
The exact code depends on how similar the blocks are and how related they are to the and needs to apply these operations to the correct inlink or outlink if there are several Macros are available to factor that when no extra processing is inlink
Definition: filter_design.txt:212
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:160
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:374
pixdesc.h
AVOption
AVOption.
Definition: opt.h:346
sws_scale
int attribute_align_arg sws_scale(struct SwsContext *c, const uint8_t *const srcSlice[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[])
swscale wrapper, so we don't need to export the SwsContext.
Definition: swscale.c:1206
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:170
SRContext
Definition: af_acrusher.c:36
dnn_filter_common.h
video.h
AVFrame::data
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:395
uninit
static av_cold void uninit(AVFilterContext *context)
Definition: vf_sr.c:166
DnnContext
Definition: dnn_filter_common.h:29
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:33
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
av_cold
#define av_cold
Definition: attributes.h:90
init
static av_cold int init(AVFilterContext *context)
Definition: vf_sr.c:61
AV_CEIL_RSHIFT
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:59
FLAGS
#define FLAGS
Definition: vf_sr.c:46
ff_vf_sr
const AVFilter ff_vf_sr
Definition: vf_sr.c:191
ff_dnn_get_result
DNNAsyncStatusType ff_dnn_get_result(DnnContext *ctx, AVFrame **in_frame, AVFrame **out_frame)
Definition: dnn_filter_common.c:162
ctx
AVFormatContext * ctx
Definition: movenc.c:49
pixel_formats
static enum AVPixelFormat pixel_formats[]
Definition: vf_sr.c:67
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(sr)
AV_PIX_FMT_YUV420P
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:73
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:182
context
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default minimum maximum flags name is the option keep it simple and lowercase description are in without and describe what they for example set the foo of the bar offset is the offset of the field in your context
Definition: writing_filters.txt:91
OFFSET
#define OFFSET(x)
Definition: vf_sr.c:45
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
result
and forward the result(frame or status change) to the corresponding input. If nothing is possible
NULL
#define NULL
Definition: coverity.c:32
av_frame_copy_props
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:709
AV_PIX_FMT_GRAY8
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition: pixfmt.h:81
SRContext::sws_uv_scale
struct SwsContext * sws_uv_scale
Definition: vf_sr.c:40
SRContext::sws_uv_height
int sws_uv_height
Definition: vf_sr.c:41
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:94
DAST_SUCCESS
@ DAST_SUCCESS
Definition: dnn_interface.h:49
sws_getContext
struct SwsContext * sws_getContext(int srcW, int srcH, enum AVPixelFormat srcFormat, int dstW, int dstH, enum AVPixelFormat dstFormat, int flags, SwsFilter *srcFilter, SwsFilter *dstFilter, const double *param)
Allocate and return an SwsContext.
Definition: utils.c:2102
internal.h
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_sr.c:115
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:39
AVFilter
Filter definition.
Definition: avfilter.h:166
SRContext::scale_factor
int scale_factor
Definition: vf_sr.c:39
AVFrame::height
int height
Definition: frame.h:446
sws_freeContext
void sws_freeContext(struct SwsContext *swsContext)
Free the swscaler context swsContext.
Definition: utils.c:2433
ff_dnn_get_output
int ff_dnn_get_output(DnnContext *ctx, int input_width, int input_height, int *output_width, int *output_height)
Definition: dnn_filter_common.c:127
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:72
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:235
avfilter.h
AV_PIX_FMT_YUV444P
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:78
AVFilterContext
An instance of a filter.
Definition: avfilter.h:407
desc
const char * desc
Definition: libsvtav1.c:75
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AV_PIX_FMT_YUV422P
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:77
AVPixFmtDescriptor
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
sr_inputs
static const AVFilterPad sr_inputs[]
Definition: vf_sr.c:175
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:183
ff_dnn_init
int ff_dnn_init(DnnContext *ctx, DNNFunctionType func_type, AVFilterContext *filter_ctx)
Definition: dnn_filter_common.c:55
AV_PIX_FMT_YUV411P
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:80
AVFrame::linesize
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Definition: frame.h:419
AV_PIX_FMT_YUV410P
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:79
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
ff_dnn_uninit
void ff_dnn_uninit(DnnContext *ctx)
Definition: dnn_filter_common.c:172
ff_dnn_execute_model
int ff_dnn_execute_model(DnnContext *ctx, AVFrame *in_frame, AVFrame *out_frame)
Definition: dnn_filter_common.c:135
AV_OPT_TYPE_STRING
@ AV_OPT_TYPE_STRING
Definition: opt.h:239
DAST_NOT_READY
@ DAST_NOT_READY
Definition: dnn_interface.h:48
SwsContext
Definition: swscale_internal.h:301
DNNAsyncStatusType
DNNAsyncStatusType
Definition: dnn_interface.h:45
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:244
DFT_PROCESS_FRAME
@ DFT_PROCESS_FRAME
Definition: dnn_interface.h:54
SWS_BICUBIC
#define SWS_BICUBIC
Definition: swscale.h:67
swscale.h
config_output
static int config_output(AVFilterLink *outlink)
Definition: vf_sr.c:73