2 * Copyright (C) 2010-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
11 #include "cores/AudioEngine/Interfaces/AEResample.h"
19 * Bit options to pass to CAEResampleFactory::Create
21 enum AEResampleFactoryOptions
23 /* This is a quick resample job (e.g. resample a single noise packet) and may not be worth using GPU acceleration */
24 AERESAMPLEFACTORY_QUICK_RESAMPLE
= 0x01
27 class CAEResampleFactory
30 static std::unique_ptr
<IAEResample
> Create(uint32_t flags
= 0U);