diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-10-05 16:09:31 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-10-05 16:09:31 +0200 |
commit | 7c1c779cfd01162d020d0c276bb605adfe338df9 (patch) | |
tree | 415265244ecc90de6e01ff705b25edc67b813448 /doc | |
parent | b76df807e61e25e07fa3ee075dab255355b278fd (diff) | |
download | dabmux-7c1c779cfd01162d020d0c276bb605adfe338df9.tar.gz dabmux-7c1c779cfd01162d020d0c276bb605adfe338df9.tar.bz2 dabmux-7c1c779cfd01162d020d0c276bb605adfe338df9.zip |
Add load_entire_file option for file inputs
Diffstat (limited to 'doc')
-rw-r--r-- | doc/advanced.mux | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/advanced.mux b/doc/advanced.mux index fd7a06c..61328d7 100644 --- a/doc/advanced.mux +++ b/doc/advanced.mux @@ -278,6 +278,20 @@ subchannels { ; (1 << 20) + (1 << 17) + (1 << 0) = 0x120001 ;inputuri "prbs://:0x120001 } + + ; An example using 'enhancedpacket' to send out epg data + ; See http://wiki.opendigitalradio.org/How_to_configure_SPI_(Service_and_Programme_Information)_for_ODR-DabMux + sub-data { + id 6 + type enhancedpacket + ; Settings this flag to true makes ODR-DabMux preload the entire file contents into memory + ; This allows you to replace the file contents while the current file data still gets transmitted to the + ; end. + load_entire_file true + inputfile "./epg.dat" + protection 1 + bitrate 32 + } } ; For now, each component links one service to one subchannel @@ -299,6 +313,7 @@ components { ; FIG 0/13 user application was previously configured using the figtype setting, which ; allowed only a single user application. + ; Now more than one user application can be defined per component, using the ; Using the 'user-applications' section, several can be defined per component. ; Do not use both figtype and user-applications. |