Merge commit '69d4dbfd1faa99563065329656bbe597d612ca03'
* commit '69d4dbfd1faa99563065329656bbe597d612ca03': aac_ac3_parser: simplify an expression Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -82,13 +82,9 @@ get_next:
|
|||||||
if (avctx->codec_id != AV_CODEC_ID_AAC) {
|
if (avctx->codec_id != AV_CODEC_ID_AAC) {
|
||||||
avctx->sample_rate = s->sample_rate;
|
avctx->sample_rate = s->sample_rate;
|
||||||
|
|
||||||
/* allow downmixing to stereo (or mono for AC-3) */
|
/* (E-)AC-3: allow downmixing to stereo or mono */
|
||||||
if(avctx->request_channels > 0 &&
|
if (avctx->request_channels > 0 && avctx->request_channels <= 2 &&
|
||||||
avctx->request_channels < s->channels &&
|
avctx->request_channels < s->channels) {
|
||||||
(avctx->request_channels <= 2 ||
|
|
||||||
(avctx->request_channels == 1 &&
|
|
||||||
(avctx->codec_id == AV_CODEC_ID_AC3 ||
|
|
||||||
avctx->codec_id == AV_CODEC_ID_EAC3)))) {
|
|
||||||
avctx->channels = avctx->request_channels;
|
avctx->channels = avctx->request_channels;
|
||||||
} else {
|
} else {
|
||||||
avctx->channels = s->channels;
|
avctx->channels = s->channels;
|
||||||
|
Reference in New Issue
Block a user