[videodb] remove unused seasons table from episode_view
[xbmc.git] / xbmc / cores / AudioEngine / AEResampleFactory.h
blob2d039657f4f06d18d7288e0d5768d604ef1a4dd7
1 /*
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.
7 */
9 #pragma once
11 #include "cores/AudioEngine/Interfaces/AEResample.h"
13 class IAEResample;
15 namespace ActiveAE
18 /**
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
29 public:
30 static std::unique_ptr<IAEResample> Create(uint32_t flags = 0U);