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
5138c7cd
Unverified
Commit
5138c7cd
authored
Apr 06, 2023
by
Wolle
Committed by
GitHub
Apr 06, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Preparation for a new decoder
parent
e981b046
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
src/vorbis_decoder/vorbis_decoder.h
src/vorbis_decoder/vorbis_decoder.h
+19
-0
No files found.
src/vorbis_decoder/vorbis_decoder.h
0 → 100644
View file @
5138c7cd
//**************************
// D U M M Y
//**************************
#pragma once
#include <stdint.h>
void
VORBISDecoder_FreeBuffers
(){;}
int
VORBISDecoder_AllocateBuffers
(){
return
0
;}
int
VORBISFindSyncWord
(
uint8_t
*
data
,
uint16_t
len
){
return
0
;}
int
VORBISGetSampRate
(){
return
0
;}
int
VORBISGetBitsPerSample
(){
return
0
;}
int
VORBISGetBitRate
(){
return
0
;}
int
VORBISDecode
(
uint8_t
*
data
,
int
*
bytesLeft
,
int16_t
*
m_outBuff
){
return
0
;}
int
VORBISGetOutputSamps
(){
return
0
;}
char
*
VORBISgetStreamTitle
(){
return
nullptr
;}
\ No newline at end of file
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