00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef AVCODEC_AMR_H
00024 #define AVCODEC_AMR_H
00025
00026 #include <string.h>
00027
00028 #include "avcodec.h"
00029
00030 #ifdef AMR_USE_16BIT_TABLES
00031 #define R_TABLE_TYPE uint16_t
00032 #else
00033 #define R_TABLE_TYPE uint8_t
00034 #endif
00035
00051 static inline void ff_amr_bit_reorder(uint16_t *out, int size,
00052 const uint8_t *data,
00053 const R_TABLE_TYPE *ord_table)
00054 {
00055 int field_size;
00056
00057 memset(out, 0, size);
00058 while ((field_size = *ord_table++)) {
00059 int field = 0;
00060 int field_offset = *ord_table++;
00061 while (field_size--) {
00062 int bit = *ord_table++;
00063 field <<= 1;
00064 field |= data[bit >> 3] >> (bit & 7) & 1;
00065 }
00066 out[field_offset >> 1] = field;
00067 }
00068 }
00069
00070 #endif