Skip to content
Snippets Groups Projects
Commit 0d77a510 authored by Alexandre Lision's avatar Alexandre Lision
Browse files

* #39683: add java calls for hardware audio info

parent 62bf85d4
No related branches found
No related tags found
No related merge requests found
......@@ -98,4 +98,14 @@ public class ConfigurationManagerCallback extends ConfigurationCallback {
mService.sendBroadcast(intent);
}
public IntVect get_hardware_audio_format(){
IntVect result = new IntVect();
OpenSlParams audioParams = OpenSlParams.createInstance(mService);
result.add(audioParams.getSampleRate());
result.add(audioParams.getBufferSize());
return result;
}
}
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