Skip to content
Snippets Groups Projects
Commit 57de824d authored by Jean-Michel Trivi's avatar Jean-Michel Trivi Committed by Android (Google) Code Review
Browse files

Merge "Change AudioRecordingConfiguration constructor parameter order" into nyc-mr1-dev

parents 45ae57ea 74eb6f62
No related branches found
No related tags found
No related merge requests found
......@@ -57,12 +57,12 @@ public final class AudioRecordingConfiguration implements Parcelable {
/**
* @hide
*/
public AudioRecordingConfiguration(int session, int source, AudioFormat devFormat,
AudioFormat clientFormat, int patchHandle) {
public AudioRecordingConfiguration(int session, int source, AudioFormat clientFormat,
AudioFormat devFormat, int patchHandle) {
mSessionId = session;
mClientSource = source;
mDeviceFormat = devFormat;
mClientFormat = clientFormat;
mDeviceFormat = devFormat;
mPatchHandle = patchHandle;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment