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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/*
* Copyright (C) 2005-2020 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#pragma once
#ifndef C_API_ADDONINSTANCE_AUDIO_DECODER_H
#define C_API_ADDONINSTANCE_AUDIO_DECODER_H
#include "../addon_base.h"
#include "../audio_engine.h"
#define AUDIO_DECODER_LYRICS_SIZE 65535
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */
// WARNING About size use malloc/new!
struct AUDIO_DECODER_INFO_TAG
{
char title[ADDON_STANDARD_STRING_LENGTH_SMALL];
char artist[ADDON_STANDARD_STRING_LENGTH_SMALL];
char album[ADDON_STANDARD_STRING_LENGTH_SMALL];
char album_artist[ADDON_STANDARD_STRING_LENGTH_SMALL];
char media_type[ADDON_STANDARD_STRING_LENGTH_SMALL];
char genre[ADDON_STANDARD_STRING_LENGTH_SMALL];
int duration;
int track;
int disc;
char disc_subtitle[ADDON_STANDARD_STRING_LENGTH_SMALL];
int disc_total;
char release_date[ADDON_STANDARD_STRING_LENGTH_SMALL];
char lyrics[AUDIO_DECODER_LYRICS_SIZE];
int samplerate;
int channels;
int bitrate;
char comment[ADDON_STANDARD_STRING_LENGTH];
};
typedef struct AddonProps_AudioDecoder
{
int dummy;
} AddonProps_AudioDecoder;
typedef struct AddonToKodiFuncTable_AudioDecoder
{
KODI_HANDLE kodiInstance;
} AddonToKodiFuncTable_AudioDecoder;
struct AddonInstance_AudioDecoder;
typedef struct KodiToAddonFuncTable_AudioDecoder
{
KODI_HANDLE addonInstance;
bool(__cdecl* init)(const struct AddonInstance_AudioDecoder* instance,
const char* file,
unsigned int filecache,
int* channels,
int* samplerate,
int* bitspersample,
int64_t* totaltime,
int* bitrate,
enum AudioEngineDataFormat* format,
const enum AudioEngineChannel** info);
int(__cdecl* read_pcm)(const struct AddonInstance_AudioDecoder* instance,
uint8_t* buffer,
int size,
int* actualsize);
int64_t(__cdecl* seek)(const struct AddonInstance_AudioDecoder* instance, int64_t time);
bool(__cdecl* read_tag)(const struct AddonInstance_AudioDecoder* instance,
const char* file,
struct AUDIO_DECODER_INFO_TAG* tag);
int(__cdecl* track_count)(const struct AddonInstance_AudioDecoder* instance, const char* file);
} KodiToAddonFuncTable_AudioDecoder;
typedef struct AddonInstance_AudioDecoder
{
struct AddonProps_AudioDecoder* props;
struct AddonToKodiFuncTable_AudioDecoder* toKodi;
struct KodiToAddonFuncTable_AudioDecoder* toAddon;
} AddonInstance_AudioDecoder;
#ifdef __cplusplus
} /* extern "C" */
#endif /* __cplusplus */
#endif /* !C_API_ADDONINSTANCE_AUDIO_DECODER_H */
|