X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Faudiodevice.C;h=0904ed5a1ae0115a0e14f57b124173a8ccc54308;hb=fb3e53778e49a406768506de9bf8edfd3d4c36e6;hp=956d4a1004641911547e391839e027cf4705c2e0;hpb=7fd85fb66168f6b518c5f2d73e04036e87faa0e1;p=goodguy%2Fcinelerra.git diff --git a/cinelerra-5.1/cinelerra/audiodevice.C b/cinelerra-5.1/cinelerra/audiodevice.C index 956d4a10..0904ed5a 100644 --- a/cinelerra-5.1/cinelerra/audiodevice.C +++ b/cinelerra-5.1/cinelerra/audiodevice.C @@ -25,9 +25,10 @@ #endif #include "audioalsa.h" #include "audiodvb.h" -#include "audiov4l2mpeg.h" #include "audioesound.h" #include "audiooss.h" +#include "audiopulse.h" +#include "audiov4l2mpeg.h" #include "asset.h" #include "bctimer.h" #include "condition.h" @@ -257,6 +258,12 @@ int AudioDevice::create_lowlevel(AudioLowLevel* &lowlevel, int driver,int in) lowlevel = new AudioV4L2MPEG(this); break; #endif + +#ifdef HAVE_PULSE + case AUDIO_PULSE: + lowlevel = new AudioPulse(this); + break; +#endif } } return 0;