blob: 98b76d8c5f6bc7a94c5f0a0ba83ec430e9192e65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* vce_common.c
*
* Copyright (c) 2003-2018 HandBrake Team
* This file is part of the HandBrake source code.
* Homepage: <http://handbrake.fr/>.
* It may be used under the terms of the GNU General Public License v2.
* For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html
*/
#ifdef USE_VCE
int hb_vce_h264_available()
{
return 1;
}
int hb_vce_h265_available()
{
return 1;
}
#else
int hb_vce_h264_available()
{
return 0;
}
int hb_vce_h265_available()
{
return 0;
}
#endif // USE_QSV
|