#include <audio_transitions.h>
Inheritance diagram for GDKAudioTransitionAdapter:


Public Member Functions | |
| GDKAudioTransitionAdapter (AudioTransition *transition) | |
| virtual | ~GDKAudioTransitionAdapter () |
| char * | GetDescription () const |
| void | GetFrame (int16_t **aframe, int16_t **bframe, int frequency, int channels, int &samples, double position, double frame_delta) |
Private Attributes | |
| AudioTransition * | transition |
Since not all transitions will require additional GUI functionality, this class is provided as a convenience to wrap the non-GDK transitions into basic GDK transitions.
Definition at line 99 of file audio_transitions.h.
|
|
Definition at line 105 of file audio_transitions.h. 00105 { this->transition = transition; }
|
|
|
Definition at line 106 of file audio_transitions.h. References transition. 00106 { delete transition; }
|
|
|
Implements AudioTransition. Definition at line 107 of file audio_transitions.h. References AudioTransition::GetDescription(), and transition. 00107 { return this->transition->GetDescription( ); }
|
|
||||||||||||||||||||||||||||||||
|
Implements AudioTransition. Definition at line 108 of file audio_transitions.h. References AudioTransition::GetFrame(), and transition. 00109 {
00110 return this->transition->GetFrame( aframe, bframe, frequency, channels, samples, position, frame_delta );
00111 }
|
|
|
Definition at line 102 of file audio_transitions.h. Referenced by GetDescription(), GetFrame(), and ~GDKAudioTransitionAdapter(). |
1.4.2