FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
vf_scale_npp.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 /**
20  * @file
21  * scale video filter
22  */
23 
24 #include <nppi.h>
25 #include <stdio.h>
26 #include <string.h>
27 
28 #include "libavutil/avstring.h"
29 #include "libavutil/common.h"
30 #include "libavutil/eval.h"
31 #include "libavutil/hwcontext.h"
33 #include "libavutil/internal.h"
34 #include "libavutil/mathematics.h"
35 #include "libavutil/opt.h"
36 #include "libavutil/pixdesc.h"
37 
38 #include "avfilter.h"
39 #include "formats.h"
40 #include "internal.h"
41 #include "video.h"
42 
43 static const enum AVPixelFormat supported_formats[] = {
47 };
48 
49 static const enum AVPixelFormat deinterleaved_formats[][2] = {
51 };
52 
53 static const char *const var_names[] = {
54  "PI",
55  "PHI",
56  "E",
57  "in_w", "iw",
58  "in_h", "ih",
59  "out_w", "ow",
60  "out_h", "oh",
61  "a", "dar",
62  "sar",
63  NULL
64 };
65 
66 enum var_name {
77 };
78 
79 enum ScaleStage {
84 };
85 
86 typedef struct NPPScaleStageContext {
90 
91  struct {
92  int width;
93  int height;
94  } planes_in[3], planes_out[3];
95 
99 
100 typedef struct NPPScaleContext {
101  const AVClass *class;
102 
106 
108 
109  /**
110  * New dimensions. Special values are:
111  * 0 = original width/height
112  * -1 = keep original aspect
113  */
114  int w, h;
115 
116  /**
117  * Output sw format. AV_PIX_FMT_NONE for no conversion.
118  */
120 
121  char *w_expr; ///< width expression string
122  char *h_expr; ///< height expression string
123  char *format_str;
124 
127 
129 {
130  NPPScaleContext *s = ctx->priv;
131  int i;
132 
133  if (!strcmp(s->format_str, "same")) {
134  s->format = AV_PIX_FMT_NONE;
135  } else {
137  if (s->format == AV_PIX_FMT_NONE) {
138  av_log(ctx, AV_LOG_ERROR, "Unrecognized pixel format: %s\n", s->format_str);
139  return AVERROR(EINVAL);
140  }
141  }
142 
143  for (i = 0; i < FF_ARRAY_ELEMS(s->stages); i++) {
144  s->stages[i].frame = av_frame_alloc();
145  if (!s->stages[i].frame)
146  return AVERROR(ENOMEM);
147  }
148  s->tmp_frame = av_frame_alloc();
149  if (!s->tmp_frame)
150  return AVERROR(ENOMEM);
151 
152  return 0;
153 }
154 
156 {
157  NPPScaleContext *s = ctx->priv;
158  int i;
159 
160  for (i = 0; i < FF_ARRAY_ELEMS(s->stages); i++) {
161  av_frame_free(&s->stages[i].frame);
163  }
165 }
166 
168 {
169  static const enum AVPixelFormat pixel_formats[] = {
171  };
172  AVFilterFormats *pix_fmts = ff_make_format_list(pixel_formats);
173 
174  ff_set_common_formats(ctx, pix_fmts);
175 
176  return 0;
177 }
178 
179 static int init_stage(NPPScaleStageContext *stage, AVBufferRef *device_ctx)
180 {
181  AVBufferRef *out_ref = NULL;
182  AVHWFramesContext *out_ctx;
183  int in_sw, in_sh, out_sw, out_sh;
184  int ret, i;
185 
186  av_pix_fmt_get_chroma_sub_sample(stage->in_fmt, &in_sw, &in_sh);
187  av_pix_fmt_get_chroma_sub_sample(stage->out_fmt, &out_sw, &out_sh);
188  if (!stage->planes_out[0].width) {
189  stage->planes_out[0].width = stage->planes_in[0].width;
190  stage->planes_out[0].height = stage->planes_in[0].height;
191  }
192 
193  for (i = 1; i < FF_ARRAY_ELEMS(stage->planes_in); i++) {
194  stage->planes_in[i].width = stage->planes_in[0].width >> in_sw;
195  stage->planes_in[i].height = stage->planes_in[0].height >> in_sh;
196  stage->planes_out[i].width = stage->planes_out[0].width >> out_sw;
197  stage->planes_out[i].height = stage->planes_out[0].height >> out_sh;
198  }
199 
200  out_ref = av_hwframe_ctx_alloc(device_ctx);
201  if (!out_ref)
202  return AVERROR(ENOMEM);
203  out_ctx = (AVHWFramesContext*)out_ref->data;
204 
205  out_ctx->format = AV_PIX_FMT_CUDA;
206  out_ctx->sw_format = stage->out_fmt;
207  out_ctx->width = FFALIGN(stage->planes_out[0].width, 32);
208  out_ctx->height = FFALIGN(stage->planes_out[0].height, 32);
209 
210  ret = av_hwframe_ctx_init(out_ref);
211  if (ret < 0)
212  goto fail;
213 
214  av_frame_unref(stage->frame);
215  ret = av_hwframe_get_buffer(out_ref, stage->frame, 0);
216  if (ret < 0)
217  goto fail;
218 
219  stage->frame->width = stage->planes_out[0].width;
220  stage->frame->height = stage->planes_out[0].height;
221 
222  av_buffer_unref(&stage->frames_ctx);
223  stage->frames_ctx = out_ref;
224 
225  return 0;
226 fail:
227  av_buffer_unref(&out_ref);
228  return ret;
229 }
230 
232 {
233  int i;
234 
235  for (i = 0; i < FF_ARRAY_ELEMS(supported_formats); i++)
236  if (supported_formats[i] == fmt)
237  return 1;
238  return 0;
239 }
240 
242 {
244  int i, planes;
245 
246  planes = av_pix_fmt_count_planes(fmt);
247  if (planes == desc->nb_components)
248  return fmt;
249  for (i = 0; i < FF_ARRAY_ELEMS(deinterleaved_formats); i++)
250  if (deinterleaved_formats[i][0] == fmt)
251  return deinterleaved_formats[i][1];
252  return AV_PIX_FMT_NONE;
253 }
254 
255 static int init_processing_chain(AVFilterContext *ctx, int in_width, int in_height,
256  int out_width, int out_height)
257 {
258  NPPScaleContext *s = ctx->priv;
259 
260  AVHWFramesContext *in_frames_ctx;
261 
262  enum AVPixelFormat in_format;
263  enum AVPixelFormat out_format;
264  enum AVPixelFormat in_deinterleaved_format;
265  enum AVPixelFormat out_deinterleaved_format;
266 
267  int i, ret, last_stage = -1;
268 
269  /* check that we have a hw context */
270  if (!ctx->inputs[0]->hw_frames_ctx) {
271  av_log(ctx, AV_LOG_ERROR, "No hw context provided on input\n");
272  return AVERROR(EINVAL);
273  }
274  in_frames_ctx = (AVHWFramesContext*)ctx->inputs[0]->hw_frames_ctx->data;
275  in_format = in_frames_ctx->sw_format;
276  out_format = (s->format == AV_PIX_FMT_NONE) ? in_format : s->format;
277 
278  if (!format_is_supported(in_format)) {
279  av_log(ctx, AV_LOG_ERROR, "Unsupported input format: %s\n",
280  av_get_pix_fmt_name(in_format));
281  return AVERROR(ENOSYS);
282  }
283  if (!format_is_supported(out_format)) {
284  av_log(ctx, AV_LOG_ERROR, "Unsupported output format: %s\n",
285  av_get_pix_fmt_name(out_format));
286  return AVERROR(ENOSYS);
287  }
288 
289  in_deinterleaved_format = get_deinterleaved_format(in_format);
290  out_deinterleaved_format = get_deinterleaved_format(out_format);
291  if (in_deinterleaved_format == AV_PIX_FMT_NONE ||
292  out_deinterleaved_format == AV_PIX_FMT_NONE)
293  return AVERROR_BUG;
294 
295  /* figure out which stages need to be done */
296  if (in_width != out_width || in_height != out_height ||
297  in_deinterleaved_format != out_deinterleaved_format) {
299 
300  if (s->interp_algo == NPPI_INTER_SUPER &&
301  (out_width > in_width && out_height > in_height)) {
302  s->interp_algo = NPPI_INTER_LANCZOS;
303  av_log(ctx, AV_LOG_WARNING, "super-sampling not supported for output dimensions, using lanczos instead.\n");
304  }
305  if (s->interp_algo == NPPI_INTER_SUPER &&
306  !(out_width < in_width && out_height < in_height)) {
307  s->interp_algo = NPPI_INTER_CUBIC;
308  av_log(ctx, AV_LOG_WARNING, "super-sampling not supported for output dimensions, using cubic instead.\n");
309  }
310  }
311 
312  if (!s->stages[STAGE_RESIZE].stage_needed && in_format == out_format)
313  s->passthrough = 1;
314 
315  if (!s->passthrough) {
316  if (in_format != in_deinterleaved_format)
318  if (out_format != out_deinterleaved_format)
320  }
321 
322  s->stages[STAGE_DEINTERLEAVE].in_fmt = in_format;
323  s->stages[STAGE_DEINTERLEAVE].out_fmt = in_deinterleaved_format;
324  s->stages[STAGE_DEINTERLEAVE].planes_in[0].width = in_width;
325  s->stages[STAGE_DEINTERLEAVE].planes_in[0].height = in_height;
326 
327  s->stages[STAGE_RESIZE].in_fmt = in_deinterleaved_format;
328  s->stages[STAGE_RESIZE].out_fmt = out_deinterleaved_format;
329  s->stages[STAGE_RESIZE].planes_in[0].width = in_width;
330  s->stages[STAGE_RESIZE].planes_in[0].height = in_height;
331  s->stages[STAGE_RESIZE].planes_out[0].width = out_width;
332  s->stages[STAGE_RESIZE].planes_out[0].height = out_height;
333 
334  s->stages[STAGE_INTERLEAVE].in_fmt = out_deinterleaved_format;
335  s->stages[STAGE_INTERLEAVE].out_fmt = out_format;
336  s->stages[STAGE_INTERLEAVE].planes_in[0].width = out_width;
337  s->stages[STAGE_INTERLEAVE].planes_in[0].height = out_height;
338 
339  /* init the hardware contexts */
340  for (i = 0; i < FF_ARRAY_ELEMS(s->stages); i++) {
341  if (!s->stages[i].stage_needed)
342  continue;
343 
344  ret = init_stage(&s->stages[i], in_frames_ctx->device_ref);
345  if (ret < 0)
346  return ret;
347 
348  last_stage = i;
349  }
350 
351  if (last_stage < 0)
352  return 0;
353  ctx->outputs[0]->hw_frames_ctx = av_buffer_ref(s->stages[last_stage].frames_ctx);
354  if (!ctx->outputs[0]->hw_frames_ctx)
355  return AVERROR(ENOMEM);
356 
357  return 0;
358 }
359 
361 {
362  AVFilterContext *ctx = outlink->src;
363  AVFilterLink *inlink = outlink->src->inputs[0];
364  NPPScaleContext *s = ctx->priv;
365  int64_t w, h;
366  double var_values[VARS_NB], res;
367  char *expr;
368  int ret;
369 
370  var_values[VAR_PI] = M_PI;
371  var_values[VAR_PHI] = M_PHI;
372  var_values[VAR_E] = M_E;
373  var_values[VAR_IN_W] = var_values[VAR_IW] = inlink->w;
374  var_values[VAR_IN_H] = var_values[VAR_IH] = inlink->h;
375  var_values[VAR_OUT_W] = var_values[VAR_OW] = NAN;
376  var_values[VAR_OUT_H] = var_values[VAR_OH] = NAN;
377  var_values[VAR_A] = (double) inlink->w / inlink->h;
378  var_values[VAR_SAR] = inlink->sample_aspect_ratio.num ?
379  (double) inlink->sample_aspect_ratio.num / inlink->sample_aspect_ratio.den : 1;
380  var_values[VAR_DAR] = var_values[VAR_A] * var_values[VAR_SAR];
381 
382  /* evaluate width and height */
383  av_expr_parse_and_eval(&res, (expr = s->w_expr),
384  var_names, var_values,
385  NULL, NULL, NULL, NULL, NULL, 0, ctx);
386  s->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
387  if ((ret = av_expr_parse_and_eval(&res, (expr = s->h_expr),
388  var_names, var_values,
389  NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
390  goto fail;
391  s->h = var_values[VAR_OUT_H] = var_values[VAR_OH] = res;
392  /* evaluate again the width, as it may depend on the output height */
393  if ((ret = av_expr_parse_and_eval(&res, (expr = s->w_expr),
394  var_names, var_values,
395  NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
396  goto fail;
397  s->w = res;
398 
399  w = s->w;
400  h = s->h;
401 
402  /* sanity check params */
403  if (w < -1 || h < -1) {
404  av_log(ctx, AV_LOG_ERROR, "Size values less than -1 are not acceptable.\n");
405  return AVERROR(EINVAL);
406  }
407  if (w == -1 && h == -1)
408  s->w = s->h = 0;
409 
410  if (!(w = s->w))
411  w = inlink->w;
412  if (!(h = s->h))
413  h = inlink->h;
414  if (w == -1)
415  w = av_rescale(h, inlink->w, inlink->h);
416  if (h == -1)
417  h = av_rescale(w, inlink->h, inlink->w);
418 
419  if (w > INT_MAX || h > INT_MAX ||
420  (h * inlink->w) > INT_MAX ||
421  (w * inlink->h) > INT_MAX)
422  av_log(ctx, AV_LOG_ERROR, "Rescaled value for width or height is too big.\n");
423 
424  outlink->w = w;
425  outlink->h = h;
426 
427  ret = init_processing_chain(ctx, inlink->w, inlink->h, w, h);
428  if (ret < 0)
429  return ret;
430 
431  av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d -> w:%d h:%d\n",
432  inlink->w, inlink->h, outlink->w, outlink->h);
433 
434  if (inlink->sample_aspect_ratio.num)
435  outlink->sample_aspect_ratio = av_mul_q((AVRational){outlink->h*inlink->w,
436  outlink->w*inlink->h},
437  inlink->sample_aspect_ratio);
438  else
439  outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
440 
441  return 0;
442 
443 fail:
445  "Error when evaluating the expression '%s'\n", expr);
446  return ret;
447 }
448 
450  AVFrame *out, AVFrame *in)
451 {
452  AVHWFramesContext *in_frames_ctx = (AVHWFramesContext*)in->hw_frames_ctx->data;
453  NppStatus err;
454 
455  switch (in_frames_ctx->sw_format) {
456  case AV_PIX_FMT_NV12:
457  err = nppiYCbCr420_8u_P2P3R(in->data[0], in->linesize[0],
458  in->data[1], in->linesize[1],
459  out->data, out->linesize,
460  (NppiSize){ in->width, in->height });
461  break;
462  default:
463  return AVERROR_BUG;
464  }
465  if (err != NPP_SUCCESS) {
466  av_log(ctx, AV_LOG_ERROR, "NPP deinterleave error: %d\n", err);
467  return AVERROR_UNKNOWN;
468  }
469 
470  return 0;
471 }
472 
474  AVFrame *out, AVFrame *in)
475 {
476  NPPScaleContext *s = ctx->priv;
477  NppStatus err;
478  int i;
479 
480  for (i = 0; i < FF_ARRAY_ELEMS(in->data) && in->data[i]; i++) {
481  int iw = stage->planes_in[i].width;
482  int ih = stage->planes_in[i].height;
483  int ow = stage->planes_out[i].width;
484  int oh = stage->planes_out[i].height;
485 
486  err = nppiResizeSqrPixel_8u_C1R(in->data[i], (NppiSize){ iw, ih },
487  in->linesize[i], (NppiRect){ 0, 0, iw, ih },
488  out->data[i], out->linesize[i],
489  (NppiRect){ 0, 0, ow, oh },
490  (double)ow / iw, (double)oh / ih,
491  0.0, 0.0, s->interp_algo);
492  if (err != NPP_SUCCESS) {
493  av_log(ctx, AV_LOG_ERROR, "NPP resize error: %d\n", err);
494  return AVERROR_UNKNOWN;
495  }
496  }
497 
498  return 0;
499 }
500 
502  AVFrame *out, AVFrame *in)
503 {
504  AVHWFramesContext *out_frames_ctx = (AVHWFramesContext*)out->hw_frames_ctx->data;
505  NppStatus err;
506 
507  switch (out_frames_ctx->sw_format) {
508  case AV_PIX_FMT_NV12:
509  err = nppiYCbCr420_8u_P3P2R((const uint8_t**)in->data,
510  in->linesize,
511  out->data[0], out->linesize[0],
512  out->data[1], out->linesize[1],
513  (NppiSize){ in->width, in->height });
514  break;
515  default:
516  return AVERROR_BUG;
517  }
518  if (err != NPP_SUCCESS) {
519  av_log(ctx, AV_LOG_ERROR, "NPP deinterleave error: %d\n", err);
520  return AVERROR_UNKNOWN;
521  }
522 
523  return 0;
524 }
525 
527  AVFrame *out, AVFrame *in) = {
531 };
532 
534 {
535  NPPScaleContext *s = ctx->priv;
536  AVFrame *src = in;
537  int i, ret, last_stage = -1;
538 
539  for (i = 0; i < FF_ARRAY_ELEMS(s->stages); i++) {
540  if (!s->stages[i].stage_needed)
541  continue;
542 
543  ret = nppscale_process[i](ctx, &s->stages[i], s->stages[i].frame, src);
544  if (ret < 0)
545  return ret;
546 
547  src = s->stages[i].frame;
548  last_stage = i;
549  }
550 
551  if (last_stage < 0)
552  return AVERROR_BUG;
553  ret = av_hwframe_get_buffer(src->hw_frames_ctx, s->tmp_frame, 0);
554  if (ret < 0)
555  return ret;
556 
557  av_frame_move_ref(out, src);
558  av_frame_move_ref(src, s->tmp_frame);
559 
560  ret = av_frame_copy_props(out, in);
561  if (ret < 0)
562  return ret;
563 
564  return 0;
565 }
566 
568 {
569  AVFilterContext *ctx = link->dst;
570  NPPScaleContext *s = ctx->priv;
571  AVFilterLink *outlink = ctx->outputs[0];
572  AVHWFramesContext *frames_ctx = (AVHWFramesContext*)outlink->hw_frames_ctx->data;
573  AVCUDADeviceContext *device_hwctx = frames_ctx->device_ctx->hwctx;
574 
575  AVFrame *out = NULL;
576  CUresult err;
578  int ret = 0;
579 
580  if (s->passthrough)
581  return ff_filter_frame(outlink, in);
582 
583  out = av_frame_alloc();
584  if (!out) {
585  ret = AVERROR(ENOMEM);
586  goto fail;
587  }
588 
589  av_reduce(&out->sample_aspect_ratio.num, &out->sample_aspect_ratio.den,
590  (int64_t)in->sample_aspect_ratio.num * outlink->h * link->w,
591  (int64_t)in->sample_aspect_ratio.den * outlink->w * link->h,
592  INT_MAX);
593 
594  err = cuCtxPushCurrent(device_hwctx->cuda_ctx);
595  if (err != CUDA_SUCCESS) {
596  ret = AVERROR_UNKNOWN;
597  goto fail;
598  }
599 
600  ret = nppscale_scale(ctx, out, in);
601 
602  cuCtxPopCurrent(&dummy);
603  if (ret < 0)
604  goto fail;
605 
606  av_frame_free(&in);
607  return ff_filter_frame(outlink, out);
608 fail:
609  av_frame_free(&in);
610  av_frame_free(&out);
611  return ret;
612 }
613 
614 #define OFFSET(x) offsetof(NPPScaleContext, x)
615 #define FLAGS (AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM)
616 static const AVOption options[] = {
617  { "w", "Output video width", OFFSET(w_expr), AV_OPT_TYPE_STRING, { .str = "iw" }, .flags = FLAGS },
618  { "h", "Output video height", OFFSET(h_expr), AV_OPT_TYPE_STRING, { .str = "ih" }, .flags = FLAGS },
619  { "format", "Output pixel format", OFFSET(format_str), AV_OPT_TYPE_STRING, { .str = "same" }, .flags = FLAGS },
620 
621  { "interp_algo", "Interpolation algorithm used for resizing", OFFSET(interp_algo), AV_OPT_TYPE_INT, { .i64 = NPPI_INTER_CUBIC }, 0, INT_MAX, FLAGS, "interp_algo" },
622  { "nn", "nearest neighbour", 0, AV_OPT_TYPE_CONST, { .i64 = NPPI_INTER_NN }, 0, 0, FLAGS, "interp_algo" },
623  { "linear", "linear", 0, AV_OPT_TYPE_CONST, { .i64 = NPPI_INTER_LINEAR }, 0, 0, FLAGS, "interp_algo" },
624  { "cubic", "cubic", 0, AV_OPT_TYPE_CONST, { .i64 = NPPI_INTER_CUBIC }, 0, 0, FLAGS, "interp_algo" },
625  { "cubic2p_bspline", "2-parameter cubic (B=1, C=0)", 0, AV_OPT_TYPE_CONST, { .i64 = NPPI_INTER_CUBIC2P_BSPLINE }, 0, 0, FLAGS, "interp_algo" },
626  { "cubic2p_catmullrom", "2-parameter cubic (B=0, C=1/2)", 0, AV_OPT_TYPE_CONST, { .i64 = NPPI_INTER_CUBIC2P_CATMULLROM }, 0, 0, FLAGS, "interp_algo" },
627  { "cubic2p_b05c03", "2-parameter cubic (B=1/2, C=3/10)", 0, AV_OPT_TYPE_CONST, { .i64 = NPPI_INTER_CUBIC2P_B05C03 }, 0, 0, FLAGS, "interp_algo" },
628  { "super", "supersampling", 0, AV_OPT_TYPE_CONST, { .i64 = NPPI_INTER_SUPER }, 0, 0, FLAGS, "interp_algo" },
629  { "lanczos", "Lanczos", 0, AV_OPT_TYPE_CONST, { .i64 = NPPI_INTER_LANCZOS }, 0, 0, FLAGS, "interp_algo" },
630  { NULL },
631 };
632 
633 static const AVClass nppscale_class = {
634  .class_name = "nppscale",
635  .item_name = av_default_item_name,
636  .option = options,
637  .version = LIBAVUTIL_VERSION_INT,
638 };
639 
640 static const AVFilterPad nppscale_inputs[] = {
641  {
642  .name = "default",
643  .type = AVMEDIA_TYPE_VIDEO,
644  .filter_frame = nppscale_filter_frame,
645  },
646  { NULL }
647 };
648 
649 static const AVFilterPad nppscale_outputs[] = {
650  {
651  .name = "default",
652  .type = AVMEDIA_TYPE_VIDEO,
653  .config_props = nppscale_config_props,
654  },
655  { NULL }
656 };
657 
659  .name = "scale_npp",
660  .description = NULL_IF_CONFIG_SMALL("NVIDIA Performance Primitives video "
661  "scaling and format conversion"),
662 
663  .init = nppscale_init,
664  .uninit = nppscale_uninit,
665  .query_formats = nppscale_query_formats,
666 
667  .priv_size = sizeof(NPPScaleContext),
668  .priv_class = &nppscale_class,
669 
670  .inputs = nppscale_inputs,
671  .outputs = nppscale_outputs,
672 };
#define NULL
Definition: coverity.c:32
const char * s
Definition: avisynth_c.h:768
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:124
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2266
This structure describes decoded (raw) audio or video data.
Definition: frame.h:184
ScaleStage
Definition: vf_scale_npp.c:79
AVOption.
Definition: opt.h:245
const char * fmt
Definition: avisynth_c.h:769
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:67
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2306
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
Main libavfilter public API header.
const char * desc
Definition: nvenc.c:101
int num
Numerator.
Definition: rational.h:59
AVBufferRef * frames_ctx
Definition: vf_scale_npp.c:96
int width
The allocated dimensions of the frames in this pool.
Definition: hwcontext.h:222
static int nppscale_config_props(AVFilterLink *outlink)
Definition: vf_scale_npp.c:360
enum AVPixelFormat out_fmt
Definition: vf_scale_npp.c:89
enum AVPixelFormat format
The pixel format identifying the underlying HW surface type.
Definition: hwcontext.h:202
void av_frame_move_ref(AVFrame *dst, AVFrame *src)
Move everything contained in src to dst and reset src.
Definition: frame.c:517
static enum AVPixelFormat get_deinterleaved_format(enum AVPixelFormat fmt)
Definition: vf_scale_npp.c:241
static int nppscale_resize(AVFilterContext *ctx, NPPScaleStageContext *stage, AVFrame *out, AVFrame *in)
Definition: vf_scale_npp.c:473
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:283
enum AVPixelFormat format
Output sw format.
Definition: vf_scale_npp.c:119
AVBufferRef * hw_frames_ctx
For hwaccel-format frames, this should be a reference to the AVHWFramesContext describing the frame...
Definition: frame.h:534
const char * name
Pad name.
Definition: internal.h:59
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:315
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1189
char * w_expr
width expression string
Definition: vf_scale_npp.c:121
static const AVFilterPad nppscale_inputs[]
Definition: vf_scale_npp.c:640
uint8_t
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:145
enum AVPixelFormat in_fmt
Definition: vf_scale_npp.c:88
AVOptions.
static void nppscale_uninit(AVFilterContext *ctx)
Definition: vf_scale_npp.c:155
int w
New dimensions.
Definition: vf_scale_npp.c:114
AVFilter ff_vf_scale_npp
Definition: vf_scale_npp.c:658
void * hwctx
The format-specific data, allocated and freed by libavutil along with this context.
Definition: hwcontext.h:85
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:192
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 const AVOption options[]
Definition: vf_scale_npp.c:616
#define FFALIGN(x, a)
Definition: macros.h:48
#define av_log(a,...)
An API-specific header for AV_HWDEVICE_TYPE_CUDA.
A filter pad used for either input or output.
Definition: internal.h:53
static int nppscale_init(AVFilterContext *ctx)
Definition: vf_scale_npp.c:128
int av_expr_parse_and_eval(double *d, const char *s, const char *const *const_names, const double *const_values, const char *const *func1_names, double(*const *funcs1)(void *, double), const char *const *func2_names, double(*const *funcs2)(void *, double, double), void *opaque, int log_offset, void *log_ctx)
Parse and evaluate an expression.
Definition: eval.c:723
struct NPPScaleStageContext::@188 planes_out[3]
int width
width and height of the video frame
Definition: frame.h:236
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
int ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
A helper for query_formats() which sets all links to the same list of formats.
Definition: formats.c:568
static const char *const var_names[]
Definition: vf_scale_npp.c:53
static int nppscale_deinterleave(AVFilterContext *ctx, NPPScaleStageContext *stage, AVFrame *out, AVFrame *in)
Definition: vf_scale_npp.c:449
av_default_item_name
#define AVERROR(e)
Definition: error.h:43
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:158
#define M_E
Definition: mathematics.h:37
int av_pix_fmt_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift)
Utility function to access log2_chroma_w log2_chroma_h from the pixel format AVPixFmtDescriptor.
Definition: pixdesc.c:2294
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
void * priv
private data for use by the filter
Definition: avfilter.h:322
planar YUV 4:2:0, 12bpp, 1 plane for Y and 1 plane for the UV components, which are interleaved (firs...
Definition: pixfmt.h:90
static int nppscale_scale(AVFilterContext *ctx, AVFrame *out, AVFrame *in)
Definition: vf_scale_npp.c:533
static int init_stage(NPPScaleStageContext *stage, AVBufferRef *device_ctx)
Definition: vf_scale_npp.c:179
int av_hwframe_ctx_init(AVBufferRef *ref)
Finalize the context before use.
Definition: hwcontext.c:263
static int nppscale_interleave(AVFilterContext *ctx, NPPScaleStageContext *stage, AVFrame *out, AVFrame *in)
Definition: vf_scale_npp.c:501
int av_hwframe_get_buffer(AVBufferRef *hwframe_ref, AVFrame *frame, int flags)
Allocate a new frame attached to the given AVHWFramesContext.
Definition: hwcontext.c:390
#define fail()
Definition: checkasm.h:83
var_name
Definition: aeval.c:46
common internal API header
uint8_t nb_components
The number of components each pixel has, (1-4)
Definition: pixdesc.h:83
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
Definition: mathematics.c:129
AVHWDeviceContext * device_ctx
The parent AVHWDeviceContext.
Definition: hwcontext.h:142
static const AVClass nppscale_class
Definition: vf_scale_npp.c:633
AVFormatContext * ctx
Definition: movenc.c:48
static enum AVPixelFormat supported_formats[]
Definition: vf_scale_npp.c:43
CUresult
Definition: nvenc.h:41
int dummy
Definition: motion.c:64
#define OFFSET(x)
Definition: vf_scale_npp.c:614
static const AVFilterPad outputs[]
Definition: af_afftfilt.c:386
static int format_is_supported(enum AVPixelFormat fmt)
Definition: vf_scale_npp.c:231
#define src
Definition: vp9dsp.c:530
HW acceleration through CUDA.
Definition: pixfmt.h:249
#define FF_ARRAY_ELEMS(a)
static const AVFilterPad inputs[]
Definition: af_afftfilt.c:376
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:215
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
uint8_t * data
The data buffer.
Definition: buffer.h:89
AVRational sample_aspect_ratio
Sample aspect ratio for the video frame, 0/1 if unknown/unspecified.
Definition: frame.h:263
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
Definition: error.h:50
This struct is allocated as AVHWDeviceContext.hwctx.
Describe the class of an AVClass context structure.
Definition: log.h:67
Filter definition.
Definition: avfilter.h:144
Rational number (pair of numerator and denominator).
Definition: rational.h:58
This struct describes a set or pool of "hardware" frames (i.e.
Definition: hwcontext.h:117
#define M_PHI
Definition: mathematics.h:49
AVFrame * tmp_frame
Definition: vf_scale_npp.c:104
static int init_processing_chain(AVFilterContext *ctx, int in_width, int in_height, int out_width, int out_height)
Definition: vf_scale_npp.c:255
const char * name
Filter name.
Definition: avfilter.h:148
static int(*const nppscale_process[])(AVFilterContext *ctx, NPPScaleStageContext *stage, AVFrame *out, AVFrame *in)
Definition: vf_scale_npp.c:526
static int nppscale_query_formats(AVFilterContext *ctx)
Definition: vf_scale_npp.c:167
#define FLAGS
Definition: vf_scale_npp.c:615
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:319
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:262
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:493
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:198
AVBufferRef * device_ref
A reference to the parent AVHWDeviceContext.
Definition: hwcontext.h:134
static const AVFilterPad nppscale_outputs[]
Definition: vf_scale_npp.c:649
A reference to a data buffer.
Definition: buffer.h:81
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:62
common internal and external API header
if(ret< 0)
Definition: vf_mcdeint.c:282
NPPScaleStageContext stages[STAGE_NB]
Definition: vf_scale_npp.c:103
AVBufferRef * av_hwframe_ctx_alloc(AVBufferRef *device_ref_in)
Allocate an AVHWFramesContext tied to a given device context.
Definition: hwcontext.c:177
AVBufferRef * av_buffer_ref(AVBufferRef *buf)
Create a new reference to an AVBuffer.
Definition: buffer.c:92
int den
Denominator.
Definition: rational.h:60
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
Definition: error.h:71
static int nppscale_filter_frame(AVFilterLink *link, AVFrame *in)
Definition: vf_scale_npp.c:567
#define NAN
Definition: math.h:28
A list of supported formats for one end of a filter link.
Definition: formats.h:64
static enum AVPixelFormat deinterleaved_formats[][2]
Definition: vf_scale_npp.c:49
An instance of a filter.
Definition: avfilter.h:307
AVRational av_mul_q(AVRational b, AVRational c)
Multiply two rationals.
Definition: rational.c:80
int height
Definition: frame.h:236
FILE * out
Definition: movenc.c:54
#define M_PI
Definition: mathematics.h:52
struct NPPScaleStageContext::@188 planes_in[3]
enum AVPixelFormat av_get_pix_fmt(const char *name)
Return the pixel format corresponding to name.
Definition: pixdesc.c:2194
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:2182
void * CUcontext
Definition: nvenc.h:45
internal API functions
char * h_expr
height expression string
Definition: vf_scale_npp.c:122
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
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:589
simple arithmetic expression evaluator