summaryrefslogtreecommitdiffstats
path: root/audio/out/ao_opensles.c
Commit message (Collapse)AuthorAgeFilesLines
* options: deprecate suboptions for the remaining AO/VOswm42016-09-051-0/+1
|
* ao_opensles: remove 32bit audioJosh de Kock2016-05-221-1/+0
| | | | It's unsupported by android, and can cause problems when trying to play 32bit audio. Removing 32bit fixes it by forcing 16 bit or 8 bit audio.
* ao: initial OpenSL ES supportIlya Zhuravlev2016-02-271-0/+250
OpenSL ES is used on Android. At the moment only stereo output is supported. Two options are supported: 'frames-per-buffer' and 'sample-rate'. To get better latency the user of libmpv should pass values obtained from AudioManager.getProperty(PROPERTY_OUTPUT_FRAMES_PER_BUFFER) and AudioManager.getProperty(PROPERTY_OUTPUT_SAMPLE_RATE).