You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Undo r20874: It broke AAC decoding.
Originally committed as revision 20879 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -1645,9 +1645,8 @@ static void apply_channel_coupling(AACContext *ac, ChannelElement *cc,
|
|||||||
*/
|
*/
|
||||||
static void spectral_to_sample(AACContext *ac)
|
static void spectral_to_sample(AACContext *ac)
|
||||||
{
|
{
|
||||||
enum RawDataBlockType type;
|
int i, type;
|
||||||
for (type = TYPE_LFE; type >= TYPE_SCE; type--) {
|
for (type = 3; type >= 0; type--) {
|
||||||
int i;
|
|
||||||
for (i = 0; i < MAX_ELEM_ID; i++) {
|
for (i = 0; i < MAX_ELEM_ID; i++) {
|
||||||
ChannelElement *che = ac->che[type][i];
|
ChannelElement *che = ac->che[type][i];
|
||||||
if (che) {
|
if (che) {
|
||||||
|
Reference in New Issue
Block a user