Skip to content

Commit

Permalink
fixed bug in vvc SPS suppic layout parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanlf committed Mar 18, 2024
1 parent e50da06 commit cee0d1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/media_tools/av_parsers.c
Expand Up @@ -10745,7 +10745,7 @@ static s32 gf_vvc_read_sps_bs_internal(GF_BitStream *bs, VVCState *vvc, u8 layer
if (sps->subpicid_mapping_present) {
for (i=0; i<sps->nb_subpics; i++) {
VVC_SubpicInfo *sp = &sps->subpics[i];
sp->id = gf_bs_read_ue_log(bs, "subpic_id");
sp->id = gf_bs_read_int_log_idx(bs, sps->subpicid_len, "subpic_id", i);
}
}
}
Expand Down

0 comments on commit cee0d1b

Please sign in to comment.