aboutsummaryrefslogtreecommitdiffstats
path: root/appendix.tex
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2014-05-02 15:31:11 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2014-05-02 15:31:11 +0200
commit1fe1be7de91b011e24be0f773f7003adc54078d9 (patch)
tree9f2f89618a1798a4ed9b5270b7ac4a47b3c4fe27 /appendix.tex
parentbab05a6977a4f07971355f43307b1450a7272a0e (diff)
downloadmmbtools-doc-1fe1be7de91b011e24be0f773f7003adc54078d9.tar.gz
mmbtools-doc-1fe1be7de91b011e24be0f773f7003adc54078d9.tar.bz2
mmbtools-doc-1fe1be7de91b011e24be0f773f7003adc54078d9.zip
Introduction and Origins
Diffstat (limited to 'appendix.tex')
-rw-r--r--appendix.tex10
1 files changed, 5 insertions, 5 deletions
diff --git a/appendix.tex b/appendix.tex
index e366e7f..fd2169e 100644
--- a/appendix.tex
+++ b/appendix.tex
@@ -1,14 +1,14 @@
-\section{CRC-DABMUX ETI file formats}
+\section{ODR-DabMux ETI file formats}
\label{etiformat}
-CRC-DABMUX supports three output formats for the ETI stream, that have been described on the mmbTools forum
+ODR-DabMux supports three output formats for the ETI stream, that have been described on the mmbTools forum
website.\footnote{\url{http://mmbtools.crc.ca/component/option,com\_fireboard/Itemid,55/func,view/id,4/catid,13/\#28}}
The three formats are called \emph{framed}, \emph{streamed} and \emph{raw}.
The \emph{framed} format is used for saving a finite ETI stream into a file. Each frame does not contain any padding, and the
format can be described as follows:
-\begin{lstlisting}
+\begin{lstlisting}
uint32_t nbFrames
// for each frame
uint16_t frameSize
@@ -17,7 +17,7 @@ uint32_t nbFrames
When streaming data, in which case the number of frames is not known in advance, the \emph{streamed} format can be used.
This format is identical to the first one except for the missing \texttt{nbFrames}.
-\begin{lstlisting}
+\begin{lstlisting}
// for each frame
uint16_t frameSize
uint8_t data[frameSize]
@@ -25,7 +25,7 @@ This format is identical to the first one except for the missing \texttt{nbFrame
The \emph{raw} format corresponds to ETI(NI), where each frame has a constant size of 6144 Bytes. The padding in this
case is necessary.
-\begin{lstlisting}
+\begin{lstlisting}
// for each frame
uint8_t data[6144]
\end{lstlisting}