mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
h264_parser: use enum values in h264_find_frame_end()
This commit is contained in:
parent
ba7dfe5c50
commit
dc971acf4a
@ -58,13 +58,15 @@ static int h264_find_frame_end(H264Context *h, const uint8_t *buf,
|
||||
else
|
||||
state >>= 1; // 2->1, 1->0, 0->0
|
||||
} else if (state <= 5) {
|
||||
int v = buf[i] & 0x1F;
|
||||
if (v == 6 || v == 7 || v == 8 || v == 9) {
|
||||
int nalu_type = buf[i] & 0x1F;
|
||||
if (nalu_type == NAL_SEI || nalu_type == NAL_SPS ||
|
||||
nalu_type == NAL_PPS || nalu_type == NAL_AUD) {
|
||||
if (pc->frame_start_found) {
|
||||
i++;
|
||||
goto found;
|
||||
}
|
||||
} else if (v == 1 || v == 2 || v == 5) {
|
||||
} else if (nalu_type == NAL_SLICE || nalu_type == NAL_DPA ||
|
||||
nalu_type == NAL_IDR_SLICE) {
|
||||
if (pc->frame_start_found) {
|
||||
state += 8;
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user