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.

60 lines
2.4KB

  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef AVCODEC_HWACCELS_H
  19. #define AVCODEC_HWACCELS_H
  20. #include "avcodec.h"
  21. extern const AVHWAccel ff_h263_vaapi_hwaccel;
  22. extern const AVHWAccel ff_h264_cuvid_hwaccel;
  23. extern const AVHWAccel ff_h264_d3d11va_hwaccel;
  24. extern const AVHWAccel ff_h264_d3d11va2_hwaccel;
  25. extern const AVHWAccel ff_h264_dxva2_hwaccel;
  26. extern const AVHWAccel ff_h264_vaapi_hwaccel;
  27. extern const AVHWAccel ff_h264_vda_hwaccel;
  28. extern const AVHWAccel ff_h264_vda_old_hwaccel;
  29. extern const AVHWAccel ff_h264_vdpau_hwaccel;
  30. extern const AVHWAccel ff_hevc_cuvid_hwaccel;
  31. extern const AVHWAccel ff_hevc_d3d11va_hwaccel;
  32. extern const AVHWAccel ff_hevc_d3d11va2_hwaccel;
  33. extern const AVHWAccel ff_hevc_dxva2_hwaccel;
  34. extern const AVHWAccel ff_hevc_vaapi_hwaccel;
  35. extern const AVHWAccel ff_hevc_vdpau_hwaccel;
  36. extern const AVHWAccel ff_mpeg1_vdpau_hwaccel;
  37. extern const AVHWAccel ff_mpeg2_d3d11va_hwaccel;
  38. extern const AVHWAccel ff_mpeg2_d3d11va2_hwaccel;
  39. extern const AVHWAccel ff_mpeg2_dxva2_hwaccel;
  40. extern const AVHWAccel ff_mpeg2_vaapi_hwaccel;
  41. extern const AVHWAccel ff_mpeg2_vdpau_hwaccel;
  42. extern const AVHWAccel ff_mpeg4_vaapi_hwaccel;
  43. extern const AVHWAccel ff_mpeg4_vdpau_hwaccel;
  44. extern const AVHWAccel ff_vc1_d3d11va_hwaccel;
  45. extern const AVHWAccel ff_vc1_d3d11va2_hwaccel;
  46. extern const AVHWAccel ff_vc1_dxva2_hwaccel;
  47. extern const AVHWAccel ff_vc1_vaapi_hwaccel;
  48. extern const AVHWAccel ff_vc1_vdpau_hwaccel;
  49. extern const AVHWAccel ff_vp8_vaapi_hwaccel;
  50. extern const AVHWAccel ff_wmv3_d3d11va_hwaccel;
  51. extern const AVHWAccel ff_wmv3_d3d11va2_hwaccel;
  52. extern const AVHWAccel ff_wmv3_dxva2_hwaccel;
  53. extern const AVHWAccel ff_wmv3_vaapi_hwaccel;
  54. extern const AVHWAccel ff_wmv3_vdpau_hwaccel;
  55. #endif /* AVCODEC_HWACCELS_H */