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.

80 lines
2.4KB

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