diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-04-21 13:46:57 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-04-21 13:46:57 +0300 |
commit | bbbbc8e18879a5495be1cff78ca78be7a44ac25b (patch) | |
tree | cf24ab2e663e6a70250346328825f9c4a4eff45a /src/audio/player.h | |
parent | 8b12e6f56fddc4a10e74591ebf6d9af38a9f0bb5 (diff) |
iOS: Background audio; MP3/AAC playback
Diffstat (limited to 'src/audio/player.h')
-rw-r--r-- | src/audio/player.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/audio/player.h b/src/audio/player.h index 82d95fd2..8753d811 100644 --- a/src/audio/player.h +++ b/src/audio/player.h | |||
@@ -49,21 +49,21 @@ enum iPlayerTag { | |||
49 | void updateSourceData_Player (iPlayer *, const iString *mimeType, const iBlock *data, | 49 | void updateSourceData_Player (iPlayer *, const iString *mimeType, const iBlock *data, |
50 | enum iPlayerUpdate update); | 50 | enum iPlayerUpdate update); |
51 | 51 | ||
52 | iBool start_Player (iPlayer *); | 52 | iBool start_Player (iPlayer *); |
53 | void stop_Player (iPlayer *); | 53 | void stop_Player (iPlayer *); |
54 | void setPaused_Player (iPlayer *, iBool isPaused); | 54 | void setPaused_Player (iPlayer *, iBool isPaused); |
55 | void setVolume_Player (iPlayer *, float volume); | 55 | void setVolume_Player (iPlayer *, float volume); |
56 | void setFlags_Player (iPlayer *, int flags, iBool set); | 56 | void setFlags_Player (iPlayer *, int flags, iBool set); |
57 | void setNotIdle_Player (iPlayer *); | 57 | void setNotIdle_Player (iPlayer *); |
58 | 58 | ||
59 | int flags_Player (const iPlayer *); | 59 | int flags_Player (const iPlayer *); |
60 | const iString *tag_Player (const iPlayer *, enum iPlayerTag tag); | 60 | const iString *tag_Player (const iPlayer *, enum iPlayerTag tag); |
61 | iBool isStarted_Player (const iPlayer *); | 61 | iBool isStarted_Player (const iPlayer *); |
62 | iBool isPaused_Player (const iPlayer *); | 62 | iBool isPaused_Player (const iPlayer *); |
63 | float volume_Player (const iPlayer *); | 63 | float volume_Player (const iPlayer *); |
64 | float time_Player (const iPlayer *); | 64 | float time_Player (const iPlayer *); |
65 | float duration_Player (const iPlayer *); | 65 | float duration_Player (const iPlayer *); |
66 | float streamProgress_Player (const iPlayer *); /* normalized 0...1 */ | 66 | float streamProgress_Player (const iPlayer *); /* normalized 0...1 */ |
67 | 67 | ||
68 | uint32_t idleTimeMs_Player (const iPlayer *); | 68 | uint32_t idleTimeMs_Player (const iPlayer *); |
69 | iString * metadataLabel_Player (const iPlayer *); | 69 | iString * metadataLabel_Player (const iPlayer *); |