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.
11 #include "imagefiles/SpecialImageFileLoader.h"
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
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