[videodb] remove unused seasons table from episode_view
[xbmc.git] / xbmc / cores / AudioEngine / AEResampleFactory.cpp
blob8115b191befe3710437eea98df5728e375f64057
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 #include "AEResampleFactory.h"
10 #include "cores/AudioEngine/Engines/ActiveAE/ActiveAEResampleFFMPEG.h"
12 namespace ActiveAE
15 std::unique_ptr<IAEResample> CAEResampleFactory::Create(uint32_t flags /* = 0 */)
17 return std::make_unique<CActiveAEResampleFFMPEG>();