From df26d1ef3104371c8b66e0ba652547d1ae9cbe94 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli (think)" Date: Sun, 10 Nov 2013 22:24:36 +0100 Subject: update READMEs and such, and ChangeLog for r8 --- doc/README-Fileinput | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 doc/README-Fileinput (limited to 'doc') diff --git a/doc/README-Fileinput b/doc/README-Fileinput new file mode 100644 index 0000000..f8e9ab2 --- /dev/null +++ b/doc/README-Fileinput @@ -0,0 +1,26 @@ +The file input support three file formats: + + Framed format is used for file recording. It is the default format. The + padding can be removed from data. Format: + uint32_t nbFrames + for each frame + uint16_t frameSize + uint8_t data[frameSize] + + Streamed format is used for streamed applications. As the total number of + frames is unknown before end of transmission, the corresponding field is + removed. The padding can be removed from data. Format: + for each frame + uint16_t frameSize + uint8_t data[frameSize] + + Raw format is a bit-by-bit (but byte aligned on sync) recording of a G.703 + data stream. The padding is always present. Format: + for each frame + uint8_t data[6144] + + Please note that our raw format can also be referred to as ETI(NI, G.703) or ETI(NI). + + +All numbers are little-endian. +This description has been taken from the CRC mmbTools forum. -- cgit v1.2.3