1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
/*
* Copyright (C) 2013 Arne Morten Kvarving
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#pragma once
#include "addons/IAddonSupportCheck.h"
#include "addons/binary-addons/AddonInstanceHandler.h"
#include "addons/kodi-dev-kit/include/kodi/addon-instance/ImageDecoder.h"
#include "guilib/iimage.h"
class CPictureInfoTag;
namespace KODI
{
namespace ADDONS
{
class CImageDecoder : public ADDON::IAddonInstanceHandler,
public KODI::ADDONS::IAddonSupportCheck,
public IImage
{
public:
explicit CImageDecoder(const ADDON::AddonInfoPtr& addonInfo, const std::string& mimetype);
~CImageDecoder() override;
bool IsCreated() const { return m_created; }
/*! @ref IImage related functions */
///@{
bool CreateThumbnailFromSurface(unsigned char*,
unsigned int,
unsigned int,
unsigned int,
unsigned int,
const std::string&,
unsigned char*&,
unsigned int&) override
{
return false;
}
bool LoadImageFromMemory(unsigned char* buffer,
unsigned int bufSize,
unsigned int width,
unsigned int height) override;
bool Decode(unsigned char* const pixels,
unsigned int width,
unsigned int height,
unsigned int pitch,
unsigned int format) override;
///@}
/*! From @ref CPictureInfoTag used function to get information from addon */
///@{
bool LoadInfoTag(const std::string& fileName, CPictureInfoTag* tag);
///@}
/*! @ref KODI::ADDONS::IAddonSupportCheck related function */
///@{
bool SupportsFile(const std::string& filename) override;
///@}
private:
/*! @note m_mimetype not set in all cases, only available if @ref LoadImageFromMemory is used. */
const std::string m_mimetype;
bool m_created{false};
};
} /* namespace ADDONS */
} /* namespace KODI */
|