Commit 941c5d84 by Marc Baechinger

Merge pull request #10322 from DolbyLaboratories:dev-v2-multichannel

PiperOrigin-RevId: 454641746
(cherry picked from commit 1c373d51)
parent c1f1eb78
...@@ -1644,6 +1644,10 @@ public final class Util { ...@@ -1644,6 +1644,10 @@ public final class Util {
// 8 ch output is not supported before Android L. // 8 ch output is not supported before Android L.
return AudioFormat.CHANNEL_INVALID; return AudioFormat.CHANNEL_INVALID;
} }
case 12:
return Util.SDK_INT >= 32
? AudioFormat.CHANNEL_OUT_7POINT1POINT4
: AudioFormat.CHANNEL_INVALID;
default: default:
return AudioFormat.CHANNEL_INVALID; return AudioFormat.CHANNEL_INVALID;
} }
......
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 sign in to comment