diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 18:07:22 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 18:07:22 +0000 |
commit | c04dcc2e7d834218ef2d4194331e383402495ae1 (patch) | |
tree | 7333e38d10d75386e60f336b80c2443c1166031d /xbmc/addons/AudioDecoder.h | |
parent | Initial commit. (diff) | |
download | kodi-c04dcc2e7d834218ef2d4194331e383402495ae1.tar.xz kodi-c04dcc2e7d834218ef2d4194331e383402495ae1.zip |
Adding upstream version 2:20.4+dfsg.upstream/2%20.4+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | xbmc/addons/AudioDecoder.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/xbmc/addons/AudioDecoder.h b/xbmc/addons/AudioDecoder.h new file mode 100644 index 0000000..7e2424e --- /dev/null +++ b/xbmc/addons/AudioDecoder.h @@ -0,0 +1,50 @@ +/* + * 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/IAddonSupportList.h" +#include "addons/binary-addons/AddonInstanceHandler.h" +#include "addons/kodi-dev-kit/include/kodi/addon-instance/AudioDecoder.h" +#include "cores/paplayer/ICodec.h" +#include "filesystem/MusicFileDirectory.h" +#include "music/tags/ImusicInfoTagLoader.h" + +namespace KODI +{ +namespace ADDONS +{ + +class CAudioDecoder : public ADDON::IAddonInstanceHandler, + public IAddonSupportCheck, + public ICodec, + public MUSIC_INFO::IMusicInfoTagLoader, + public XFILE::CMusicFileDirectory +{ +public: + explicit CAudioDecoder(const ADDON::AddonInfoPtr& addonInfo); + ~CAudioDecoder() override; + + // Things that MUST be supplied by the child classes + bool CreateDecoder(); + bool Init(const CFileItem& file, unsigned int filecache) override; + int ReadPCM(uint8_t* buffer, size_t size, size_t* actualsize) override; + bool Seek(int64_t time) override; + bool CanInit() override { return true; } + bool Load(const std::string& strFileName, + MUSIC_INFO::CMusicInfoTag& tag, + EmbeddedArt* art = nullptr) override; + int GetTrackCount(const std::string& strPath) override; + bool SupportsFile(const std::string& filename) override; + +private: + bool m_hasTags; +}; + +} /* namespace ADDONS */ +} /* namespace KODI */ |