Roc Toolkit internal modules
Roc Toolkit: real-time audio streaming
wav_backend.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2023 Roc Streaming authors
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
8 
9 //! @file roc_sndio/wav_backend.h
10 //! @brief WAV backend.
11 
12 #ifndef ROC_SNDIO_WAV_BACKEND_H_
13 #define ROC_SNDIO_WAV_BACKEND_H_
14 
15 #include "roc_audio/sample_spec.h"
16 #include "roc_core/noncopyable.h"
17 #include "roc_sndio/ibackend.h"
18 
19 namespace roc {
20 namespace sndio {
21 
22 //! WAV backend.
24 public:
25  WavBackend();
26 
27  //! Append supported drivers to the list.
29 
30  //! Create and open a sink or source.
31  virtual IDevice* open_device(DeviceType device_type,
32  DriverType driver_type,
33  const char* driver,
34  const char* path,
35  const Config& config,
36  core::IArena& arena);
37 
38  //! Returns name of backend.
39  virtual const char* name() const;
40 };
41 
42 } // namespace sndio
43 } // namespace roc
44 
45 #endif // ROC_SNDIO_WAV_BACKEND_H_
Dynamic array.
Definition: array.h:40
Memory arena interface.
Definition: iarena.h:23
Base class for non-copyable objects.
Definition: noncopyable.h:23
Backend interface.
Definition: ibackend.h:29
Base interface for sinks and sources.
Definition: idevice.h:28
virtual IDevice * open_device(DeviceType device_type, DriverType driver_type, const char *driver, const char *path, const Config &config, core::IArena &arena)
Create and open a sink or source.
virtual void discover_drivers(core::Array< DriverInfo, MaxDrivers > &driver_list)
Append supported drivers to the list.
virtual const char * name() const
Returns name of backend.
Backend interface.
DeviceType
Device type.
Definition: device_type.h:19
DriverType
Driver type.
Definition: driver.h:27
Root namespace.
Non-copyable object.
Sample specifications.
Sink and source config.
Definition: config.h:29