You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
2.5KB

  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. #ifndef AVFILTER_VAAPI_VPP_H
  19. #define AVFILTER_VAAPI_VPP_H
  20. #include <va/va.h>
  21. #include <va/va_vpp.h>
  22. #include "libavutil/hwcontext.h"
  23. #include "libavutil/hwcontext_vaapi.h"
  24. #include "avfilter.h"
  25. // ARGB black, for VAProcPipelineParameterBuffer.output_background_color.
  26. #define VAAPI_VPP_BACKGROUND_BLACK 0xff000000
  27. typedef struct VAAPIVPPContext {
  28. const AVClass *class;
  29. AVVAAPIDeviceContext *hwctx;
  30. AVBufferRef *device_ref;
  31. int valid_ids;
  32. VAConfigID va_config;
  33. VAContextID va_context;
  34. AVBufferRef *input_frames_ref;
  35. AVHWFramesContext *input_frames;
  36. enum AVPixelFormat output_format;
  37. int output_width; // computed width
  38. int output_height; // computed height
  39. VABufferID filter_buffers[VAProcFilterCount];
  40. int nb_filter_buffers;
  41. int (*build_filter_params)(AVFilterContext *avctx);
  42. void (*pipeline_uninit)(AVFilterContext *avctx);
  43. } VAAPIVPPContext;
  44. void ff_vaapi_vpp_ctx_init(AVFilterContext *avctx);
  45. void ff_vaapi_vpp_ctx_uninit(AVFilterContext *avctx);
  46. int ff_vaapi_vpp_query_formats(AVFilterContext *avctx);
  47. void ff_vaapi_vpp_pipeline_uninit(AVFilterContext *avctx);
  48. int ff_vaapi_vpp_config_input(AVFilterLink *inlink);
  49. int ff_vaapi_vpp_config_output(AVFilterLink *outlink);
  50. int ff_vaapi_vpp_colour_standard(enum AVColorSpace av_cs);
  51. int ff_vaapi_vpp_make_param_buffers(AVFilterContext *avctx,
  52. int type,
  53. const void *data,
  54. size_t size,
  55. int count);
  56. int ff_vaapi_vpp_render_picture(AVFilterContext *avctx,
  57. VAProcPipelineParameterBuffer *params,
  58. VASurfaceID output_surface);
  59. #endif /* AVFILTER_VAAPI_VPP_H */