[WASAPI] set stream audio category
[xbmc.git] / xbmc / cores / paplayer / CodecFactory.h
blob01a2614b454492b9a38b41ab61131bee952c93aa
1 /*
2 * Copyright (C) 2005-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 "ICodec.h"
13 class CFileItem;
15 class CodecFactory
17 public:
18 CodecFactory() = default;
19 virtual ~CodecFactory() = default;
20 static ICodec* CreateCodec(const CURL& urlFile);
21 static ICodec* CreateCodecDemux(const CFileItem& file, unsigned int filecache);