aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cubeb-sles.h
blob: ca93543c0b62957bf8a1d3bce16f3b3837f92ff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
 * Copyright © 2016 Mozilla Foundation
 *
 * This program is made available under an ISC-style license.  See the
 * accompanying file LICENSE for details.
 */

#ifndef _CUBEB_SLES_H_
#define _CUBEB_SLES_H_
#include <SLES/OpenSLES.h>

static SLresult
cubeb_get_sles_engine(SLObjectItf * pEngine, SLuint32 numOptions,
                      const SLEngineOption * pEngineOptions,
                      SLuint32 numInterfaces,
                      const SLInterfaceID * pInterfaceIds,
                      const SLboolean * pInterfaceRequired)
{
  return slCreateEngine(pEngine, numOptions, pEngineOptions, numInterfaces,
                        pInterfaceIds, pInterfaceRequired);
}

static void
cubeb_destroy_sles_engine(SLObjectItf * self)
{
  if (*self != NULL) {
    (**self)->Destroy(*self);
    *self = NULL;
  }
}

static SLresult
cubeb_realize_sles_engine(SLObjectItf self)
{
  return (*self)->Realize(self, SL_BOOLEAN_FALSE);
}

#endif