- 27 Aug, 2016 1 commit
-
-
Rahul Bedarkar authored
With glibc 2.16, we get following build error when building jack2: [193/247] cxx: tests/iodelay.cpp -> build/tests/iodelay.cpp.4.o ../tests/iodelay.cpp:171:43: error: 'UINT32_MAX' was not declared in this scope ../tests/iodelay.cpp:171:55: error: 'UINT32_MAX' was not declared in this scope ../tests/iodelay.cpp:172:44: error: 'UINT32_MAX' was not declared in this scope ../tests/iodelay.cpp:172:56: error: 'UINT32_MAX' was not declared in this scope In glibc 2.17 or older version, Header <stdint.h> defines these macros for C++ only if explicitly requested by defining __STDC_LIMIT_MACROS. We can't use <cstdint> since it requires C++11 standard. This build issue found by Buildroot autobuilder. http://autobuild.buildroot.net/results/369/369ce208ffea43dad75ba0a13469159b341e3bf5/ Signed-off-by:
Rahul Bedarkar <rahul.bedarkar@imgtec.com>
-
- 11 Jun, 2016 3 commits
-
-
Adrian Knoth authored
jack_latency_range_t is struct _jack_latency_range { jack_nframes_t min; jack_nframes_t max; }; and jack_nframes_t is typedef uint32_t jack_nframes_t; so it's unsigned. Initialising it with -1 is invalid (at least in C++14). We cannot use {0, 0}, because latency_cb has jack_latency_range_t range; range.min = range.max = 0; if ((range.min != capture_latency.min) || (range.max != capture_latency.max)) { capture_latency = range; } so we must not have {0, 0}, otherwise the condition would never be true. Using UINT32_MAX should be equivalent to the previous -1.
-
Adrian Knoth authored
Space required before macro. No functional changes.
-
Adrian Knoth authored
If configured with --clients=512 (translates to CLIENT_NUM), we exceed the maximum stack size. CLIENT_NUM==500 still works, but let's allocate the matrix on the heap to be safe. Kudos to Markus Seeber for the initial bug triage. Fixes #212
-
- 17 May, 2016 1 commit
-
-
Karl Linden authored
-
- 19 Apr, 2016 2 commits
-
-
Stéphane Letz authored
Add support for nios2
-
Bernd Kuhls authored
When compiling jack on nios2, compilation fails because NGREGS is not defined. Since this is only for debug output on segmentation faults, stub the debug print out like it's been done for other platforms before. Inspired by https://github.com/jackaudio/jack2/commit/d11bb095291d8880508c87adfe625bf2bcab1456 Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de>
-
- 31 Mar, 2016 6 commits
-
-
Karl Linden authored
-
Karl Linden authored
-
Karl Linden authored
-
Karl Linden authored
-
Karl Linden authored
-
Karl Linden authored
-
- 30 Mar, 2016 1 commit
-
-
Stephane Letz authored
-
- 21 Mar, 2016 1 commit
-
-
Stephane Letz authored
-
- 18 Mar, 2016 6 commits
-
-
Stéphane Letz authored
allow to use source date for man page generation
-
Stephane Letz authored
This reverts commit b4e7e875.
-
Bernhard M. Wiedemann authored
this enables making reproducible builds of this package
-
Stephane Letz authored
-
Stephane Letz authored
-
Stéphane Letz authored
Fix Netjack crashes due to broken alignment
-
- 11 Mar, 2016 2 commits
-
-
Xavier Mendez authored
-
Xavier Mendez authored
See discussion at http://comments.gmane.org/gmane.comp.audio.jackit/29516
-
- 25 Feb, 2016 2 commits
-
-
Karl Linden authored
-
Stéphane Letz authored
Use ARM neon intrinsics for AudioBufferMixdown
-
- 24 Feb, 2016 1 commit
-
-
falkTX authored
-
- 11 Feb, 2016 1 commit
-
-
Stephane Letz authored
Correct JackDriver::Open : call to fGraphManager->SetBufferSize has to use current fEngineControl->fBufferSize value.
-
- 10 Feb, 2016 2 commits
-
-
Stephane Letz authored
-
Stephane Letz authored
Correct midiseq.c : better use jack_midi_reset_buffer instead of jack_midi_clear_buffer for output port.
-
- 28 Jan, 2016 2 commits
-
-
Karl Linden authored
-
Karl Linden authored
-
- 01 Jan, 2016 2 commits
-
-
Stephane Letz authored
-
Stephane Letz authored
-
- 13 Dec, 2015 7 commits
-
-
Karl Linden authored
-
Karl Linden authored
This makes sure header checks work when the third party package is installed in a non-standard location, as long as a pkg-config file is found.
-
Karl Linden authored
-
Karl Linden authored
-
Karl Linden authored
-
Karl Linden authored
It is already defined by conf.define().
-
Karl Linden authored
-