comparison aac.c @ 8200:843d82925adf libavcodec

AAC: Cosmetics after last commit
author superdump
date Mon, 24 Nov 2008 00:14:33 +0000
parents 8a8d40fe77d9
children f93efc084e41
comparison
equal deleted inserted replaced
8199:8a8d40fe77d9 8200:843d82925adf
519 } else if (ac->m4ac.object_type == AOT_AAC_LC) { 519 } else if (ac->m4ac.object_type == AOT_AAC_LC) {
520 av_log(ac->avccontext, AV_LOG_ERROR, "Prediction is not allowed in AAC-LC.\n"); 520 av_log(ac->avccontext, AV_LOG_ERROR, "Prediction is not allowed in AAC-LC.\n");
521 memset(ics, 0, sizeof(IndividualChannelStream)); 521 memset(ics, 0, sizeof(IndividualChannelStream));
522 return -1; 522 return -1;
523 } else { 523 } else {
524 av_log_missing_feature(ac->avccontext, "Predictor bit set but LTP is", 1); 524 av_log_missing_feature(ac->avccontext, "Predictor bit set but LTP is", 1);
525 memset(ics, 0, sizeof(IndividualChannelStream)); 525 memset(ics, 0, sizeof(IndividualChannelStream));
526 return -1; 526 return -1;
527 } 527 }
528 } 528 }
529 } 529 }
530 530
531 if(ics->max_sfb > ics->num_swb) { 531 if(ics->max_sfb > ics->num_swb) {