aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Add --version optionMatthias P. Braendli2020-07-211-0/+12
|
* Improve print for user-application type at startupMatthias P. Braendli2020-07-151-33/+40
|
* Fix FIG0/13 for packet servicesMatthias P. Braendli2020-07-151-1/+6
|
* Set basic profile in FIG0/13 SPI user applicationMatthias P. Braendli2020-07-131-3/+20
|
* Add possibility to set several user application types in FIG0/13Matthias P. Braendli2020-07-139-143/+207
|
* Rework timestamped EDI input and adapt to new APIMatthias P. Braendli2020-05-111-50/+60
|
* Fix FIG2 config parsing and segment count issueMatthias P. Braendli2020-04-272-14/+7
| | | | Thanks to Maik for his patch
* Merge PR 45 with Alarm HandlingMatthias P. Braendli2020-04-013-3/+18
|\
| * Revert "add linkage set activator flag to remote controllable"KuntzeM2020-03-283-68/+16
| | | | | | | | This reverts commit fc1f1640278e7eb228ec1a6290d30b95f1b6a476.
| * change FIG 0/0 alarm flag if an alarm cluster available in muxKuntzeM2020-03-173-1/+10
| |
| * add Alarm Announcement Workaround to set Cluster ID 0xFF in FIG 0/18KuntzeM2020-03-151-3/+9
| |
| * add linkage set activator flag to remote controllableKuntzeM2020-03-153-17/+69
| |
* | zmq2edi: detect FCT discontinuityMatthias P. Braendli2020-03-301-55/+68
| |
* | zmq2edi: add startupcheckMatthias P. Braendli2020-03-261-3/+33
| |
* | Show total buffering time statistics in odr-zmq2ediMatthias P. Braendli2020-03-263-55/+86
| |
* | Rename ZMQ_ENCODER_XYZ constantsMatthias P. Braendli2020-03-252-4/+4
| |
* | zmq2edi: also catch logic errors in main()Matthias P. Braendli2020-03-181-2/+5
|/
* Implement a hash function to calculate FIG 0/7 Count fieldMatthias P. Braendli2020-03-114-48/+117
| | | | | | This might not be strictly standards compliant, but it avoids having to save state across mux restarts and doesn't place the burden of incrementing the number on the operator.
* Handle errors in EDI inputMatthias P. Braendli2020-03-111-2/+14
|
* Make FIG 0/7 optional and documentMatthias P. Braendli2020-03-115-13/+16
|
* Simplify special FIG0/0 and 0/7 carousel handlingMatthias P. Braendli2020-03-111-59/+36
|
* Merge KuntzeM's FIG0/7Matthias P. Braendli2020-03-117-5/+183
|\
| * add special FIG 0/7 handling to send directly after FIG 0/0Mathias Kuntze2020-03-101-1/+48
| |
| * fixed FIG 0/7 dependencyMathias Kuntze2020-03-061-0/+1
| |
| * add FIG 0/7Mathias Kuntze2020-03-067-4/+134
| |
* | Replace new/delete in ZMQ input by vectorMatthias P. Braendli2020-02-252-12/+13
| |
* | Fix issue that input stays in Unstable when it is prebufferingMatthias P. Braendli2020-02-252-17/+28
|/
* Make EDI input stats consistent with ZMQ when stream absentMatthias P. Braendli2020-01-071-0/+6
|
* Initialise EDI buffer_size and prebuffering to reasonable valuesMatthias P. Braendli2019-12-201-2/+2
|
* Make EDI input TIST delay configurableMatthias P. Braendli2019-12-104-5/+21
|
* Add startupcheck functionalityMatthias P. Braendli2019-11-251-0/+20
|
* zmq2edi: never quit because of input resets, make backoff configurableMatthias P. Braendli2019-11-201-6/+10
|
* Initialise TIST with consistent system time at startupMatthias P. Braendli2019-11-151-14/+13
| | | | | | | | | | | | | | | | The change introduced in fd33dd4 (v2.4.0) had the consequence of generating different timestamp offsets depending on when exactly the mux was started. The intended goal to avoid having the NULL symbol output at a fixed offset to avoid receiver synchronisation is however not so important, because most commercial receivers will cut transmission for several seconds before resuming, and the majority of the receivers will then start resynchronising. However, the different timestamp offsets upsets some modulator input modules, which so not necessarily have enough buffering capacity. This change reverts back to the previous behaviour, where the timestamp is set to current system time, rounded to 24ms.
* Improve zmq2edi usage screen readabilityMatthias P. Braendli2019-10-291-13/+14
|
* Use new EDI input API with callbackMatthias P. Braendli2019-10-012-18/+17
|
* EDI input: fix timestamped frame readMatthias P. Braendli2019-10-011-10/+11
|
* Improve EDI configuration, making a few settings optionalMatthias P. Braendli2019-09-231-4/+10
|
* Make EDI input buffer configurableMatthias P. Braendli2019-09-233-6/+25
|
* Add buffermanagement setting to RCMatthias P. Braendli2019-09-237-44/+130
|
* EDI in: add audio levels metadata and source versionMatthias P. Braendli2019-09-185-9/+95
|
* Fix EDI with timestamping inputMatthias P. Braendli2019-09-0512-47/+46
|
* Take BufferManagement setting into accountMatthias P. Braendli2019-09-053-2/+30
|
* Fix usage of abs() in Edi inputMatthias P. Braendli2019-08-271-2/+3
|
* EDI input: add new buffer managementMatthias P. Braendli2019-08-2711-62/+215
|
* Make InputBase::close() return voidMatthias P. Braendli2019-08-2711-16/+11
|
* Make InputBase::setBitrate fail with invalid_argument instead of return valueMatthias P. Braendli2019-08-277-12/+25
|
* Make InputBase::open() return voidMatthias P. Braendli2019-08-2712-29/+18
|
* Add missing climits includeMatthias P. Braendli2019-08-211-0/+1
|
* Add virtual dtor for metadata base classMatthias P. Braendli2019-08-211-0/+2
|
* Simplify nonblocking File inputMatthias P. Braendli2019-08-211-17/+20
|