2014-08-25 17:26:09 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#if !defined(CubebUtils_h_)
|
|
|
|
#define CubebUtils_h_
|
|
|
|
|
|
|
|
#include "cubeb/cubeb.h"
|
2018-07-18 11:38:34 +03:00
|
|
|
#include "nsString.h"
|
|
|
|
#include "mozilla/RefPtr.h"
|
2014-08-25 17:26:09 +04:00
|
|
|
|
2018-07-18 11:38:34 +03:00
|
|
|
class AudioDeviceInfo;
|
|
|
|
|
2014-08-25 17:26:09 +04:00
|
|
|
namespace mozilla {
|
2014-09-15 10:09:00 +04:00
|
|
|
namespace CubebUtils {
|
|
|
|
|
2016-01-21 19:51:36 +03:00
|
|
|
typedef cubeb_devid AudioDeviceID;
|
|
|
|
|
2014-09-15 10:09:00 +04:00
|
|
|
// Initialize Audio Library. Some Audio backends require initializing the
|
|
|
|
// library before using it.
|
|
|
|
void InitLibrary();
|
|
|
|
|
|
|
|
// Shutdown Audio Library. Some Audio backends require shutting down the
|
|
|
|
// library after using it.
|
|
|
|
void ShutdownLibrary();
|
|
|
|
|
|
|
|
// Returns the maximum number of channels supported by the audio hardware.
|
2014-09-15 10:10:00 +04:00
|
|
|
uint32_t MaxNumberOfChannels();
|
2014-09-15 10:09:00 +04:00
|
|
|
|
2016-09-18 07:32:22 +03:00
|
|
|
// Get the sample rate the hardware/mixer runs at. Thread safe.
|
2014-09-15 10:10:00 +04:00
|
|
|
uint32_t PreferredSampleRate();
|
2014-09-15 10:09:00 +04:00
|
|
|
|
2017-07-18 11:09:10 +03:00
|
|
|
enum Side { Input, Output };
|
|
|
|
|
2014-09-15 10:09:00 +04:00
|
|
|
double GetVolumeScale();
|
|
|
|
bool GetFirstStream();
|
|
|
|
cubeb* GetCubebContext();
|
2016-06-23 18:50:52 +03:00
|
|
|
void ReportCubebStreamInitFailure(bool aIsFirstStream);
|
|
|
|
void ReportCubebBackendUsed();
|
2016-09-09 16:21:50 +03:00
|
|
|
uint32_t GetCubebPlaybackLatencyInMilliseconds();
|
2018-02-20 16:37:07 +03:00
|
|
|
uint32_t GetCubebMSGLatencyInFrames(cubeb_stream_params* params);
|
2014-09-15 10:09:00 +04:00
|
|
|
bool CubebLatencyPrefSet();
|
2016-07-26 01:50:14 +03:00
|
|
|
void GetCurrentBackend(nsAString& aBackend);
|
2017-07-18 11:09:10 +03:00
|
|
|
void GetDeviceCollection(nsTArray<RefPtr<AudioDeviceInfo>>& aDeviceInfos,
|
|
|
|
Side aSide);
|
2018-04-30 10:59:32 +03:00
|
|
|
cubeb_stream_prefs GetDefaultStreamPrefs();
|
2018-08-01 15:16:30 +03:00
|
|
|
char* GetForcedOutputDevice();
|
2018-02-20 16:37:07 +03:00
|
|
|
|
|
|
|
#ifdef MOZ_WIDGET_ANDROID
|
|
|
|
uint32_t AndroidGetAudioOutputSampleRate();
|
|
|
|
uint32_t AndroidGetAudioOutputFramesPerBuffer();
|
|
|
|
#endif
|
2018-06-22 12:45:31 +03:00
|
|
|
|
|
|
|
#ifdef ENABLE_SET_CUBEB_BACKEND
|
|
|
|
void ForceSetCubebContext(cubeb* aCubebContext);
|
|
|
|
#endif
|
2014-09-15 10:09:00 +04:00
|
|
|
} // namespace CubebUtils
|
|
|
|
} // namespace mozilla
|
2014-08-25 17:26:09 +04:00
|
|
|
|
|
|
|
#endif // CubebUtils_h_
|