| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
This reverts commit 923f3e95f3e332d26f03cf6782f0ab61596ceef2.
The optimized version differed from the original in a few cases
(in some cases where the return value turned out to be negative
while the original implementation returned a positive value),
so revert it for now until it has been analyzed completely.
|
| |
|
|
|
|
| |
This speeds up HE-AACv2 encoding from 3.85 s to 3.42 s on a Core i7.
|
|\ |
|
| |\ |
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
aac project forces the system not to include sys/types.h by defining
_SYS_TYPES_H_. This is a workaround for broken android toolchain.
This is no longer needed in latest android version and can be safely
removed. This will also lead to more errors if changes in bionic
headers are needed.
Change-Id: Icb76c207d6b47e811eacff9f9403177629bfb451
Signed-off-by: Irina Tirdea <irina.tirdea@intel.com>
|
| |\
| | |
| | |
| | | |
assembly constructs."
|
| | |
| | |
| | |
| | |
| | |
| | | |
constructs.
Change-Id: I47509c20ee32f04ce42105563d2d4013910da531
|
| |\ \
| | |/
| |/| |
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Shifting by more than (or equal to) the variable length is
undefined in C.
This caused the quantized spectrum values to go out of range,
triggering asserts later.
Change-Id: If81b6c8caa7b9c75941ad9d280b686d2069c968c
|
| |
| |
| |
| |
| | |
When the shift overflowed, asserts were triggered later, where
the values were assumed to be non-negative.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The library contains architecture specific versions of the clz functions
for arm and mips, but the fallback C version for other architectures is
pretty slow.
By using __builtin_clz on GCC (available since GCC 3.4), we get a
significant (20-40 %) speedup of the total running time on x86.
Speed difference: 5.1 s instead of 8.6 s for AAC-LC 128 kbit/s and
3.8 s instead of 4.9 s for HE-AACv2 32 kbit/s, on an i7.
|
| |
| |
| |
| |
| | |
When the addition overflowed, asserts were triggered later, where
the values were assumed to be non-negative.
|
| | |
|
| |
| |
| |
| |
| | |
Shifting by more than (or equal to) the variable length is
undefined in C.
|
| |
| |
| |
| | |
These additions can overflow, triggering assertions later.
|
|\| |
|
| |\ |
|
| |/
| |
| |
| |
| |
| | |
Mingw32 doesn't define the __int64 types.
Change-Id: Ia45add37be1bf85abde664fd6e382334a6bb4498
|
|
|
|
| |
Change-Id: If584e579464f28b97d50e51fc76ba654a5536c54
|
| |
|
| |
|
|
|
|
|
|
| |
By default automake thinks the project is part of GNU and enforces the
presence of some files. By declaring the project foreign, we can
remove the 0-sized files.
|
|
|
|
| |
Change-Id: Icc9c9ded1142232b5030183f2a653ee7cef632b5
|
| |
|
|
|
|
|
| |
This simply means the comments are not copied into the executed
configure script.
|
|
|
|
| |
Unless configure uses $host there is no reason to call it directly.
|
|
|
|
| |
Change-Id: If139d0d1cf6f9fdfb0ebc477d2152b9f5f49f566
|
|
|
|
| |
Mingw32 doesn't define the __int64 types.
|
| |
|
|
|
|
|
|
|
| |
While the source is C++, it doesn't use anything from the C++
runtime, so by building with -fno-exceptions -fno-rtti, the
dynamic library doesn't have to be linked to libstdc++. This
also simplifies things for users of the static library.
|
|
|
|
| |
These correspond to different VBR modes.
|
| |
|
| |
|
|
|
|
|
|
| |
This avoids name clashes with the similarly named files in
libSBRdec, when building all libraries with one single
automake file.
|
| |
|
| |
|
| |
|
|
|
|
| |
Change-Id: If97c7482bffaab4a21cd2fb8341f2939f19d3bbd
|
|
|
|
| |
Change-Id: I9d9ab17121e2db58f8a4ba4b40e14cab629b1a7e
|
|
|
|
|
|
|
|
|
| |
Change-Id: I42a702487e6db4953dca0027710ea4fe266052fd
Also:
- Removed dead code in several source files.
- Minor changes in comments.
- No functional changes. No changes in executed code.
- Added documentation PDFs.
|
|
|
|
|
|
|
|
|
|
| |
Fixes:
- Don't throw error for invalid bitrate but limit to functional value
- More robust ASC parsing
- More robust handling of corrupt bitstreams
- Handle multiple raw access units
Change-Id: Ib49fe2545ff4185fe924126da702fe84ac5c2d87
|
|
|
|
|
|
| |
License boilerplate update to follow.
Change-Id: I2810460c11a58b6d148d84673cc031f3685e79b5
|
|
|