Bug 1833633 - Reapply cubeb patch to prefer OpenSL ES on oldder Android versions. r=cubeb-reviewers,kinetik

Depends on D178320

Differential Revision: https://phabricator.services.mozilla.com/D178321
This commit is contained in:
Paul Adenot 2023-05-22 09:20:31 +00:00
Родитель e2935ff71a
Коммит 2d678a843c
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -11,6 +11,7 @@
#include "cubeb_resampler.h"
#include "cubeb_triple_buffer.h"
#include <aaudio/AAudio.h>
#include <android/api-level.h>
#include <atomic>
#include <cassert>
#include <chrono>
@ -1605,6 +1606,9 @@ const static struct cubeb_ops aaudio_ops = {
extern "C" /*static*/ int
aaudio_init(cubeb ** context, char const * /* context_name */)
{
if (android_get_device_api_level() <= 30) {
return CUBEB_ERROR;
}
// load api
void * libaaudio = NULL;
#ifndef DISABLE_LIBAAUDIO_DLOPEN