Reimar Döffinger
Reimar Döffinger
I assume this is a duplicate of #159 (which I hope to also close soon) and will thus close.
Do you have more detail? On very old phones, the issue might be that github uses a newer SSL certificate that these phones do not support. Download via a thirdparty...
For the translation dictionaries there is the 2 arrow symbol on the bottom that switches the translation direction. I am not sure if that is what you meant. I could...
So far (besides having little time to implement anything) I have not really thought of a way this could be implemented without using up much UI space, being intuitive to...
Note that I think -DBOOST_MATH_PROMOTE_DOUBLE_POLICY=false is a better option than disabling long double functions in general
Looks like the bits are in reverse for the input bytes, so you'd have to create a AV_CRC_16_CCITT_LE in the same way as there is e.g. a AV_CRC_16_ANSI_LE. Might still...
The doesn't seem right. First of all, the init value in the spec you showed clearly shows 0xffff as initialization value, so why should 0x0F1D be correct? Also by your...
Below is a code that reads from a file and applies the algorithm from the spec, I suggest you compare against that: ``` #include #include #include #define MAX_SIZE (100 *...
Here is a variant that gives matching results for FFmpeg and the code in the spec. I think the spec authors did not understand CRCs and init values though, but...
Surely too late to fix, but the "fix" to the spec code would be to remove the 2 byte 0 padding and change the crc update line to: crc =...