I need to know the relation of the data provided by trace files with the real bitstream file.
Using JSVM someone can have a video trace file as the output of BitStreamExtractorStatic using the flag -pt. The question I have is in which way are the data of the video trace file mapped with the real bitstream file (to segment the bitstream file in a right way).
The first column of the trace file gives start position of each of the packets starting from position 0x0000000.
Provided this, I suppose that the value of the last record of the file should be equal to the file size in bytes of the bitstream file, am I right? But these two do never match, they are close but the never match.
My intention is to segment the bitstream file into packets and then try transfer it over the network (this will be done in simulation mode building my own simulation). I suppose that to do that I have to use the trace file provided as output from BitStreamExtractorStatic.
So the question is "can I use this trace file to segment the bitstream file in the scheme provided by the trace file"?