-
Notifications
You must be signed in to change notification settings - Fork 21
/
opencore-amr.patch
29 lines (27 loc) · 939 Bytes
/
opencore-amr.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
https://android-review.googlesource.com/298277
https://android.googlesource.com/platform/frameworks/av/+log/master/media/libstagefright/codecs/amrwb
https://github.com/mstorsjo/platform_external_opencore
https://sourceforge.net/p/opencore-amr/code/
--- opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/mime_io.cpp (OpenCORE-AMR 0.1.3)
+++ opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/mime_io.cpp (working copy)
@@ -655,14 +647,19 @@ void mime_unsorting(uint8 unsorted_bits[
}
}
- if (unpacked_size[*mode] % 4)
+ temp = *unsorted_bits_ptr; /* convert the remaining 0 to 7 bits */
+ for (i = unpacked_size[*mode] % 8; i != 0; i--)
{
- temp <<= 1;
-
if (temp & 0x80)
{
sorted_bits_into_int16[*(pt_AmrWbSortingTables++)] = BIT_1;
}
+ else
+ {
+ pt_AmrWbSortingTables++;
+ }
+
+ temp <<= 1;
}
/* set frame type */