David Reid

Results 303 comments of David Reid

Thanks! Quick correction - dr_flac does *not* support MP4 encapsulation. Just FLAC and Ogg.

I'm not sure what would be causing these to get triggered. The `drmp3_L3_huffman()` function is from minimp3 which is what dr_mp3 wraps around and is not maintained by me. However,...

Closing this one. This is coming from minimp3 which I don't maintain. If it's ever fixed there I'll update dr_mp3.

This is something that's been requested before, and I'm open to the idea, but it's fairly low on my (long!) priority list. I was thinking it might be best to...

Transferred this one over to dr_libs.

No, unfortunately appending is not supported. The writing API was only really designed for basic use cases.

Yeah I'm not against adding support or anything. I'll mark this as a feature request and get to it when I can, but it could be a ways away.

Thanks for that sample code. I'll review this when I get a chance.

With dr_wav, you can use `drwav_init_*_ex()` and implement a callback for the `onChunk` parameter. That will then let you handle any chunk. See here for more info: https://github.com/mackron/dr_libs/blob/fc559fe440d9a1b1bdc6661ccd5b96e70cf00d7e/dr_wav.h#L407 For dr_mp3...

Yes, manual passing will be required. Reading in 4KB chunks shouldn't be necessary unless you have some unusual performance requirements. Need to be careful not to read beyond the chunk,...