You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.6KB

  1. /*
  2. * WavPack shared functions
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * Libav is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <stdint.h>
  21. #include <string.h>
  22. #include "libavutil/common.h"
  23. #include "libavutil/intreadwrite.h"
  24. #include "wv.h"
  25. int ff_wv_parse_header(WvHeader *wv, const uint8_t *data)
  26. {
  27. memset(wv, 0, sizeof(*wv));
  28. if (AV_RL32(data) != MKTAG('w', 'v', 'p', 'k'))
  29. return AVERROR_INVALIDDATA;
  30. wv->blocksize = AV_RL32(data + 4);
  31. if (wv->blocksize < 24 || wv->blocksize > WV_BLOCK_LIMIT)
  32. return AVERROR_INVALIDDATA;
  33. wv->blocksize -= 24;
  34. wv->version = AV_RL16(data + 8);
  35. wv->total_samples = AV_RL32(data + 12);
  36. wv->block_idx = AV_RL32(data + 16);
  37. wv->samples = AV_RL32(data + 20);
  38. wv->flags = AV_RL32(data + 24);
  39. wv->crc = AV_RL32(data + 28);
  40. wv->initial = !!(wv->flags & WV_FLAG_INITIAL_BLOCK);
  41. wv->final = !!(wv->flags & WV_FLAG_FINAL_BLOCK);
  42. return 0;
  43. }