[videodb] remove unused seasons table from episode_view
[xbmc.git] / xbmc / video / VideoGeneratedImageFileLoader.h
blob61db1d1667feed3334618fefb9a6bff06186882a
1 /*
2 * Copyright (C) 2023 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 "imagefiles/SpecialImageFileLoader.h"
13 namespace KODI::VIDEO
15 /*!
16 * @brief Generates a texture for a thumbnail of a video file, for a specific chapter
17 * or from a frame approx 1/3 into the video.
19 class CVideoGeneratedImageFileLoader : public IMAGE_FILES::ISpecialImageFileLoader
21 public:
22 bool CanLoad(const std::string& specialType) const override;
23 std::unique_ptr<CTexture> Load(const IMAGE_FILES::CImageFileURL& imageFile) const override;
26 } // namespace KODI::VIDEO