I'm trying to extract information about the frame types in TS packets. Using FFMEPG I'm sending MPEG TS encapsulated video (compressed with x264), and on the other side I'm recording the received packets with Wireshark. My packets are 188 bytes long, which corresponds to one MPEG TS packet. Now I need to find out which TS packets carry I, P, or B frame data.
I tried to detect Picture Header in my data (00 00 01 00), based on this post: http://forum.digital-digest.com/f4/help-extract-i-frames-mpeg2-ts-89736.html but I couldn't find it. All I can register is the start of PES packet (00 00 00 01 E0). I'm totaly confused about the formats. Which part of PES says which frame type one TS packet transmits?
Thank you.