Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ESP32-audioI2S
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
ESP32-audioI2S
Commits
4fc9c9a5
Unverified
Commit
4fc9c9a5
authored
Oct 11, 2023
by
Wolle
Committed by
GitHub
Oct 11, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
larger buffer in case of psram
parent
095a1d78
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
30 deletions
+42
-30
src/Audio.cpp
src/Audio.cpp
+27
-27
src/Audio.h
src/Audio.h
+15
-3
No files found.
src/Audio.cpp
View file @
4fc9c9a5
...
...
@@ -5,8 +5,8 @@
*
* Created on: Oct 26.2018
*
* Version 3.0.7
b
* Updated on: Oct 1
0
.2023
* Version 3.0.7
c
* Updated on: Oct 1
1
.2023
* Author: Wolle (schreibfaul1)
*
*/
...
...
@@ -137,12 +137,13 @@ Audio::Audio(bool internalDAC /* = false */, uint8_t channelEnabled /* = I2S_SLO
#define __malloc_heap_psram(size) \
heap_caps_malloc_prefer(size, 2, MALLOC_CAP_DEFAULT | MALLOC_CAP_SPIRAM, MALLOC_CAP_DEFAULT | MALLOC_CAP_INTERNAL)
if
(
psramInit
())
m_chbufSize
=
4096
;
else
{
m_chbufSize
=
512
+
64
;}
m_ibuff
=
(
char
*
)
__malloc_heap_psram
(
512
+
64
)
;
m_f_psramFound
=
psramInit
()
;
if
(
m_f_psramFound
)
m_chbufSize
=
4096
;
else
m_chbufSize
=
512
+
64
;
if
(
m_f_psramFound
)
m_ibuffSize
=
4096
;
else
m_ibuffSize
=
512
+
64
;
m_lastHost
=
(
char
*
)
__malloc_heap_psram
(
512
);
m_outBuff
=
(
int16_t
*
)
__malloc_heap_psram
(
2048
*
2
*
sizeof
(
int16_t
));
m_chbuf
=
(
char
*
)
__malloc_heap_psram
(
m_chbufSize
);
m_ibuff
=
(
char
*
)
__malloc_heap_psram
(
m_ibuffSize
);
if
(
!
m_chbuf
||
!
m_lastHost
||
!
m_outBuff
||
!
m_ibuff
)
log_e
(
"oom"
);
...
...
@@ -973,8 +974,8 @@ void Audio::showID3Tag(const char* tag, const char* value) {
if
(
!
strcmp
(
tag
,
"XDOR"
))
sprintf
(
m_chbuf
,
"OriginalReleaseTime: %s"
,
value
);
latinToUTF8
(
m_chbuf
,
sizeof
(
m_chbuf
));
if
(
m_chbuf
[
0
]
!=
0
)
if
(
audio_id3data
)
audio_id3data
(
m_chbuf
);
if
(
indexOf
(
m_chbuf
,
"?xml"
,
0
)
>
0
)
{
showstreamtitle
(
m_chbuf
);
return
;}
if
(
m_chbuf
[
0
]
!=
0
){
if
(
audio_id3data
)
audio_id3data
(
m_chbuf
);}
}
//---------------------------------------------------------------------------------------------------------------------
void
Audio
::
unicode2utf8
(
char
*
buff
,
uint32_t
len
)
{
...
...
@@ -2321,11 +2322,8 @@ bool Audio::readPlayListData() {
;
}
pos
++
;
if
(
pos
==
511
)
{
pos
--
;
continue
;
}
if
(
pos
==
510
)
{
pl
[
pos
]
=
'\0'
;
}
if
(
pos
==
510
)
{
pos
--
;
continue
;}
if
(
pos
==
509
)
{
pl
[
pos
]
=
'\0'
;
}
if
(
ctl
==
chunksize
)
{
pl
[
pos
]
=
'\0'
;
break
;
...
...
@@ -2349,15 +2347,9 @@ bool Audio::readPlayListData() {
}
}
// inner while
if
(
startsWith
(
pl
,
"<!DOCTYPE"
))
{
AUDIO_INFO
(
"url is a webpage!"
);
goto
exit
;
}
if
(
startsWith
(
pl
,
"<html"
))
{
AUDIO_INFO
(
"url is a webpage!"
);
goto
exit
;
}
if
(
strlen
(
pl
)
>
0
)
m_playlistContent
.
push_back
(
strdup
((
const
char
*
)
pl
));
if
(
startsWith
(
pl
,
"<!DOCTYPE"
))
{
AUDIO_INFO
(
"url is a webpage!"
);
goto
exit
;}
if
(
startsWith
(
pl
,
"<html"
))
{
AUDIO_INFO
(
"url is a webpage!"
);
goto
exit
;}
if
(
strlen
(
pl
)
>
0
)
m_playlistContent
.
push_back
(
x_strdup
(
pl
));
if
(
m_playlistContent
.
size
()
==
100
)
{
if
(
m_f_Log
)
log_i
(
"the maximum number of lines in the playlist has been reached"
);
break
;
...
...
@@ -3224,7 +3216,7 @@ void Audio::processWebStreamTS() {
//---------------------------------------------------------------------------------------------------------------------
void
Audio
::
processWebStreamHLS
()
{
const
uint16_t
maxFrameSize
=
InBuff
.
getMaxBlockSize
();
// every mp3/aac frame is not bigger
const
uint16_t
ID3BuffSize
=
1024
;
uint16_t
ID3BuffSize
=
1024
;
if
(
m_f_psramFound
)
ID3BuffSize
=
4096
;
uint32_t
availableBytes
;
// available bytes in stream
static
bool
f_stream
;
// first audio data received
static
bool
firstBytes
;
...
...
@@ -3815,9 +3807,11 @@ void Audio::showstreamtitle(const char* ml) {
int16_t
idx1
,
idx2
,
idx4
,
idx5
,
idx6
,
idx7
,
titleLen
=
0
,
artistLen
=
0
;
uint16_t
i
=
0
,
hash
=
0
;
idx1
=
indexOf
(
ml
,
"StreamTitle="
,
0
);
// Streamtitle found
idx1
=
indexOf
(
ml
,
"StreamTitle="
,
0
);
// Streamtitle found
if
(
idx1
<
0
)
idx1
=
indexOf
(
ml
,
"Title:"
,
0
);
// Title found (e.g. https://stream-hls.bauermedia.pt/comercial.aac/playlist.m3u8)
if
(
idx1
>=
0
)
{
if
(
indexOf
(
ml
,
"xml version="
,
12
)
>
0
)
{
if
(
indexOf
(
ml
,
"xml version="
,
7
)
>
0
)
{
/* e.g. xmlStreamTitle
StreamTitle='<?xml version="1.0" encoding="utf-8"?><RadioInfo><Table><DB_ALBUM_ID>37364</DB_ALBUM_ID>
<DB_ALBUM_IMAGE>00000037364.jpg</DB_ALBUM_IMAGE><DB_ALBUM_NAME>Boyfriend</DB_ALBUM_NAME>
...
...
@@ -3859,9 +3853,15 @@ void Audio::showstreamtitle(const char* ml) {
title
[
titleLen
+
3
+
artistLen
]
=
'\0'
;
}
if
(
title
)
if
(
audio_showstreamtitle
)
audio_showstreamtitle
(
title
);
if
(
title
)
{
if
(
title
){
while
(
i
<
strlen
(
title
))
{
hash
+=
title
[
i
]
*
i
+
1
;
i
++
;
}
if
(
m_streamTitleHash
!=
hash
)
{
m_streamTitleHash
=
hash
;
if
(
audio_showstreamtitle
)
audio_showstreamtitle
(
title
);
}
free
(
title
);
title
=
NULL
;
}
...
...
src/Audio.h
View file @
4fc9c9a5
...
...
@@ -3,8 +3,8 @@
*
* Created on: Oct 28,2018
*
* Version 3.0.7
b
* Updated on: Oct 1
0
.2023
* Version 3.0.7
c
* Updated on: Oct 1
1
.2023
* Author: Wolle (schreibfaul1)
*/
...
...
@@ -404,7 +404,17 @@ private:
hash
+=
(
str
[
i
]
-
31
)
*
i
*
32
;
}
return
hash
;
}
}
char
*
x_strdup
(
const
char
*
str
){
if
(
m_f_psramFound
){
char
*
s
=
(
char
*
)
ps_malloc
(
strlen
(
str
)
+
1
);
strcpy
(
s
,
str
);
return
s
;
}
else
{
return
strdup
(
str
);
}
}
private:
const
char
*
codecname
[
10
]
=
{
"unknown"
,
"WAV"
,
"MP3"
,
"AAC"
,
"M4A"
,
"FLAC"
,
"AACP"
,
"OPUS"
,
"OGG"
,
"VORBIS"
};
...
...
@@ -466,6 +476,7 @@ private:
char
*
m_ibuff
=
nullptr
;
// used in audio_info()
char
*
m_chbuf
=
NULL
;
uint16_t
m_chbufSize
=
0
;
// will set in constructor (depending on PSRAM)
uint16_t
m_ibuffSize
=
0
;
// will set in constructor (depending on PSRAM)
char
*
m_lastHost
=
NULL
;
// Store the last URL to a webstream
char
*
m_playlistBuff
=
NULL
;
// stores playlistdata
const
uint16_t
m_plsBuffEntryLen
=
256
;
// length of each entry in playlistBuff
...
...
@@ -538,6 +549,7 @@ private:
bool
m_f_continue
=
false
;
// next m3u8 chunk is available
bool
m_f_ts
=
true
;
// transport stream
bool
m_f_m4aID3dataAreRead
=
false
;
// has the m4a-ID3data already been read?
bool
m_f_psramFound
=
false
;
// set in constructor, result of psramInit()
uint8_t
m_f_channelEnabled
=
3
;
// internal DAC, both channels
uint32_t
m_audioFileDuration
=
0
;
float
m_audioCurrentTime
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment