kodi
DVDFactoryInputStream.h
1 /*
2  * Copyright (C) 2005-2018 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 #include <memory>
12 #include <string>
13 #include <vector>
14 
15 class CFileItem;
16 class CDVDInputStream;
17 class IVideoPlayer;
18 
20 {
21 public:
22  static std::shared_ptr<CDVDInputStream> CreateInputStream(IVideoPlayer* pPlayer, const CFileItem &fileitem, bool scanforextaudio = false);
23  static std::shared_ptr<CDVDInputStream> CreateInputStream(IVideoPlayer* pPlayer, const CFileItem &fileitem, const std::vector<std::string>& filenames);
24 };
Definition: IVideoPlayer.h:28
Definition: DVDInputStream.h:50
Definition: DVDFactoryInputStream.h:19
Represents a file on a share.
Definition: FileItem.h:102