amr.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Shared functions between AMR codecs
  3. *
  4. * Copyright (c) 2010 Marcelo Galvao Povoa
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #ifndef AVCODEC_AMR_H
  23. #define AVCODEC_AMR_H
  24. #include <string.h>
  25. #include "avcodec.h"
  26. #ifdef AMR_USE_16BIT_TABLES
  27. typedef uint16_t R_TABLE_TYPE;
  28. #else
  29. typedef uint8_t R_TABLE_TYPE;
  30. #endif
  31. /**
  32. * Fill the frame structure variables from bitstream by parsing the
  33. * given reordering table that uses the following format:
  34. *
  35. * Each field (16 bits) in the AMR Frame is stored as:
  36. * - one byte for the number of bits in the field
  37. * - one byte for the field index
  38. * - then, one byte for each bit of the field (from most-significant to least)
  39. * of the position of that bit in the AMR frame.
  40. *
  41. * @param out pointer to the frame struct
  42. * @param size the size in bytes of the frame struct
  43. * @param data input bitstream after the frame header
  44. * @param ord_table the reordering table as above
  45. */
  46. static inline void ff_amr_bit_reorder(uint16_t *out, int size,
  47. const uint8_t *data,
  48. const R_TABLE_TYPE *ord_table)
  49. {
  50. int field_size;
  51. memset(out, 0, size);
  52. while ((field_size = *ord_table++)) {
  53. int field = 0;
  54. int field_offset = *ord_table++;
  55. while (field_size--) {
  56. int bit = *ord_table++;
  57. field <<= 1;
  58. field |= data[bit >> 3] >> (bit & 7) & 1;
  59. }
  60. out[field_offset >> 1] = field;
  61. }
  62. }
  63. #endif /* AVCODEC_AMR_H */