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.

63 lines
2.2KB

  1. /*
  2. * Copyright (C) 2007 FFmpeg Project
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg 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. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "xiph.h"
  21. int ff_split_xiph_headers(uint8_t *extradata, int extradata_size,
  22. int first_header_size, uint8_t *header_start[3],
  23. int header_len[3])
  24. {
  25. int i;
  26. if (extradata_size >= 6 && AV_RB16(extradata) == first_header_size) {
  27. int overall_len = 6;
  28. for (i=0; i<3; i++) {
  29. header_len[i] = AV_RB16(extradata);
  30. extradata += 2;
  31. header_start[i] = extradata;
  32. extradata += header_len[i];
  33. if (overall_len > extradata_size - header_len[i])
  34. return -1;
  35. overall_len += header_len[i];
  36. }
  37. } else if (extradata_size >= 3 && extradata_size < INT_MAX - 0x1ff && extradata[0] == 2) {
  38. int overall_len = 3;
  39. extradata++;
  40. for (i=0; i<2; i++, extradata++) {
  41. header_len[i] = 0;
  42. for (; overall_len < extradata_size && *extradata==0xff; extradata++) {
  43. header_len[i] += 0xff;
  44. overall_len += 0xff + 1;
  45. }
  46. header_len[i] += *extradata;
  47. overall_len += *extradata;
  48. if (overall_len > extradata_size)
  49. return -1;
  50. }
  51. header_len[2] = extradata_size - overall_len;
  52. header_start[0] = extradata;
  53. header_start[1] = header_start[0] + header_len[0];
  54. header_start[2] = header_start[1] + header_len[1];
  55. } else {
  56. return -1;
  57. }
  58. return 0;
  59. }