I am working with x264 encoder api where for every encoded picture i get a number of nal unit. is there any way i can check whether nals are valid or not in my VS2010 Debugger. Currently i can see the following information::
i_ref_idc -858993460
i_type -858993460
b_long_startcode -858993460
i_first_mb -858993460
i_last_mb -858993460
i_payload 27
p_payload 0x06b94d68
i_padding -858993460
i m not sure whether these negative values are representing that nals are invalid or it is missing information.
Basically how can i check that the nals i got from x264_encoder_encode() is a valid nal unit?
NOTE :: i m using these nals to stream live using LIVE555.