1cabdff1aSopenharmony_ci/* 2cabdff1aSopenharmony_ci * This file is part of FFmpeg. 3cabdff1aSopenharmony_ci * 4cabdff1aSopenharmony_ci * FFmpeg is free software; you can redistribute it and/or 5cabdff1aSopenharmony_ci * modify it under the terms of the GNU Lesser General Public 6cabdff1aSopenharmony_ci * License as published by the Free Software Foundation; either 7cabdff1aSopenharmony_ci * version 2.1 of the License, or (at your option) any later version. 8cabdff1aSopenharmony_ci * 9cabdff1aSopenharmony_ci * FFmpeg is distributed in the hope that it will be useful, 10cabdff1aSopenharmony_ci * but WITHOUT ANY WARRANTY; without even the implied warranty of 11cabdff1aSopenharmony_ci * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12cabdff1aSopenharmony_ci * Lesser General Public License for more details. 13cabdff1aSopenharmony_ci * 14cabdff1aSopenharmony_ci * You should have received a copy of the GNU Lesser General Public 15cabdff1aSopenharmony_ci * License along with FFmpeg; if not, write to the Free Software 16cabdff1aSopenharmony_ci * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 17cabdff1aSopenharmony_ci */ 18cabdff1aSopenharmony_ci 19cabdff1aSopenharmony_ci#ifndef AVCODEC_HWACCELS_H 20cabdff1aSopenharmony_ci#define AVCODEC_HWACCELS_H 21cabdff1aSopenharmony_ci 22cabdff1aSopenharmony_ci#include "avcodec.h" 23cabdff1aSopenharmony_ci 24cabdff1aSopenharmony_ciextern const AVHWAccel ff_av1_d3d11va_hwaccel; 25cabdff1aSopenharmony_ciextern const AVHWAccel ff_av1_d3d11va2_hwaccel; 26cabdff1aSopenharmony_ciextern const AVHWAccel ff_av1_dxva2_hwaccel; 27cabdff1aSopenharmony_ciextern const AVHWAccel ff_av1_nvdec_hwaccel; 28cabdff1aSopenharmony_ciextern const AVHWAccel ff_av1_vaapi_hwaccel; 29cabdff1aSopenharmony_ciextern const AVHWAccel ff_av1_vdpau_hwaccel; 30cabdff1aSopenharmony_ciextern const AVHWAccel ff_h263_vaapi_hwaccel; 31cabdff1aSopenharmony_ciextern const AVHWAccel ff_h263_videotoolbox_hwaccel; 32cabdff1aSopenharmony_ciextern const AVHWAccel ff_h264_d3d11va_hwaccel; 33cabdff1aSopenharmony_ciextern const AVHWAccel ff_h264_d3d11va2_hwaccel; 34cabdff1aSopenharmony_ciextern const AVHWAccel ff_h264_dxva2_hwaccel; 35cabdff1aSopenharmony_ciextern const AVHWAccel ff_h264_nvdec_hwaccel; 36cabdff1aSopenharmony_ciextern const AVHWAccel ff_h264_vaapi_hwaccel; 37cabdff1aSopenharmony_ciextern const AVHWAccel ff_h264_vdpau_hwaccel; 38cabdff1aSopenharmony_ciextern const AVHWAccel ff_h264_videotoolbox_hwaccel; 39cabdff1aSopenharmony_ciextern const AVHWAccel ff_hevc_d3d11va_hwaccel; 40cabdff1aSopenharmony_ciextern const AVHWAccel ff_hevc_d3d11va2_hwaccel; 41cabdff1aSopenharmony_ciextern const AVHWAccel ff_hevc_dxva2_hwaccel; 42cabdff1aSopenharmony_ciextern const AVHWAccel ff_hevc_nvdec_hwaccel; 43cabdff1aSopenharmony_ciextern const AVHWAccel ff_hevc_vaapi_hwaccel; 44cabdff1aSopenharmony_ciextern const AVHWAccel ff_hevc_vdpau_hwaccel; 45cabdff1aSopenharmony_ciextern const AVHWAccel ff_hevc_videotoolbox_hwaccel; 46cabdff1aSopenharmony_ciextern const AVHWAccel ff_mjpeg_nvdec_hwaccel; 47cabdff1aSopenharmony_ciextern const AVHWAccel ff_mjpeg_vaapi_hwaccel; 48cabdff1aSopenharmony_ciextern const AVHWAccel ff_mpeg1_nvdec_hwaccel; 49cabdff1aSopenharmony_ciextern const AVHWAccel ff_mpeg1_vdpau_hwaccel; 50cabdff1aSopenharmony_ciextern const AVHWAccel ff_mpeg1_videotoolbox_hwaccel; 51cabdff1aSopenharmony_ciextern const AVHWAccel ff_mpeg2_d3d11va_hwaccel; 52cabdff1aSopenharmony_ciextern const AVHWAccel ff_mpeg2_d3d11va2_hwaccel; 53cabdff1aSopenharmony_ciextern const AVHWAccel ff_mpeg2_nvdec_hwaccel; 54cabdff1aSopenharmony_ciextern const AVHWAccel ff_mpeg2_dxva2_hwaccel; 55cabdff1aSopenharmony_ciextern const AVHWAccel ff_mpeg2_vaapi_hwaccel; 56cabdff1aSopenharmony_ciextern const AVHWAccel ff_mpeg2_vdpau_hwaccel; 57cabdff1aSopenharmony_ciextern const AVHWAccel ff_mpeg2_videotoolbox_hwaccel; 58cabdff1aSopenharmony_ciextern const AVHWAccel ff_mpeg4_nvdec_hwaccel; 59cabdff1aSopenharmony_ciextern const AVHWAccel ff_mpeg4_vaapi_hwaccel; 60cabdff1aSopenharmony_ciextern const AVHWAccel ff_mpeg4_vdpau_hwaccel; 61cabdff1aSopenharmony_ciextern const AVHWAccel ff_mpeg4_videotoolbox_hwaccel; 62cabdff1aSopenharmony_ciextern const AVHWAccel ff_prores_videotoolbox_hwaccel; 63cabdff1aSopenharmony_ciextern const AVHWAccel ff_vc1_d3d11va_hwaccel; 64cabdff1aSopenharmony_ciextern const AVHWAccel ff_vc1_d3d11va2_hwaccel; 65cabdff1aSopenharmony_ciextern const AVHWAccel ff_vc1_dxva2_hwaccel; 66cabdff1aSopenharmony_ciextern const AVHWAccel ff_vc1_nvdec_hwaccel; 67cabdff1aSopenharmony_ciextern const AVHWAccel ff_vc1_vaapi_hwaccel; 68cabdff1aSopenharmony_ciextern const AVHWAccel ff_vc1_vdpau_hwaccel; 69cabdff1aSopenharmony_ciextern const AVHWAccel ff_vp8_nvdec_hwaccel; 70cabdff1aSopenharmony_ciextern const AVHWAccel ff_vp8_vaapi_hwaccel; 71cabdff1aSopenharmony_ciextern const AVHWAccel ff_vp9_d3d11va_hwaccel; 72cabdff1aSopenharmony_ciextern const AVHWAccel ff_vp9_d3d11va2_hwaccel; 73cabdff1aSopenharmony_ciextern const AVHWAccel ff_vp9_dxva2_hwaccel; 74cabdff1aSopenharmony_ciextern const AVHWAccel ff_vp9_nvdec_hwaccel; 75cabdff1aSopenharmony_ciextern const AVHWAccel ff_vp9_vaapi_hwaccel; 76cabdff1aSopenharmony_ciextern const AVHWAccel ff_vp9_vdpau_hwaccel; 77cabdff1aSopenharmony_ciextern const AVHWAccel ff_vp9_videotoolbox_hwaccel; 78cabdff1aSopenharmony_ciextern const AVHWAccel ff_wmv3_d3d11va_hwaccel; 79cabdff1aSopenharmony_ciextern const AVHWAccel ff_wmv3_d3d11va2_hwaccel; 80cabdff1aSopenharmony_ciextern const AVHWAccel ff_wmv3_dxva2_hwaccel; 81cabdff1aSopenharmony_ciextern const AVHWAccel ff_wmv3_nvdec_hwaccel; 82cabdff1aSopenharmony_ciextern const AVHWAccel ff_wmv3_vaapi_hwaccel; 83cabdff1aSopenharmony_ciextern const AVHWAccel ff_wmv3_vdpau_hwaccel; 84cabdff1aSopenharmony_ci 85cabdff1aSopenharmony_ci#endif /* AVCODEC_HWACCELS_H */ 86