The input is an array of bytes that represents the h.264 frame. A frame consists of one fragment (and not a multi-layer frame).
So, as I understand it, I can handle this frame as a slice. There is a header in the slice, and the slice data is macroblocks, each macroblock with its own header.
So, I have to analyze this array of bytes in order to extract the frame number, frame type, quantization coefficient (since I realized that each macroblock has its own coefficient? Or am I mistaken?)
Can you advise me where I can get more detailed information on parsing h.264 frame bytes.
(I actually read the standard, but it was not very specific, and I got lost.)
thanks
source share