Skip to content

Commit

Permalink
Merge pull request #2312 from gpac/av1_open_gop
Browse files Browse the repository at this point in the history
fix av1 open gop parsing
  • Loading branch information
jeanlf committed Apr 15, 2024
2 parents 5953934 + d1fe32a commit 910c6fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/media_tools/av_parsers.c
Expand Up @@ -3398,7 +3398,7 @@ static void av1_parse_uncompressed_header(GF_BitStream *bs, AV1State *state)
if (frame_state->show_existing_frame == GF_TRUE) {
frame_state->frame_to_show_map_idx = gf_bs_read_int_log(bs, 3, "frame_to_show_map_idx");
frame_state->frame_type = state->RefFrameType[frame_state->frame_to_show_map_idx];

frame_state->order_hint = state->RefOrderHint[frame_state->frame_to_show_map_idx];
if (state->decoder_model_info_present_flag && !state->equal_picture_interval) {
gf_bs_read_int_log(bs, state->frame_presentation_time_length, "frame_presentation_time");
}
Expand Down

0 comments on commit 910c6fd

Please sign in to comment.