Inheritance diagram for AudioFilterSilence:


Public Member Functions | |
| char * | GetDescription () const |
| void | GetFrame (int16_t **buffer, int frequency, int channels, int &samples, double position, double frame_delta) |
Definition at line 69 of file audio_filters.cc.
|
|
Implements AudioFilter. Definition at line 72 of file audio_filters.cc. 00073 {
00074 return _( "Silence" );
00075 }
|
|
||||||||||||||||||||||||||||
|
Implements AudioFilter. Definition at line 77 of file audio_filters.cc. 00078 {
00079 for ( int i = 0; i < channels; i ++ )
00080 for ( int j = 0; j < samples; j ++ )
00081 buffer[ i ][ j ] = 0;
00082 }
|
1.4.2