kodi
ProcessInfoAndroid.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 "cores/IPlayer.h"
12 #include "cores/VideoPlayer/Process/ProcessInfo.h"
13 
14 namespace VIDEOPLAYER
15 {
16 
18 {
19 public:
20  CProcessInfoAndroid() = default;
21  static CProcessInfo* Create();
22  static void Register();
23  EINTERLACEMETHOD GetFallbackDeintMethod() override;
24  bool WantsRawPassthrough() override;
25 };
26 
27 } // namespace VIDEOPLAYER
Definition: ProcessInfo.h:26
Definition: ProcessInfoAndroid.h:17
Definition: ProcessInfoAndroid.h:14