gitextract_dxqn2ddf/ ├── .gitignore ├── AUTHORS ├── COPYING ├── CREDITS ├── ChangeLog ├── INSTALL ├── JULIUS_LICENSE ├── Makefile.am ├── NEWS ├── README.md ├── RELEASE_NOTES ├── autogen.sh ├── bin/ │ ├── android-10/ │ │ ├── SMILExtract │ │ └── libopensmile.a │ ├── linux_x64_standalone_libstdc6/ │ │ └── SMILExtract │ └── linux_x64_standalone_static/ │ └── SMILExtract ├── buildAndroid.sh ├── buildStandalone.sh ├── buildWithInstalledPortAudio.sh ├── buildWithJulius.sh ├── buildWithPortAudio.sh ├── config/ │ ├── ComParE_2016.conf │ ├── ComParE_2016_core.func.conf.inc │ ├── ComParE_2016_core.lld.conf.inc │ ├── IS09_emotion.conf │ ├── IS09_emotion_core.func.conf.inc │ ├── IS09_emotion_core.lld.conf.inc │ ├── IS10_paraling.conf │ ├── IS10_paraling_compat.conf │ ├── IS10_paraling_core.func.conf.inc │ ├── IS10_paraling_core.lld.conf.inc │ ├── IS11_speaker_state.conf │ ├── IS12_speaker_trait.conf │ ├── IS12_speaker_trait_compat.conf │ ├── IS13_ComParE.conf │ ├── IS13_ComParE_Voc.conf │ ├── IS13_ComParE_core.func.conf.inc │ ├── IS13_ComParE_core.lld.conf.inc │ ├── MFCC12_0_D_A.conf │ ├── MFCC12_0_D_A_Z.conf │ ├── MFCC12_E_D_A.conf │ ├── MFCC12_E_D_A_Z.conf │ ├── PLP_0_D_A.conf │ ├── PLP_0_D_A_Z.conf │ ├── PLP_E_D_A.conf │ ├── PLP_E_D_A_Z.conf │ ├── arff_targets.conf │ ├── audiovisual/ │ │ ├── arff_targets_age.conf │ │ ├── audio.conf │ │ ├── audiovideo.conf │ │ └── video.conf │ ├── audspec.conf │ ├── audspec_compat.conf │ ├── avec2011.conf │ ├── avec2012.readme │ ├── avec2013.conf │ ├── avec2013_functionals_core.conf.inc │ ├── avec2013_functionals_frame_mode.conf.inc │ ├── avec2013_lld_core.conf.inc │ ├── avec2014.readme │ ├── chroma_fft.conf │ ├── chroma_filt.conf │ ├── demo/ │ │ ├── audioplayer.conf │ │ ├── audiorecorder.conf │ │ ├── demo1_energy.conf │ │ └── signalGenerator.conf │ ├── emo_large.conf │ ├── emobase.conf │ ├── emobase2010.conf │ ├── emobase_live4.conf │ ├── emobase_live4_batch.conf │ ├── emobase_live4_batch_single.conf │ ├── gemaps/ │ │ ├── GeMAPSv01a.conf │ │ ├── GeMAPSv01a_core.func.conf.inc │ │ ├── GeMAPSv01a_core.lld.conf.inc │ │ ├── eGeMAPSv01a.conf │ │ ├── eGeMAPSv01a_core.func.conf.inc │ │ └── eGeMAPSv01a_core.lld.conf.inc │ ├── gui/ │ │ ├── visgui.conf │ │ ├── visgui_cepstr.conf │ │ ├── visgui_chroma.conf │ │ ├── visgui_melspec.conf │ │ ├── visgui_mfcc.conf │ │ ├── visgui_pitch.conf │ │ ├── visgui_pitch_funct.conf │ │ ├── visgui_semitone.conf │ │ └── visgui_spect.conf │ ├── list_audio_devices.conf │ ├── liveProsodyAcf.conf │ ├── mediaeval2012_tum_affect/ │ │ ├── MediaEval_Audio_IS12based_subwin2.conf │ │ ├── MediaEval_Audio_IS12based_subwin2_step0.5.conf │ │ ├── MediaEval_VideoFunctionals.conf │ │ └── MediaEval_VideoFunctionals_subwin.conf │ ├── prosodyAcf.conf │ ├── prosodyShs.conf │ ├── prosodyShsViterbiLoudness.conf │ ├── shared/ │ │ ├── BufferMode.conf.inc │ │ ├── BufferModeLive.conf.inc │ │ ├── BufferModeRb.conf.inc │ │ ├── BufferModeRbLag.conf.inc │ │ ├── FrameModeFunctionals.conf.inc │ │ ├── FrameModeFunctionalsLive.conf.inc │ │ ├── arff_targets.conf.inc │ │ ├── standard_data_output.conf.inc │ │ ├── standard_data_output_lldonly.conf.inc │ │ └── standard_wave_input.conf.inc │ ├── smileF0.conf │ ├── smileF0_base.conf │ └── smileF0_mean.conf ├── configure.ac ├── doc/ │ ├── components.txt │ ├── configfile.txt │ ├── developer/ │ │ ├── classes.txt │ │ ├── component_configuration.txt │ │ ├── dataMemory.txt │ │ ├── defines.txt │ │ ├── implementing_components.txt │ │ └── messages.txt │ ├── knownBugs.txt │ └── logger.txt ├── ide/ │ └── vs10/ │ ├── generalProps.props │ ├── generalPropsDebug.props │ ├── generalPropsDll.props │ ├── generalPropsRelease.props │ ├── lstmRnn.props │ ├── openSmile.sln │ ├── openSmile.vcproj │ ├── openSmile.vcxproj │ ├── openSmileComponents.props │ ├── openSmileLib.vcxproj │ ├── openSmileLibClassif.vcxproj │ ├── openSmileLibLibsvm.vcxproj │ ├── openSmileLibPortaudio.props │ ├── openSmileLibPortaudio.vcproj │ ├── openSmileLibPortaudio.vcxproj │ ├── openSmileLibPortaudio.vsprops │ ├── openSmilePlugin.sln │ ├── openSmilePlugin.vcproj │ ├── openSmilePluginGUI.sln │ ├── openSmilePluginGUI.vcproj │ ├── opencv.props │ ├── portaudio.def │ ├── portaudio.props │ └── portaudio.vcxproj ├── m4/ │ ├── android.m4 │ ├── find_pthread.m4 │ ├── opencv.m4 │ ├── portaudio.m4 │ └── targets.m4 ├── plugindev/ │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── ClassifierResultGUI.cpp │ ├── ClassifierResultGUI.hpp │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── autogen.sh │ ├── configure.ac │ ├── exampleGuipluginSink.cpp │ ├── exampleGuipluginSink.hpp │ ├── m4/ │ │ ├── find_pthread.m4 │ │ └── opensmile.m4 │ ├── plug_exampleSink.cpp │ ├── plug_exampleSink.hpp │ ├── pluginGuiMain.cpp │ ├── pluginMain.cpp │ ├── simpleVisualiserGUI.cpp │ └── simpleVisualiserGUI.hpp ├── progsrc/ │ ├── android-template/ │ │ ├── .gitignore │ │ ├── .idea/ │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── copyright/ │ │ │ │ └── profiles_settings.xml │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── runConfigurations.xml │ │ │ └── vcs.xml │ │ ├── README_SETUP.TXT │ │ ├── app/ │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src/ │ │ │ ├── androidTest/ │ │ │ │ └── java/ │ │ │ │ └── com/ │ │ │ │ └── audeering/ │ │ │ │ └── opensmile/ │ │ │ │ └── androidtemplate/ │ │ │ │ └── ApplicationTest.java │ │ │ ├── main/ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets/ │ │ │ │ │ ├── BufferModeRb.conf.inc │ │ │ │ │ ├── features.conf.inc │ │ │ │ │ ├── liveinput_android.conf │ │ │ │ │ └── messages.conf.inc │ │ │ │ ├── java/ │ │ │ │ │ └── com/ │ │ │ │ │ └── audeering/ │ │ │ │ │ └── opensmile/ │ │ │ │ │ └── androidtemplate/ │ │ │ │ │ └── SmileJNI.java │ │ │ │ ├── jni/ │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── Application.mk │ │ │ │ │ ├── smile_jni.cpp │ │ │ │ │ ├── smile_jni.h │ │ │ │ │ ├── smilextract.cpp │ │ │ │ │ ├── smilextract.h │ │ │ │ │ └── sync-build-libopensmile.sh │ │ │ │ ├── res/ │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── fragment_show.xml │ │ │ │ │ │ └── main.xml │ │ │ │ │ ├── menu/ │ │ │ │ │ │ └── toolbar.xml │ │ │ │ │ └── values/ │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── scala/ │ │ │ │ └── com/ │ │ │ │ └── audeering/ │ │ │ │ └── opensmile/ │ │ │ │ └── androidtemplate/ │ │ │ │ ├── MainActivity.scala │ │ │ │ ├── SmileMessage.scala │ │ │ │ ├── SmilePlugin.scala │ │ │ │ └── plugins/ │ │ │ │ ├── Config.scala │ │ │ │ └── Energy.scala │ │ │ └── test/ │ │ │ └── java/ │ │ │ └── com/ │ │ │ └── audeering/ │ │ │ └── opensmile/ │ │ │ └── androidtemplate/ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── openSMILEbatchGUI/ │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Form2.Designer.cs │ │ ├── Form2.cs │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── openSMILEbatchGUI.csproj │ │ └── openSMILEbatchGUI.sln │ ├── smilextract/ │ │ └── SMILExtract.cpp │ └── tools/ │ ├── compile_libsvmBinaryModelconverter.sh │ ├── convertAllLibsvmModels.sh │ ├── libsvmBinaryModelconverter.cpp │ └── modelmake.c ├── scripts/ │ ├── arff_naninfzero_checker.pl │ ├── avec2012/ │ │ ├── README.txt │ │ ├── avec2011_full.conf │ │ ├── avec2011_list.conf │ │ ├── extr.pl │ │ └── labels.inc │ ├── avec2013/ │ │ ├── avec2013_functionals.conf │ │ ├── avec2013_functionals_core.conf │ │ ├── avec2013_functionals_frame_mode.conf │ │ ├── avec2013_functionals_frame_mode_long.conf │ │ ├── avec2013_functionals_frame_mode_short.conf │ │ ├── avec2013_functionals_frame_mode_short_with_last.conf │ │ ├── avec2013_lld_arff.conf │ │ ├── avec2013_lld_core.conf │ │ ├── avec2013_lld_htk.conf │ │ ├── avec2013_lld_htk_and_arff.conf │ │ ├── extract_all_audio.pl │ │ ├── extractor_script.pl │ │ └── feature_set_news.txt │ ├── clonecomp.pl │ ├── extract_features_batch.pl │ ├── gnuplot/ │ │ ├── gpconvert.pl │ │ ├── gpframeconvert.pl │ │ ├── plotaudspec.sh │ │ ├── plotchroma.sh │ │ ├── plotcontour.gp │ │ ├── plotcontour.sh │ │ ├── plotframe.gp │ │ ├── plotframe.sh │ │ ├── plotmatrix.gp │ │ ├── plotmatrix.sh │ │ ├── plotmatrix_chroma.gp │ │ ├── plotmatrix_spec.gp │ │ ├── transpose.pl │ │ └── transpose_lin.pl │ ├── modeltrain/ │ │ ├── README.txt │ │ ├── arff-functions.pl │ │ ├── arff-standardize.c │ │ ├── arffToLsvm.pl │ │ ├── buildmodel.pl │ │ ├── fsel.pl │ │ ├── libsvm-small/ │ │ │ ├── COPYRIGHT │ │ │ ├── Makefile │ │ │ ├── Makefile.win │ │ │ ├── README │ │ │ ├── svm-predict.c │ │ │ ├── svm-scale.c │ │ │ ├── svm-train.c │ │ │ ├── svm.cpp │ │ │ └── svm.h │ │ ├── makemodel.pl │ │ ├── stddirectory_smileextract.pl │ │ └── txtfile-functions.pl │ └── vad/ │ ├── README.txt │ ├── lstmvad_rplp18d_12.net │ ├── turnDetector.conf.inc │ ├── vad_opensource.conf │ ├── vad_opensource.conf.inc │ └── vad_segmenter.conf ├── src/ │ ├── android/ │ │ ├── jniMessageInterface.cpp │ │ └── openslesSource.cpp │ ├── classifiers/ │ │ ├── julius/ │ │ │ └── juliusSink.cpp │ │ ├── libsvm/ │ │ │ ├── COPYRIGHT │ │ │ └── svm.cpp │ │ ├── libsvmliveSink.cpp │ │ └── svmSink.cpp │ ├── core/ │ │ ├── commandlineParser.cpp │ │ ├── componentManager.cpp │ │ ├── configManager.cpp │ │ ├── dataMemory.cpp │ │ ├── dataProcessor.cpp │ │ ├── dataReader.cpp │ │ ├── dataSelector.cpp │ │ ├── dataSink.cpp │ │ ├── dataSource.cpp │ │ ├── dataWriter.cpp │ │ ├── exceptions.cpp │ │ ├── nullSink.cpp │ │ ├── smileCommon.cpp │ │ ├── smileComponent.cpp │ │ ├── smileLogger.cpp │ │ ├── vecToWinProcessor.cpp │ │ ├── vectorProcessor.cpp │ │ ├── vectorTransform.cpp │ │ ├── winToVecProcessor.cpp │ │ └── windowProcessor.cpp │ ├── dsp/ │ │ ├── dbA.cpp │ │ ├── signalGenerator.cpp │ │ ├── smileResample.cpp │ │ ├── specResample.cpp │ │ ├── specScale.cpp │ │ └── vadV1.cpp │ ├── dspcore/ │ │ ├── acf.cpp │ │ ├── amdf.cpp │ │ ├── contourSmoother.cpp │ │ ├── deltaRegression.cpp │ │ ├── fft4g.c │ │ ├── fftmagphase.cpp │ │ ├── fftsg.c │ │ ├── framer.cpp │ │ ├── fullinputMean.cpp │ │ ├── fullturnMean.cpp │ │ ├── monoMixdown.cpp │ │ ├── preemphasis.cpp │ │ ├── transformFft.cpp │ │ ├── transformFftr.cpp │ │ ├── turnDetector.cpp │ │ ├── vectorMVN.cpp │ │ ├── vectorPreemphasis.cpp │ │ └── windower.cpp │ ├── examples/ │ │ ├── componentTemplate.cpp │ │ ├── exampleProcessor.cpp │ │ ├── exampleSink.cpp │ │ ├── exampleSource.cpp │ │ ├── exampleVectorProcessor.cpp │ │ ├── exampleWindowProcessor.cpp │ │ ├── pitchBaseExample.cpp │ │ ├── simpleMessageSender.cpp │ │ └── smileComponentExample.cpp │ ├── functionals/ │ │ ├── functionalComponent.cpp │ │ ├── functionalCrossings.cpp │ │ ├── functionalDCT.cpp │ │ ├── functionalExtremes.cpp │ │ ├── functionalLpc.cpp │ │ ├── functionalMeans.cpp │ │ ├── functionalModulation.cpp │ │ ├── functionalMoments.cpp │ │ ├── functionalOnset.cpp │ │ ├── functionalPeaks.cpp │ │ ├── functionalPeaks2.cpp │ │ ├── functionalPercentiles.cpp │ │ ├── functionalRegression.cpp │ │ ├── functionalSamples.cpp │ │ ├── functionalSegments.cpp │ │ ├── functionalTimes.cpp │ │ └── functionals.cpp │ ├── include/ │ │ ├── android/ │ │ │ ├── jniMessageInterface.hpp │ │ │ └── openslesSource.hpp │ │ ├── classifiers/ │ │ │ ├── julius/ │ │ │ │ ├── juliusSink.hpp │ │ │ │ └── kwsjKresult.h │ │ │ ├── libsvm/ │ │ │ │ ├── COPYRIGHT │ │ │ │ └── svm.h │ │ │ ├── libsvmliveSink.hpp │ │ │ └── svmSink.hpp │ │ ├── core/ │ │ │ ├── commandlineParser.hpp │ │ │ ├── componentList.hpp │ │ │ ├── componentManager.hpp │ │ │ ├── configManager.hpp │ │ │ ├── dataMemory.hpp │ │ │ ├── dataProcessor.hpp │ │ │ ├── dataReader.hpp │ │ │ ├── dataSelector.hpp │ │ │ ├── dataSink.hpp │ │ │ ├── dataSource.hpp │ │ │ ├── dataWriter.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── nullSink.hpp │ │ │ ├── smileCommon.hpp │ │ │ ├── smileComponent.hpp │ │ │ ├── smileLogger.hpp │ │ │ ├── smileTypes.h │ │ │ ├── svn_version.hpp │ │ │ ├── vecToWinProcessor.hpp │ │ │ ├── vectorProcessor.hpp │ │ │ ├── vectorTransform.hpp │ │ │ ├── versionInfo.hpp │ │ │ ├── winToVecProcessor.hpp │ │ │ └── windowProcessor.hpp │ │ ├── dsp/ │ │ │ ├── dbA.hpp │ │ │ ├── signalGenerator.hpp │ │ │ ├── smileResample.hpp │ │ │ ├── specResample.hpp │ │ │ ├── specScale.hpp │ │ │ └── vadV1.hpp │ │ ├── dspcore/ │ │ │ ├── acf.hpp │ │ │ ├── amdf.hpp │ │ │ ├── contourSmoother.hpp │ │ │ ├── deltaRegression.hpp │ │ │ ├── fftXg.h │ │ │ ├── fftmagphase.hpp │ │ │ ├── framer.hpp │ │ │ ├── fullinputMean.hpp │ │ │ ├── fullturnMean.hpp │ │ │ ├── monoMixdown.hpp │ │ │ ├── preemphasis.hpp │ │ │ ├── transformFft.hpp │ │ │ ├── turnDetector.hpp │ │ │ ├── vectorMVN.hpp │ │ │ ├── vectorPreemphasis.hpp │ │ │ └── windower.hpp │ │ ├── examples/ │ │ │ ├── componentTemplate.hpp │ │ │ ├── exampleProcessor.hpp │ │ │ ├── exampleSink.hpp │ │ │ ├── exampleSource.hpp │ │ │ ├── exampleVectorProcessor.hpp │ │ │ ├── exampleWindowProcessor.hpp │ │ │ ├── pitchBaseExample.hpp │ │ │ ├── simpleMessageSender.hpp │ │ │ └── smileComponentExample.hpp │ │ ├── functionals/ │ │ │ ├── functionalComponent.hpp │ │ │ ├── functionalCrossings.hpp │ │ │ ├── functionalDCT.hpp │ │ │ ├── functionalExtremes.hpp │ │ │ ├── functionalLpc.hpp │ │ │ ├── functionalMeans.hpp │ │ │ ├── functionalModulation.hpp │ │ │ ├── functionalMoments.hpp │ │ │ ├── functionalOnset.hpp │ │ │ ├── functionalPeaks.hpp │ │ │ ├── functionalPeaks2.hpp │ │ │ ├── functionalPercentiles.hpp │ │ │ ├── functionalRegression.hpp │ │ │ ├── functionalSamples.hpp │ │ │ ├── functionalSegments.hpp │ │ │ ├── functionalTimes.hpp │ │ │ └── functionals.hpp │ │ ├── io/ │ │ │ └── libsvmSink.hpp │ │ ├── iocore/ │ │ │ ├── arffSink.hpp │ │ │ ├── arffSource.hpp │ │ │ ├── csvSink.hpp │ │ │ ├── csvSource.hpp │ │ │ ├── datadumpSink.hpp │ │ │ ├── htkSink.hpp │ │ │ ├── htkSource.hpp │ │ │ ├── waveSink.hpp │ │ │ ├── waveSinkCut.hpp │ │ │ └── waveSource.hpp │ │ ├── lld/ │ │ │ ├── cens.hpp │ │ │ ├── chroma.hpp │ │ │ ├── formantLpc.hpp │ │ │ ├── formantSmoother.hpp │ │ │ ├── harmonics.hpp │ │ │ ├── lpc.hpp │ │ │ ├── lsp.hpp │ │ │ ├── pitchDirection.hpp │ │ │ ├── pitchJitter.hpp │ │ │ ├── pitchShs.hpp │ │ │ ├── pitchSmootherViterbi.hpp │ │ │ ├── tonefilt.hpp │ │ │ └── tonespec.hpp │ │ ├── lldcore/ │ │ │ ├── energy.hpp │ │ │ ├── intensity.hpp │ │ │ ├── melspec.hpp │ │ │ ├── mfcc.hpp │ │ │ ├── mzcr.hpp │ │ │ ├── pitchACF.hpp │ │ │ ├── pitchBase.hpp │ │ │ ├── pitchSmoother.hpp │ │ │ ├── plp.hpp │ │ │ └── spectral.hpp │ │ ├── other/ │ │ │ ├── bowProducer.hpp │ │ │ ├── maxIndex.hpp │ │ │ ├── valbasedSelector.hpp │ │ │ ├── vectorConcat.hpp │ │ │ └── vectorOperation.hpp │ │ ├── portaudio/ │ │ │ ├── portaudioDuplex.hpp │ │ │ ├── portaudioSink.hpp │ │ │ ├── portaudioSource.hpp │ │ │ └── portaudioWavplayer.hpp │ │ ├── rapidjson/ │ │ │ ├── document.h │ │ │ ├── filestream.h │ │ │ ├── internal/ │ │ │ │ ├── pow10.h │ │ │ │ ├── stack.h │ │ │ │ └── strfunc.h │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── stringbuffer.h │ │ │ └── writer.h │ │ ├── rnn/ │ │ │ ├── rnn.hpp │ │ │ ├── rnnProcessor.hpp │ │ │ ├── rnnSink.hpp │ │ │ └── rnnVad2.hpp │ │ ├── smileutil/ │ │ │ ├── JsonClasses.hpp │ │ │ ├── JsonClassesForward.hpp │ │ │ ├── smileUtil.h │ │ │ ├── smileUtilSpline.h │ │ │ └── zerosolve.h │ │ └── video/ │ │ ├── openCVSource.hpp │ │ ├── openCV_HSVHistogram.hpp │ │ ├── openCV_LBPHistogram.hpp │ │ └── openCV_OpticalFlow.hpp │ ├── io/ │ │ └── libsvmSink.cpp │ ├── iocore/ │ │ ├── arffSink.cpp │ │ ├── arffSource.cpp │ │ ├── csvSink.cpp │ │ ├── csvSource.cpp │ │ ├── datadumpSink.cpp │ │ ├── htkSink.cpp │ │ ├── htkSource.cpp │ │ ├── waveSink.cpp │ │ ├── waveSinkCut.cpp │ │ └── waveSource.cpp │ ├── lld/ │ │ ├── cens.cpp │ │ ├── chroma.cpp │ │ ├── formantLpc.cpp │ │ ├── formantSmoother.cpp │ │ ├── harmonics.cpp │ │ ├── lpc.cpp │ │ ├── lsp.cpp │ │ ├── pitchDirection.cpp │ │ ├── pitchJitter.cpp │ │ ├── pitchShs.cpp │ │ ├── pitchSmootherViterbi.cpp │ │ ├── tonefilt.cpp │ │ └── tonespec.cpp │ ├── lldcore/ │ │ ├── energy.cpp │ │ ├── intensity.cpp │ │ ├── melspec.cpp │ │ ├── mfcc.cpp │ │ ├── mzcr.cpp │ │ ├── pitchACF.cpp │ │ ├── pitchBase.cpp │ │ ├── pitchSmoother.cpp │ │ ├── plp.cpp │ │ └── spectral.cpp │ ├── other/ │ │ ├── bowProducer.cpp │ │ ├── maxIndex.cpp │ │ ├── valbasedSelector.cpp │ │ ├── vectorConcat.cpp │ │ └── vectorOperation.cpp │ ├── portaudio/ │ │ ├── portaudioDuplex.cpp │ │ ├── portaudioSink.cpp │ │ ├── portaudioSource.cpp │ │ └── portaudioWavplayer.cpp │ ├── rnn/ │ │ ├── rnn.cpp │ │ ├── rnnProcessor.cpp │ │ ├── rnnSink.cpp │ │ └── rnnVad2.cpp │ ├── smileutil/ │ │ ├── smileUtil.c │ │ ├── smileUtilSpline.c │ │ └── zerosolve.cpp │ └── video/ │ └── openCVSource.cpp ├── thirdparty/ │ └── portaudio.tgz └── update_build_version.sh