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 19#ifndef AVCODEC_HWACCELS_H 20#define AVCODEC_HWACCELS_H 21 22#include "avcodec.h" 23 24extern const AVHWAccel ff_av1_d3d11va_hwaccel; 25extern const AVHWAccel ff_av1_d3d11va2_hwaccel; 26extern const AVHWAccel ff_av1_dxva2_hwaccel; 27extern const AVHWAccel ff_av1_nvdec_hwaccel; 28extern const AVHWAccel ff_av1_vaapi_hwaccel; 29extern const AVHWAccel ff_av1_vdpau_hwaccel; 30extern const AVHWAccel ff_h263_vaapi_hwaccel; 31extern const AVHWAccel ff_h263_videotoolbox_hwaccel; 32extern const AVHWAccel ff_h264_d3d11va_hwaccel; 33extern const AVHWAccel ff_h264_d3d11va2_hwaccel; 34extern const AVHWAccel ff_h264_dxva2_hwaccel; 35extern const AVHWAccel ff_h264_nvdec_hwaccel; 36extern const AVHWAccel ff_h264_vaapi_hwaccel; 37extern const AVHWAccel ff_h264_vdpau_hwaccel; 38extern const AVHWAccel ff_h264_videotoolbox_hwaccel; 39extern const AVHWAccel ff_hevc_d3d11va_hwaccel; 40extern const AVHWAccel ff_hevc_d3d11va2_hwaccel; 41extern const AVHWAccel ff_hevc_dxva2_hwaccel; 42extern const AVHWAccel ff_hevc_nvdec_hwaccel; 43extern const AVHWAccel ff_hevc_vaapi_hwaccel; 44extern const AVHWAccel ff_hevc_vdpau_hwaccel; 45extern const AVHWAccel ff_hevc_videotoolbox_hwaccel; 46extern const AVHWAccel ff_mjpeg_nvdec_hwaccel; 47extern const AVHWAccel ff_mjpeg_vaapi_hwaccel; 48extern const AVHWAccel ff_mpeg1_nvdec_hwaccel; 49extern const AVHWAccel ff_mpeg1_vdpau_hwaccel; 50extern const AVHWAccel ff_mpeg1_videotoolbox_hwaccel; 51extern const AVHWAccel ff_mpeg2_d3d11va_hwaccel; 52extern const AVHWAccel ff_mpeg2_d3d11va2_hwaccel; 53extern const AVHWAccel ff_mpeg2_nvdec_hwaccel; 54extern const AVHWAccel ff_mpeg2_dxva2_hwaccel; 55extern const AVHWAccel ff_mpeg2_vaapi_hwaccel; 56extern const AVHWAccel ff_mpeg2_vdpau_hwaccel; 57extern const AVHWAccel ff_mpeg2_videotoolbox_hwaccel; 58extern const AVHWAccel ff_mpeg4_nvdec_hwaccel; 59extern const AVHWAccel ff_mpeg4_vaapi_hwaccel; 60extern const AVHWAccel ff_mpeg4_vdpau_hwaccel; 61extern const AVHWAccel ff_mpeg4_videotoolbox_hwaccel; 62extern const AVHWAccel ff_prores_videotoolbox_hwaccel; 63extern const AVHWAccel ff_vc1_d3d11va_hwaccel; 64extern const AVHWAccel ff_vc1_d3d11va2_hwaccel; 65extern const AVHWAccel ff_vc1_dxva2_hwaccel; 66extern const AVHWAccel ff_vc1_nvdec_hwaccel; 67extern const AVHWAccel ff_vc1_vaapi_hwaccel; 68extern const AVHWAccel ff_vc1_vdpau_hwaccel; 69extern const AVHWAccel ff_vp8_nvdec_hwaccel; 70extern const AVHWAccel ff_vp8_vaapi_hwaccel; 71extern const AVHWAccel ff_vp9_d3d11va_hwaccel; 72extern const AVHWAccel ff_vp9_d3d11va2_hwaccel; 73extern const AVHWAccel ff_vp9_dxva2_hwaccel; 74extern const AVHWAccel ff_vp9_nvdec_hwaccel; 75extern const AVHWAccel ff_vp9_vaapi_hwaccel; 76extern const AVHWAccel ff_vp9_vdpau_hwaccel; 77extern const AVHWAccel ff_vp9_videotoolbox_hwaccel; 78extern const AVHWAccel ff_wmv3_d3d11va_hwaccel; 79extern const AVHWAccel ff_wmv3_d3d11va2_hwaccel; 80extern const AVHWAccel ff_wmv3_dxva2_hwaccel; 81extern const AVHWAccel ff_wmv3_nvdec_hwaccel; 82extern const AVHWAccel ff_wmv3_vaapi_hwaccel; 83extern const AVHWAccel ff_wmv3_vdpau_hwaccel; 84 85#endif /* AVCODEC_HWACCELS_H */ 86