Commit 3f41e57f authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '220494ad'

* commit '220494ad':
  dcadec: treat all 2-channel modes as Stereo in dca_downmix.
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 97468463 220494ad
......@@ -1162,13 +1162,13 @@ static void dca_downmix(float **samples, int srcfmt, int lfe_present,
switch (srcfmt) {
case DCA_MONO:
case DCA_CHANNEL:
case DCA_STEREO_TOTAL:
case DCA_STEREO_SUMDIFF:
case DCA_4F2R:
av_log(NULL, AV_LOG_ERROR, "Not implemented!\n");
break;
case DCA_CHANNEL:
case DCA_STEREO:
case DCA_STEREO_TOTAL:
case DCA_STEREO_SUMDIFF:
break;
case DCA_3F:
c = channel_mapping[0];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment