I need to know if I can find a I-frame without having to decode it first. I would like there to be some flag in AVPacket, but I can't see that there is one.
Thanks.
I need to know if I can find a I-frame without having to decode it first. I would like there to be some flag in AVPacket, but I can't see that there is one.
Thanks.
If you only need to know which packet is I-frame, just check the AVPacket::flags
.
if(packet->flag & AV_PKT_FLAG_KEY) {
// this is I-frame
}
If you want to detect P or B frame, use the AVPacket::side_data
.
for (int i = 0; i < pkt->side_data_elems; i++) {
if (pkt->side_data[i].type == AVPacketSideDataType::AV_PKT_DATA_QUALITY_STATS) {
AVPictureType frameType = (AVPictureType)pkt->side_data[i].data[4];
// 1: I-frame, 2: P-frame, 3: B-frame
}
}
It worked with libx264.
You can certainly find location of I frame by looking up appropriate header code. If you parse the sequence you can find it from the start code.
The H.264 bitstream is broken into sections called NAL units. These units have the 24 bit code 0x000001 preceding them for synchronization. After this there will be a unique start code that corresponds to start of a picture, and type of picture based on which you can decide which frame is this.