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 "../ProcessInfo.h"
12 #include "cores/IPlayer.h"
13 
14 namespace VIDEOPLAYER
15 {
16 
17 class CProcessInfoWin : public CProcessInfo
18 {
19 public:
20   static CProcessInfo* Create();
21   static void Register();
22 
23   EINTERLACEMETHOD GetFallbackDeintMethod() override;
24   std::vector<AVPixelFormat> GetRenderFormats() override;
25 };
26 
27 }
28