mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
aacdec: Factorize if (elem_type < TYPE_DSE).
Originally committed as revision 23674 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
fda36b5944
commit
ed99e54d67
@ -2006,13 +2006,13 @@ static int aac_decode_frame(AVCodecContext *avctx, void *data,
|
||||
while ((elem_type = get_bits(&gb, 3)) != TYPE_END) {
|
||||
elem_id = get_bits(&gb, 4);
|
||||
|
||||
if (elem_type < TYPE_DSE && !(che=get_che(ac, elem_type, elem_id))) {
|
||||
if (elem_type < TYPE_DSE) {
|
||||
if (!(che=get_che(ac, elem_type, elem_id))) {
|
||||
av_log(ac->avctx, AV_LOG_ERROR, "channel element %d.%d is not allocated\n", elem_type, elem_id);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (elem_type < TYPE_DSE)
|
||||
samples = 1024;
|
||||
}
|
||||
|
||||
switch (elem_type) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user