X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;ds=sidebyside;f=cinelerra-5.1%2Fcinelerra%2Faudiodevice.C;h=9ae6f235905a5992dfce4f16727a08c7e54a7536;hb=6f0ddd863f975ca407ddf08c59a9eb1db8d2fd72;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..9ae6f235 100644 --- a/cinelerra-5.1/cinelerra/audiodevice.C +++ b/cinelerra-5.1/cinelerra/audiodevice.C @@ -2,6 +2,7 @@ /* * CINELERRA * Copyright (C) 2008 Adam Williams + * Copyright (C) 2003-2016 Cinelerra CV contributors * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -25,9 +26,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 +259,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;