#include <kino_av_pipe.h>
Static Public Member Functions | |
| static KinoAudioPipe * | CreateAudioPipe (kino_audio_pipe) |
| Create a wav or pcm audio pipe. | |
|
|
Create a wav or pcm audio pipe.
Definition at line 480 of file kino_av_pipe.cc. References PIPE_AUDIO_PCM, and PIPE_AUDIO_WAV. Referenced by ExportMJPEG::doExport(), and ExportAudio::doExport(). 00481 {
00482 switch ( type )
00483 {
00484 case PIPE_AUDIO_WAV:
00485 return new WAVExport();
00486 case PIPE_AUDIO_PCM:
00487 return new PCMExport();
00488 default:
00489 return NULL;
00490 }
00491 }
|
1.4.2