kodi
VideoGeneratedImageFileLoader.h
1 /*
2  * Copyright (C) 2023 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 "imagefiles/SpecialImageFileLoader.h"
12 
13 namespace VIDEO
14 {
19 {
20 public:
21  bool CanLoad(const std::string& specialType) const override;
22  std::unique_ptr<CTexture> Load(const std::string& specialType,
23  const std::string& filePath,
24  unsigned int preferredWidth,
25  unsigned int preferredHeight) const override;
26 };
27 
28 } // namespace VIDEO
An interface to load special image files into a texture for display.
Definition: SpecialImageFileLoader.h:26
Definition: Application.h:72
Generates a texture for a thumbnail of a video file, from a frame approx 1/3 into the video...
Definition: VideoGeneratedImageFileLoader.h:18