gitextract_bz4e8om4/ ├── .clang-format ├── .devcontainer/ │ ├── Dockerfile │ ├── devcontainer.json │ └── shell ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ ├── install_dependencies │ ├── platform_build │ └── workflows/ │ ├── build_docker_containers.yml │ ├── ci_build.yml │ ├── code_formatting.yml │ ├── platform_build.yml │ └── version_bump.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode/ │ ├── c_cpp_properties.json │ ├── launch.json │ └── settings.json ├── CMakeLists.txt ├── Dockerfile ├── LICENSE ├── NEWS.md ├── README.md ├── config/ │ ├── basic_multichannel.conf │ ├── basic_scanning.conf │ ├── big_mixer.conf │ ├── mixers.conf │ ├── noaa.conf │ └── two_dongles_multiple_outputs.conf ├── init.d/ │ ├── rtl_airband-debian.sh │ ├── rtl_airband-freebsd.sh │ ├── rtl_airband-gentoo.sh │ └── rtl_airband.service ├── scripts/ │ ├── find_version │ └── reformat_code └── src/ ├── .gitignore ├── CMakeLists.txt ├── CMakeModules/ │ ├── FindBCM_VC.cmake │ ├── FindLame.cmake │ ├── FindMiriSDR.cmake │ ├── FindRTLSDR.cmake │ └── version.cmake ├── config.cpp ├── config.h.in ├── ctcss.cpp ├── ctcss.h ├── filters.cpp ├── filters.h ├── generate_signal.cpp ├── generate_signal.h ├── hello_fft/ │ ├── CMakeLists.txt │ ├── gpu_fft.c │ ├── gpu_fft.h │ ├── gpu_fft.txt │ ├── gpu_fft_base.c │ ├── gpu_fft_shaders.c │ ├── gpu_fft_trans.h │ ├── gpu_fft_twiddles.c │ ├── hex/ │ │ ├── shader_1024k.hex │ │ ├── shader_128k.hex │ │ ├── shader_16k.hex │ │ ├── shader_1k.hex │ │ ├── shader_2048k.hex │ │ ├── shader_256.hex │ │ ├── shader_256k.hex │ │ ├── shader_2k.hex │ │ ├── shader_32k.hex │ │ ├── shader_4k.hex │ │ ├── shader_512.hex │ │ ├── shader_512k.hex │ │ ├── shader_64k.hex │ │ ├── shader_8k.hex │ │ └── shader_trans.hex │ ├── mailbox.c │ └── mailbox.h ├── helper_functions.cpp ├── helper_functions.h ├── input-common.cpp ├── input-common.h ├── input-file.cpp ├── input-file.h ├── input-helpers.cpp ├── input-helpers.h ├── input-mirisdr.cpp ├── input-mirisdr.h ├── input-rtlsdr.cpp ├── input-rtlsdr.h ├── input-soapysdr.cpp ├── input-soapysdr.h ├── logging.cpp ├── logging.h ├── mixer.cpp ├── output.cpp ├── pulse.cpp ├── rtl_airband.cpp ├── rtl_airband.h ├── rtl_airband_neon.s ├── squelch.cpp ├── squelch.h ├── test_base_class.cpp ├── test_base_class.h ├── test_ctcss.cpp ├── test_filters.cpp ├── test_generate_signal.cpp ├── test_helper_functions.cpp ├── test_squelch.cpp ├── udp_stream.cpp └── util.cpp