Martijn van Beurden
Martijn van Beurden
Is there any difference to `metaflac --export-tags-to=-` or was that option unknown to you?
I'd rather not duplicate functionality. I see two ways to do this. 1. drop most of this patch, and simply add text to the man page for option `--show-tag` suggesting...
@harridu Are you still planning to do anything with this PR?
I added a commit simplifying this PR. Note to self: I still need to add a test for `--export-tags-to=-` and `--show-all-tags`, but that would conflict with #504, so I should...
So much for using native autoconf macro's instead of simple `test`. Didn't notice that part of the documentation about cross-compiling. I'll probably fix this by replacing AC_CHECK_FILE with `test`
I think I've found the cause of this problem. The fix is rather simple but will hamper performance. I'll explain. In 5 instances in dr_flac, a runtime choice is made...
The libFLAC *encoder* has special provisions to make encoded files that keep the libFLAC *decoder* in the 32-bit datapath by restricting the maximal `lpcPrecision` used when dealing with subframes with...
I understand this is a difficult problem. The choice is between a faster approach that might fail a few very extreme samples or one that is guaranteed to work but...
~Code in my last post was still off by one bit. This seems better~ ``` drflac_uint32 ilog2SumAbsCoefficient = 0; ``` ~and~ ``` if (sumAbsCoefficient > 0) { ilog2SumAbsCoefficient = (31...