config_components.h (785B)
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 2 /* vim:set ts=2 sw=2 sts=2 et cindent: */ 3 /* This Source Code Form is subject to the terms of the Mozilla Public 4 * License, v. 2.0. If a copy of the MPL was not distributed with this 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 6 7 #ifndef MOZ_FFVPX_CONFIG__COMPONENTS_H 8 #define MOZ_FFVPX_CONFIG__COMPONENTS_H 9 10 11 #ifdef CONFIG_VAAPI 12 #undef CONFIG_VAAPI 13 #undef CONFIG_VAAPI_1 14 #undef CONFIG_VP8_VAAPI_HWACCEL 15 #undef CONFIG_VP9_VAAPI_HWACCEL 16 #undef CONFIG_AV1_VAAPI_HWACCEL 17 #endif 18 19 #if defined(MOZ_FFVPX_AUDIOONLY) 20 # include "config_components_audio_only.h" 21 #else 22 # include "config_components_audio_video.h" 23 #endif 24 25 #include "config_override.h" 26 27 #endif // MOZ_FFVPX_CONFIG__COMPONENTS_H