Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

isodump(5) [debian man page]

isodump(5)							  Linux IEEE 1394							isodump(5)

NAME
isodump - format of IEEE 1394 isochronous packets dump file DESCRIPTION
The isodump format stores a series of IEEE 1394 isochronous stream packets (possibly from multiple channels), including their headers. Its main use is as the output format of dumpiso(1) and the input format of sendiso(1). The 32 byte header starts at offset 0 with the string "1394 isodump v1" followed by a zero byte. The next 8 bytes form a 64 bit big endian integer, which represents a bit mask of the channels that were dumped. A set bit at position (1 << x) signifies that channel x was being listened on. The following 8 bytes are set to zero. The iso packets follow the header and are appended to the data stream in the order they were received. The packets consist of the header quadlet as originally received and the data quadlets following directly. The CRC quadlets after header and data do not appear and every- thing is in big endian, as seen on the bus. There is no further framing of the packets in the format, packet boundaries can be found by looking at the data size field in the header quadlet of each packet. The data size field appears in the most significant 16 bits of the header quadlet, contain the size in bytes (the actual packet is padded to a multiple of four bytes) and do not include the header packet. COMPATIBILITY
This format was introduced with the iso send and dump tools distributed with libraw1394. No one else uses it so far. SEE ALSO
sendiso(1), dumpiso(1) AUTHOR
Andreas Bombe <aeb@debian.org> libraw1394 2.0.9 isodump v1 isodump(5)

Check Out this Related Man Page

sendiso(1)							  Linux IEEE 1394							sendiso(1)

NAME
sendiso - send IEEE 1394 isochronous packets from dump file SYNOPSIS
sendiso [ options ] FILE DESCRIPTION
sendiso takes the dump file FILE as generated by dumpiso(1), extracts the packets and sends them as they were received (in the same order, with the same channel numbers) as fast as possible - timing of the original dump is not preserved. This program does not allocate any isochronous resources but just starts sending. It should not be used in live environments where it might interfere with properly set up isochronous transmissions, it is a debug and performance benchmarking tool. OPTIONS
-l, --loop=COUNT Send dump file COUNT times. Defaults to 1. -i, --infinite Send dump file in an endless loop. -s, --speed=SPEED Send packets at speed SPEED, which can be given as 100, 200 and 400 (in Mbit/s) or abbreviated as 1, 2 and 4. Defaults to 100. -p, --port=PORT Choose port PORT for sending. A port is a 1394 card or chip and represents one connected bus, therefore this is only relevant when you have multiple of these. Defaults to 0. -h, --help Show help text and exit. BUGS
None known. SEE ALSO
dumpiso(1), isodump(5) AUTHOR
Andreas Bombe <aeb@debian.org> libraw1394 2.1.0 sendiso(1)
Man Page

3 More Discussions You Might Find Interesting

1. Programming

how i prepare a c++ code(c code) for implementing my own protocol format

helo my protocol format is given below { destno,mode,no.of packet,pktsize,,pktno,textsize,CRC} description:- { is starting flag destno - 4bytes mode - 1 byte no.of pkt - 4byes pktsize - 6 bytes ... (1 Reply)
Discussion started by: amitpansuria
1 Replies

2. UNIX for Dummies Questions & Answers

Check header of file, without opening the file

if we happen to have a very big .csv file we cannot or dont care to edit, is there a way to check if the file contains a header row? (2 Replies)
Discussion started by: lydiaflamp
2 Replies

3. UNIX for Dummies Questions & Answers

Using sed command to remove multiple instances of repeating headers in one file?

Hi, I have catenated multiple output files (from a monte carlo run) into one big output file. Each individual file has it's own two line header. So when I catenate, there are multiple two line headers (of the same wording) within the big file. How do I use the sed command to search for the... (1 Reply)
Discussion started by: rebazon
1 Replies