From a8b833ddc02205245a540fa071abc4d678e3cd2b Mon Sep 17 00:00:00 2001 From: Andrea Bondavalli Date: Sat, 13 May 2023 12:36:40 +0200 Subject: [PATCH] Changed daemon version to v1.6.3, updated documentation and restored daemon test parameters --- README.md | 4 ++-- daemon/README.md | 2 +- daemon/main.cpp | 2 +- systemd/install.sh | 4 ++-- test/daemon.conf | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 1be6524..c98484d 100644 --- a/README.md +++ b/README.md @@ -211,7 +211,7 @@ The script allows a user to test a specific configuration and it can be used to Usage run_test.sh sample_format sample_rate channels duration sample_format can be one of S16_LE, S24_3LE, S32_LE - sample_rate can be one of 44100, 48000, 96000 + sample_rate can be one of 44100, 48000, 96000, 192000, 384000 channels can be one of 2, 4, 6, up to 64 duration is in the range 1 to 10 minutes @@ -269,7 +269,7 @@ The script allows a user to test the latency on a specific configuration and it Usage run_latency_test.sh sample_format sample_rate channels duration frames sample_format can be one of S16_LE, S24_3LE, S32_LE - sample_rate can be one of 44100, 48000, 96000 + sample_rate can be one of 44100, 48000, 96000, 192000, 384000 channels can be one of 2, 4, 6, up to 64 duration of the test in seconds frames buffer size in frames diff --git a/daemon/README.md b/daemon/README.md index 9ddc21e..877ec1d 100644 --- a/daemon/README.md +++ b/daemon/README.md @@ -237,7 +237,7 @@ where: > **sample\_rate** > JSON number specifying the default sample rate. -> Valid values are 44100Hz, 48000Hz and 96000Hz. +> Valid values are 44100Hz, 48000Hz, 96000Hz, 192000Hz and 384000Hz. > **playout\_delay** > JSON number specifying the default safety playout delay at 1FS in samples. diff --git a/daemon/main.cpp b/daemon/main.cpp index 8706fbe..0a8aa8d 100644 --- a/daemon/main.cpp +++ b/daemon/main.cpp @@ -39,7 +39,7 @@ namespace po = boost::program_options; namespace postyle = boost::program_options::command_line_style; namespace logging = boost::log; -static const std::string version("bondagit-1.6.2"); +static const std::string version("bondagit-1.6.3"); static std::atomic terminate = false; void termination_handler(int signum) { diff --git a/systemd/install.sh b/systemd/install.sh index dadee42..9990737 100755 --- a/systemd/install.sh +++ b/systemd/install.sh @@ -5,9 +5,9 @@ #create a user for the daemon sudo useradd -M -l aes67-daemon -c "AES67 Linux daemon" -#copy the daemon binary +#copy the daemon binary, make sure -DWITH_SYSTEMD=ON sudo cp ../daemon/aes67-daemon /usr/local/bin/aes67-daemon -#create the daemon webui and scripts directories +#create the daemon webui and script directories sudo install -d -o aes67-daemon /var/lib/aes67-daemon /usr/local/share/aes67-daemon/scripts/ /usr/local/share/aes67-daemon/webui/ #copy the ptp script sudo install -o aes67-daemon ../daemon/scripts/ptp_status.sh /usr/local/share/aes67-daemon/scripts/ diff --git a/test/daemon.conf b/test/daemon.conf index bec67fe..bf88a92 100644 --- a/test/daemon.conf +++ b/test/daemon.conf @@ -4,7 +4,7 @@ "http_base_dir": "./webui/dist", "log_severity": 3, "playout_delay": 0, - "tic_frame_size_at_1fs": 48, + "tic_frame_size_at_1fs": 64, "max_tic_frame_size": 1024, "sample_rate": 48000, "rtp_mcast_base": "239.1.0.1",