Hello All,
a question about H264. Suppose I use the H264 encoder to stream over the network, for instance sending multicast packets. Can I start to receive and decode from an arbitrary point of the stream OR the decoder must start with the first encoded packet?
I ask this because it seems that starting decoding from an arbitrary point of the stream, after providing the encoded input buffers to the decoder, the
hOutBuf = Vdec2_getDisplayBuf(hVd2);
always returns null pointers.
The Vdec2_process(...) sometimes returns Dmai_EBITERROR (4), i.e. the values returned are more or less like this 0,0,0,4,0,4,4...
I am also interested in the behaviour of the decoder when some packet is lost by the network.
Thank you.