dxva2.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * DXVA2 HW acceleration
  3. *
  4. * copyright (c) 2009 Laurent Aimar
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #ifndef AVCODEC_DXVA_H
  23. #define AVCODEC_DXVA_H
  24. /**
  25. * @file
  26. * @ingroup lavc_codec_hwaccel_dxva2
  27. * Public libavcodec DXVA2 header.
  28. */
  29. #if defined(_WIN32_WINNT) && _WIN32_WINNT < 0x0600
  30. #undef _WIN32_WINNT
  31. #endif
  32. #if !defined(_WIN32_WINNT)
  33. #define _WIN32_WINNT 0x0600
  34. #endif
  35. #include <stdint.h>
  36. #include <d3d9.h>
  37. #include <dxva2api.h>
  38. /**
  39. * @defgroup lavc_codec_hwaccel_dxva2 DXVA2
  40. * @ingroup lavc_codec_hwaccel
  41. *
  42. * @{
  43. */
  44. #define FF_DXVA2_WORKAROUND_SCALING_LIST_ZIGZAG 1 ///< Work around for DXVA2 and old UVD/UVD+ ATI video cards
  45. /**
  46. * This structure is used to provides the necessary configurations and data
  47. * to the DXVA2 FFmpeg HWAccel implementation.
  48. *
  49. * The application must make it available as AVCodecContext.hwaccel_context.
  50. */
  51. struct dxva_context {
  52. /**
  53. * DXVA2 decoder object
  54. */
  55. IDirectXVideoDecoder *decoder;
  56. /**
  57. * DXVA2 configuration used to create the decoder
  58. */
  59. const DXVA2_ConfigPictureDecode *cfg;
  60. /**
  61. * The number of surface in the surface array
  62. */
  63. unsigned surface_count;
  64. /**
  65. * The array of Direct3D surfaces used to create the decoder
  66. */
  67. LPDIRECT3DSURFACE9 *surface;
  68. /**
  69. * A bit field configuring the workarounds needed for using the decoder
  70. */
  71. uint64_t workaround;
  72. /**
  73. * Private to the FFmpeg AVHWAccel implementation
  74. */
  75. unsigned report_id;
  76. };
  77. /**
  78. * @}
  79. */
  80. #endif /* AVCODEC_DXVA_H */