Advertisement
Guest User

Untitled

a guest
Apr 26th, 2011
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. static const uint8_t conv_xcch_next_output[][2] = {
  2. { 0, 3 }, { 1, 2 }, { 0, 3 }, { 1, 2 },
  3. { 3, 0 }, { 2, 1 }, { 3, 0 }, { 2, 1 },
  4. { 3, 0 }, { 2, 1 }, { 3, 0 }, { 2, 1 },
  5. { 0, 3 }, { 1, 2 }, { 0, 3 }, { 1, 2 },
  6. };
  7.  
  8. static const uint8_t conv_xcch_next_state[][2] = {
  9. { 0, 1 }, { 2, 3 }, { 4, 5 }, { 6, 7 },
  10. { 8, 9 }, { 10, 11 }, { 12, 13 }, { 14, 15 },
  11. { 0, 1 }, { 2, 3 }, { 4, 5 }, { 6, 7 },
  12. { 8, 9 }, { 10, 11 }, { 12, 13 }, { 14, 15 },
  13. };
  14.  
  15. const struct conv_code conv_xcch = {
  16. .N = 2,
  17. .K = 5,
  18. .len = 224,
  19. .next_output = conv_xcch_next_output,
  20. .next_state = conv_xcch_next_state,
  21. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement