adpcm_slin_ex.h 772 B

1234567891011121314151617181920212223242526
  1. /*
  2. * adpcm_slin_ex.h --
  3. *
  4. * 4-bit ADPCM data, 20 milliseconds worth at 8 kHz.
  5. *
  6. * Source: g723.example
  7. *
  8. * Copyright (C) 2001, Linux Support Services, Inc.
  9. *
  10. * Distributed under the terms of the GNU General Public License
  11. *
  12. */
  13. static unsigned char adpcm_slin_ex[] = {
  14. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  15. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  16. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  17. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  18. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  19. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  20. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  21. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  22. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  23. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
  24. };