Minor changes

This commit is contained in:
Andrea Bondavalli 2020-04-24 10:59:19 -07:00
parent 0757318732
commit 9d714eb747
4 changed files with 6 additions and 8 deletions

View File

@ -18,7 +18,7 @@ The driver handles the PTP and RTP packets processing and acts as a PTP clock sl
The daemon communicates with the driver for control, configuration and status monitoring only by using _netlink_ sockets.
The daemon implements a REST interface to configure and monitor the _Sources_, the _Sinks_ and PTP slave. See [README](daemon/README.md) for additional info.
It also implements SAP sources discovery and advertisement compatible with AES67 standard and mDNS sources discovery and advertisement compatible with Ravenna standard.
It also implements SAP sources discovery and advertisement compatible with AES67 standard and mDNS sources discovery and advertisement compatible with Ravenna standard.
A WebUI is provided to allow daemon and driver configuration and monitoring. The WebUI uses the daemon REST API and exposes all the supported configuration paramaters for the daemon, the PTP slave clock, the _Sources_ and the _Sinks_. The WebUI can also be used to monitor the PTP slave status and the _Sinks_ status and to browse the remote SAP and mDNS sources.
@ -125,7 +125,7 @@ make sure that no instances of the aes67-daemon are running, enter the [tests](d
## Run the demo ##
<a name="demo"></a>
To run a simple demo use the [run\_demo.sh](run_demo.sh) script. See [script notes](#notes).
The demo configures and uses a loopback of 8 channels with AM824 codec (S32 format) codec at 48Khz and saves the output to a wav file.
The demo configures and uses a loopback of 8 channels with AM824 codec (S32 format) at 48Khz and saves the output to a wav file.
The demo performs the following operations:

View File

@ -132,8 +132,8 @@ In case of failure the server returns a **text/plain** content type with the cat
* **Body type** application/json
* **Body** [RTP Streams params](#rtp-streams)
### Get all remote RTP Sources ###
* **Description** retrieve all the remote sources collected via SAP and mDNS
### Get remote RTP Sources ###
* **Description** retrieve the remote sources collected via SAP, via mDNS or both
* **URL** /api/browse/sources/[all|mdns|sap]
* **Method** GET
* **URL Params** all=[all sources], mdns=[mDNS sources only], sap=[sap sources only]

View File

@ -17,10 +17,9 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
#include "mdns_server.hpp"
#include <boost/asio.hpp>
#include "mdns_server.hpp"
#include "config.hpp"
#include "interface.hpp"
#include "log.hpp"

View File

@ -16,7 +16,6 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "rtsp_server.hpp"
#include "utils.hpp"
using boost::asio::ip::tcp;
@ -178,7 +177,7 @@ void RtspSession::build_response(const std::string& url) {
void RtspSession::read_request() {
auto self(shared_from_this());
if (length_ == max_length) {
/* request cannot be consumed and we execeeded max length */
/* request cannot be consumed and we exceeded max length */
stop();
} else {
socket_.async_read_some(