This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
aacdec: add default case in channel layout
Bug-Id: CID 732291
tags/n2.5
Vittorio Giovara
10 years ago
parent
930ffd46e1
commit
77ab341c0c
1 changed files
with
3 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
libavcodec/aacdec.c
+ 3
- 0
libavcodec/aacdec.c
View File
@@ -624,6 +624,9 @@ static void decode_channel_map(uint8_t layout_map[][3],
case AAC_CHANNEL_LFE:
syn_ele = TYPE_LFE;
break;
default:
// AAC_CHANNEL_OFF has no channel map
return;
}
layout_map[0][0] = syn_ele;
layout_map[0][1] = get_bits(gb, 4);
Write
Preview
Loading…
Cancel
Save