aboutsummaryrefslogtreecommitdiffstats
path: root/src/DabMultiplexer.cpp
Commit message (Collapse)AuthorAgeFilesLines
* EDI: put more code in common between DabMux and ZMQ2EDIMatthias P. Braendli2019-05-061-95/+4
|
* Rework timestampingMatthias P. Braendli2019-02-181-55/+43
| | | | | | | * Ensure MNSC and EDI carry the same timestamp * Rename `edi_tistoffset` to `tist_offset` * Remove conditional compilation of EDI output * Reset PPS so as to align ETI frames across mux restarts
* Remove references to nonfunctional FIDCMatthias P. Braendli2019-02-131-1/+0
|
* Merge KuntzeM's pull request fixing #35 into nextMatthias P. Braendli2019-02-131-4/+13
|\ | | | | | | ETI with DAB (MUSICAM) and EEP_A protection level was not possible.
| * fixed bug DAB with protection level EEP_A 1-4KuntzeM2019-02-111-4/+13
| |
* | EDI: correct value of ATST seconds fieldMatthias P. Braendli2019-01-281-14/+12
| |
* | Use reentrant gmtime and localtime functions, and other tweaksMatthias P. Braendli2019-01-281-9/+9
| |
* | Add EDI timestamp offset configurationMatthias P. Braendli2019-01-101-4/+12
|/
* Allow user to specify TAI bulletin URLsMatthias P. Braendli2018-12-181-1/+14
|
* Check Linkage set key service on startupMatthias P. Braendli2018-02-211-13/+17
|
* Use shared_ptr instead of component and subchannel pointersMatthias P. Braendli2018-02-201-38/+28
|
* Add TAI bulletin expiry to RC and to muninMatthias P. Braendli2018-01-311-0/+7
|
* Add work in progress odr-zmq2ediMatthias P. Braendli2017-07-281-1/+17
|
* Add new zeromq config formatMatthias P. Braendli2017-07-281-13/+13
| | | | | | This gives the choice for the transmission of the metadata, and the enabling of the TAI downloader is also triggered appropriately
* Add edi time and utco as ZMQ metadataMatthias P. Braendli2017-07-281-4/+12
| | | | | Since ODR-DabMod doesn't check the zmq message length, it will accept additional metadata at the end of the ETI data
* Use enum for transmission modeMatthias P. Braendli2017-06-171-3/+17
|
* Make EDI fragment interleaver less burstyMatthias P. Braendli2017-02-031-0/+5
|
* Avoid uninitialised fields, modernise DabService::nbComponentMatthias P. Braendli2017-01-281-1/+2
|
* Fix important EDI Timestamp issuesMatthias P. Braendli2017-01-181-1/+3
| | | | | | | | | | First, use more servers, not only those from USNO that currenty show problems. Add a server from IETF and the github repository from the tz project that mirrors that file. Second, fix issues about parsing the bulletin and error handling. Third, run the bulletin update asynchronously once the mux runs, to avoid blocking it.
* Rename set_utco to set_tai_utc_offsetMatthias P. Braendli2017-01-181-1/+1
|
* Move fragments into interleaver instead of copying themMatthias P. Braendli2016-12-241-3/+1
|
* Add EDI fragment interleaverMatthias P. Braendli2016-12-231-2/+11
|
* Create namespace for EDIMatthias P. Braendli2016-12-231-9/+9
|
* Remove useless creation of AFPacketiser and update some commentsMatthias P. Braendli2016-12-231-4/+0
|
* Modernize a few bits and piecesMatthias P. Braendli2016-10-291-1/+1
|
* Replace NULL by nullptrMatthias P. Braendli2016-10-281-3/+3
|
* Rework remotecontrolMatthias P. Braendli2016-10-071-12/+15
|
* Drop SLIP, Refactor sockets, improve TCP outputMatthias P. Braendli2016-09-111-8/+2
| | | | | | | | Quite a large refactoring of the sockets, TCP and UDP, in order to improve the ETI-over-TCP output. This can now accept several simultaneous connections, and requires a throttle. The SLIP input is gone. The UDP inputs are currently broken.
* Remove dabUtils.{h,cpp}, move to utilsMatthias P. Braendli2016-08-221-4/+0
| | | | Also remove the obsolete dump code
* Switch FIG0/10 to long formMatthias P. Braendli2016-08-221-3/+2
| | | | | The latest draft specification deprecates the short form, and most muxes today used the long form.
* Add comment about ASCTy for DAB+Matthias P. Braendli2016-07-111-1/+9
|
* Fix typo that broke startAddress initialisationMatthias P. Braendli2016-04-151-1/+1
|
* Rename dabSubchannel to DabSubchannelMatthias P. Braendli2016-04-151-5/+5
|
* Make all getSizeXYZ dabSubchannel member functionsMatthias P. Braendli2016-04-151-7/+7
|
* Make getSizeCu a dabSubchannel member functionMatthias P. Braendli2016-04-151-2/+2
|
* Replace DabService::program by functionMatthias P. Braendli2016-04-151-17/+0
|
* Remove incomplete setptree ManagementServer commandMatthias P. Braendli2016-04-011-14/+0
|
* Remove old carouselMatthias P. Braendli2016-04-011-1089/+5
|
* Replace clock_gettime with std::chrono for EDIMatthias P. Braendli2016-03-051-6/+3
|
* Compile under OSXMatthias P. Braendli2016-03-051-1/+3
|
* Enable new carousel by defaultMatthias P. Braendli2016-02-281-1/+1
|
* Remove ConfInd watermark from old carouselMatthias P. Braendli2016-02-271-34/+1
|
* Change EDI configuration for multi-outputMatthias P. Braendli2016-02-051-27/+34
|
* Fix TIST definitionMatthias P. Braendli2016-01-291-3/+3
| | | | | | | Before, the TIST was wrongly incremented by 12ms instead of 24ms. Was wrong since commit c509b9af6e043220a5949a86e3d7121728b23429 no release was impacted.
* Only set CLOCK_TAI if both TIST and EDI are enabledMatthias P. Braendli2016-01-291-12/+9
|
* Set edi TIST, still in an incorrect wayMatthias P. Braendli2016-01-101-18/+26
|
* Add TAI handling for EDI with TISTMatthias P. Braendli2016-01-101-0/+36
|
* Replace some boost shared_ptr by std onesMatthias P. Braendli2015-12-211-5/+5
|
* Add missing initialisationMatthias P. Braendli2015-12-181-0/+1
|
* EDI: Simplify subchannel handlingMatthias P. Braendli2015-12-181-9/+8
|