]> git.sesse.net Git - ffmpeg/blob - libavcodec/hwaccels.h
lavc: Add hardware config metadata for decoders supporting hardware output
[ffmpeg] / libavcodec / hwaccels.h
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
24 extern AVHWAccel ff_h263_vaapi_hwaccel;
25 extern AVHWAccel ff_h263_videotoolbox_hwaccel;
26 extern AVHWAccel ff_h264_d3d11va_hwaccel;
27 extern AVHWAccel ff_h264_d3d11va2_hwaccel;
28 extern AVHWAccel ff_h264_dxva2_hwaccel;
29 extern AVHWAccel ff_h264_nvdec_hwaccel;
30 extern AVHWAccel ff_h264_vaapi_hwaccel;
31 extern AVHWAccel ff_h264_vdpau_hwaccel;
32 extern AVHWAccel ff_h264_videotoolbox_hwaccel;
33 extern AVHWAccel ff_hevc_d3d11va_hwaccel;
34 extern AVHWAccel ff_hevc_d3d11va2_hwaccel;
35 extern AVHWAccel ff_hevc_dxva2_hwaccel;
36 extern AVHWAccel ff_hevc_nvdec_hwaccel;
37 extern AVHWAccel ff_hevc_vaapi_hwaccel;
38 extern AVHWAccel ff_hevc_vdpau_hwaccel;
39 extern AVHWAccel ff_hevc_videotoolbox_hwaccel;
40 extern AVHWAccel ff_mpeg1_nvdec_hwaccel;
41 extern AVHWAccel ff_mpeg1_vdpau_hwaccel;
42 extern AVHWAccel ff_mpeg1_videotoolbox_hwaccel;
43 extern AVHWAccel ff_mpeg1_xvmc_hwaccel;
44 extern AVHWAccel ff_mpeg2_d3d11va_hwaccel;
45 extern AVHWAccel ff_mpeg2_d3d11va2_hwaccel;
46 extern AVHWAccel ff_mpeg2_nvdec_hwaccel;
47 extern AVHWAccel ff_mpeg2_dxva2_hwaccel;
48 extern AVHWAccel ff_mpeg2_vaapi_hwaccel;
49 extern AVHWAccel ff_mpeg2_vdpau_hwaccel;
50 extern AVHWAccel ff_mpeg2_videotoolbox_hwaccel;
51 extern AVHWAccel ff_mpeg2_xvmc_hwaccel;
52 extern AVHWAccel ff_mpeg4_nvdec_hwaccel;
53 extern AVHWAccel ff_mpeg4_vaapi_hwaccel;
54 extern AVHWAccel ff_mpeg4_vdpau_hwaccel;
55 extern AVHWAccel ff_mpeg4_videotoolbox_hwaccel;
56 extern AVHWAccel ff_vc1_d3d11va_hwaccel;
57 extern AVHWAccel ff_vc1_d3d11va2_hwaccel;
58 extern AVHWAccel ff_vc1_dxva2_hwaccel;
59 extern AVHWAccel ff_vc1_nvdec_hwaccel;
60 extern AVHWAccel ff_vc1_vaapi_hwaccel;
61 extern AVHWAccel ff_vc1_vdpau_hwaccel;
62 extern AVHWAccel ff_vp9_d3d11va_hwaccel;
63 extern AVHWAccel ff_vp9_d3d11va2_hwaccel;
64 extern AVHWAccel ff_vp9_dxva2_hwaccel;
65 extern AVHWAccel ff_vp9_nvdec_hwaccel;
66 extern AVHWAccel ff_vp9_vaapi_hwaccel;
67 extern AVHWAccel ff_wmv3_d3d11va_hwaccel;
68 extern AVHWAccel ff_wmv3_d3d11va2_hwaccel;
69 extern AVHWAccel ff_wmv3_dxva2_hwaccel;
70 extern AVHWAccel ff_wmv3_nvdec_hwaccel;
71 extern AVHWAccel ff_wmv3_vaapi_hwaccel;
72 extern AVHWAccel ff_wmv3_vdpau_hwaccel;
73
74 #endif /* AVCODEC_HWACCELS_H */