I'm writing an MPEG Header reader and some of my files have a CRC, 2 Bytes, directly following the header. I need to calculate the CRC so I can compare it to validate I'm reading the correct frame header. I need and example of the CRC-16 algorithm using polynom 0x8005. I don't understand the algorithm I need to use. Thanks.
Asked
Active
Viewed 737 times
0
-
Take a look at [here](http://www.lammertbies.nl/comm/info/crc-calculation.html). – Pedram Dec 08 '15 at 16:31
-
http://stackoverflow.com/q/22860356/1070452 There are actually quite a few implementations here...put your google to work – Ňɏssa Pøngjǣrdenlarp Dec 08 '15 at 16:31
-
This answer might be helpful: http://stackoverflow.com/questions/22860356/how-to-generate-a-crc-16-from-c-sharp If you've already read this, could you explain more about what specifically you don't understand? – TheInnerLight Dec 08 '15 at 16:32
-
Thanks for the links guys. This helps a lot. – NPS Dec 08 '15 at 16:40