Roc Toolkit internal modules
Roc Toolkit: real-time audio streaming
roc::audio::SpeexResampler Class Reference

Speex resampler. More...

#include <speex_resampler.h>

Inheritance diagram for roc::audio::SpeexResampler:
Collaboration diagram for roc::audio::SpeexResampler:

Public Member Functions

 SpeexResampler (core::IArena &arena, core::BufferFactory< sample_t > &buffer_factory, ResamplerProfile profile, const audio::SampleSpec &in_spec, const audio::SampleSpec &out_spec)
 Initialize. More...
 
virtual bool is_valid () const
 Check if object is successfully constructed. More...
 
virtual bool set_scaling (size_t input_rate, size_t output_rate, float multiplier)
 Set new resample factor. More...
 
virtual const core::Slice< sample_t > & begin_push_input ()
 Get buffer to be filled with input data. More...
 
virtual void end_push_input ()
 Commit buffer with input data. More...
 
virtual size_t pop_output (sample_t *out_data, size_t out_size)
 Read samples from input frame and fill output frame. More...
 
virtual float n_left_to_process () const
 How many samples were pushed but not processed yet. More...
 
- Public Member Functions inherited from roc::audio::IResampler
 IResampler (core::IArena &arena)
 Initialization. More...
 
virtual ~IResampler ()
 Deinitialization. More...
 
- Public Member Functions inherited from roc::core::RefCounted< IResampler, core::ArenaAllocation >
 RefCounted ()
 Initialize. More...
 
 RefCounted (const core::ArenaAllocation &policy)
 Initialize. More...
 
int getref () const
 Get reference counter. More...
 
void incref () const
 Increment reference counter. More...
 
void decref () const
 Decrement reference counter. More...
 

Additional Inherited Members

- Protected Member Functions inherited from roc::core::ArenaAllocation
IArenaarena () const
 Get arena. More...
 
 ArenaAllocation (IArena &arena)
 Initialize. More...
 
template<class T >
void destroy (T &object)
 Destroy object and return memory to arena. More...
 

Detailed Description

Speex resampler.

Resamples audio stream using SpeexDSP library.

This backend is very fast even on weak CPUs, and provides good quality, but it can't apply requested scaling very precisely.

Definition at line 40 of file speex_resampler.h.

Constructor & Destructor Documentation

◆ SpeexResampler()

roc::audio::SpeexResampler::SpeexResampler ( core::IArena arena,
core::BufferFactory< sample_t > &  buffer_factory,
ResamplerProfile  profile,
const audio::SampleSpec in_spec,
const audio::SampleSpec out_spec 
)

Initialize.

Member Function Documentation

◆ begin_push_input()

virtual const core::Slice<sample_t>& roc::audio::SpeexResampler::begin_push_input ( )
virtual

Get buffer to be filled with input data.

Implements roc::audio::IResampler.

◆ end_push_input()

virtual void roc::audio::SpeexResampler::end_push_input ( )
virtual

Commit buffer with input data.

Implements roc::audio::IResampler.

◆ is_valid()

virtual bool roc::audio::SpeexResampler::is_valid ( ) const
virtual

Check if object is successfully constructed.

Implements roc::audio::IResampler.

◆ n_left_to_process()

virtual float roc::audio::SpeexResampler::n_left_to_process ( ) const
virtual

How many samples were pushed but not processed yet.

Implements roc::audio::IResampler.

◆ pop_output()

virtual size_t roc::audio::SpeexResampler::pop_output ( sample_t out_data,
size_t  out_size 
)
virtual

Read samples from input frame and fill output frame.

Implements roc::audio::IResampler.

◆ set_scaling()

virtual bool roc::audio::SpeexResampler::set_scaling ( size_t  input_rate,
size_t  output_rate,
float  multiplier 
)
virtual

Set new resample factor.

Implements roc::audio::IResampler.


The documentation for this class was generated from the following file: