pan, pitch, loop

This commit is contained in:
snt 2024-04-18 02:17:09 +02:00
parent 5d57eb705a
commit ba9fcfadeb
12 changed files with 196 additions and 51 deletions

View file

@ -5,7 +5,7 @@
#define COPYRIGHT "(C) 2014-2024 Santi Norena lms@criptomart.net"
#define LICENSE "GPL 3 License. See LICENSE.txt and credits.txt for details"
#define LAYERS_NUMBER 3
#define LAYERS_NUMBER 4 // esto tiene que desaparecer
#define DEFAULT_FILE "lms-audio.xlm"
@ -29,7 +29,7 @@ const int BufferSize = 262144;
#define TOTAL_TIME_LABEL "Total"
#define FILE_LABEL "File:"
#define FOLDER_LABEL "Folder:"
#define STATUS_LABEL " Status: "
#define STATUS_LABEL "Status: "
#define NOTIFY_INTERVAL 150
#define PULL_TIMER_INTERVAL 10
@ -59,9 +59,10 @@ struct MediaFolder {
enum Status
{
Stopped, ///< Sound is not playing
Paused, ///< Sound is paused
Playing ///< Sound is playing
Stopped,
Paused,
PlayingOnce,
PlayingLoop,
};
#endif // DEFINES_H