summaryrefslogtreecommitdiff
path: root/src/audio/audio_decoder.cpp
AgeCommit message (Collapse)Author
2024-05-02WIP merge cyclically dependent components into one big componentjacqueline
2024-05-02Replace cpp::span shim with std::spanjacqueline
2024-03-26pass stream start/update/end events through the whole pipelinejacqueline
2024-03-25WIP rewrie audio pipeline+fsm guts for more reliabilityjacqueline
2024-02-28basic working flac and mp3 seekingjacqueline
flac impl is fairly slow as it doesn't use the seek tables; for some reason miniflac seems to get *really* upset if you seek the stream.
2024-02-22WIP: Flac not working-- coming back to this laterailurux
2024-02-16WIP: seeking in lua exampleailurux
2024-02-16Seeking working with hardcoded event, wav onlyailurux
2024-02-15Added offset for track seeking, wav impl. only rnailurux
2024-02-06send a time=0 progress update after opening each filejacqueline
this helps populate things like the now playing screen when a file is opened without unpausing (e.g. when restoring a saved queue after boot)
2024-02-05tweak pipeline buffers rather than i2s dma bufferjacqueline
this maintains the bluetooth changes to buffer sizes, but keeps the most important i2s buffer the same size
2024-01-18fix issues with some song info not appearingjacqueline
2023-11-24Migrate 'now playing' screen to luajacqueline
2023-11-20Don't start readahead until parsing the stream's header is finishedjacqueline
...but also disable readahead for now anyway, since it's unstable
2023-10-28Annotates the kTag with maybe_unused; they're only used for logging.Robin Howard
2023-10-16Codec memory tweaksjacqueline
- Ensure mad and ogg structs are allocated internally - Free old codec before making a new one
2023-09-28Use bindey for databinding instead of hand rolling ui updatesjacqueline
2023-09-26Tune buffer sizes and locations for I2Sjacqueline
2023-09-25Unpin decoder taskjacqueline
2023-09-22Increase sample buffer sizesjacqueline
2023-09-05Move UI task to priority 0 during playbackjacqueline
Also other misc task cleanup
2023-08-25Performance tweaks for smoother tunesjacqueline
- Pin the decoder task to APP_CORE to reduce context switches - Increase sample buffer sizes
2023-08-16Rename the main audio tasks to be more sensiblejacqueline
2023-08-16clean up a bunch of obselete audio codejacqueline
2023-07-07wire up the playing screen with some real datajacqueline
Includes implementing song duration calculation for CBR MP3 files
2023-06-21Fix spurious stream startsjacqueline
2023-06-19back to back flac playback is working :)jacqueline
2023-06-19Support playing tracks by track idjacqueline
2023-06-15Remove chatty logginjacqueline
2023-06-15Add vorbis and flac decoders, flesh out codec interfacejacqueline
vorbis doesn't quite work yet, not sure why. will pick it up again later.
2023-06-07Do some prep cleanup for multiple filetypesjacqueline
2023-06-07Flesh out audio state machine for playbackjacqueline
Also fix mono playback
2023-06-06Get basic audio playback going againjacqueline
2023-05-23Annote E V E R Y T H I N G with license infojacqueline
2023-04-19Pipeline working and outputting correctly, but noisyjacqueline
2023-04-19Ensure the sink buffer is large enough to not fully drain duringjacqueline
playback
2023-04-19WIP track down new pipeline memory issuesjacqueline
2023-04-19Redo pcm registers to include pagesjacqueline
2023-04-19new pipeline working(?), but the dac eludes mejacqueline
2023-04-19New pipeline building, still needs proper controljacqueline
2023-04-19mostly single task pipelinejacqueline
2023-02-21Tidy up pipeline and use arena capacity to test for overrunsjacqueline
2023-02-21Add a memory arena for the audio pipelinejacqueline
2023-02-14Use the sync apis for I2S outputjacqueline
2023-02-10Mostly working pipeline, including proper EOF signallingjacqueline
2023-02-05fix pipeline heap corruption and chunk ignoresjacqueline
2023-01-30Continue ironing out i2s pipelinejacqueline
still at least one heap corruption issue, plus the i2s write method seems to block forever :/
2023-01-27pipeline memory management fixes + loggingjacqueline
2023-01-26Make StreamInfo a PDOjacqueline
2023-01-26Fix memory leak, re-enable play command (it doesnt work lol)jacqueline