-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix RPU header parsing for Profile 7 #133
Conversation
What would lead to believe this is actually in the bitstream? |
We don’t know why
My comment in code may cause confusion, sorry about that, the |
NLQ things only exist in profiles with EL, and profile 8 bitstream doesn’t have it. |
The changes don't seem to work with values other than zero. |
Current value in profile 4/7 is 0 and 1023, it should be able to read and write other values, while the convert_to_mel uses hardcoded |
It works with |
fel_to_mel_parsed_mode1.bin.zip
|
Well yes, it works in |
Will try to find what's happening later. |
The first pivot value seems to always need to be zero. Maybe we should validate that the array matches [0, x <= 2^bitdepth - 1] |
Add the missing nlq_pred_pivot_value for it.
We forgot an important thing: it is used to derive |
Ah yea, that makes a lot more sense. Thanks. |
Seems fine to merge, I'll fix the rest myself. |
Add the missing nlq_pred_pivot_value for it.
Fix #131 #132, sorry for forgetting to check tests.