aboutsummaryrefslogtreecommitdiffstats
path: root/speexdsp
AgeCommit message (Collapse)AuthorFilesLines
2022-12-16Windows: Use SpeexDSP binary packageJoão Valverde6-1927/+0
Remove bundled code and use vcpkg binary library instead.
2022-08-05Windows: Don't define or check for WIN32.Gerald Combs1-1/+1
_WIN32 is defined by the compiler, and is arguably a more reliable test that WIN32. Switch to checking for _WIN32 in a couple of places in the code. Remove a WIN32 definition from config.h. It was added for the WinPcap developer pack but we no longer use that.
2021-12-22Corrects repeated words throughout the code.Moshe Kaplan1-1/+1
Repeated words were found with: egrep "(\b[a-zA-Z]+) +\1\b" . -Ir and then manually reviewed. Non-displayed strings (e.g., in comments) were also corrected, to ease future review.
2021-12-12Add remaining header files to DoxygenMoshe Kaplan1-1/+3
Add @file markers for remaining header files so that Doxygen will generate documentation for them.
2021-10-22Add wslog.h to wireshark.hJoão Valverde1-1/+2
wslog has a small surface, few dependencies and is near essential for Wireshark development and debugging. Pulling wmem.h is not a problem either, the library is self contained and again memory allocation and general data structures are essential components.
2019-05-02CMake: Check for and use system SpeexDSP libraryJoão Valverde6-0/+1924
Change-Id: I8443379d23a2946dd21c12e5e0bd5464ab73ca25 Reviewed-on: https://code.wireshark.org/review/31857 Reviewed-by: Peter Wu <peter@lekensteyn.nl> Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: João Valverde <j@v6e.pt>