Skip to content

Commit

Permalink
Merge pull request #43 from HR1025/h264
Browse files Browse the repository at this point in the history
[what][bugfix][h264] 修复笔误
  • Loading branch information
HR1025 authored Aug 20, 2024
2 parents c6b6eb3 + 7eccf68 commit 00b9ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion H264Deserialize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ bool H264Deserialize::DeserializeSliceHeaderSyntax(H26xBinaryReader::ptr br, H26
br->UE(slice->pic_parameter_set_id);
MPP_H26X_SYNTAXT_STRICT_CHECK(_contex->ppsSet.count(slice->pic_parameter_set_id), "[slice] missing pps", return false);
pps = _contex->ppsSet[slice->pic_parameter_set_id];
MPP_H26X_SYNTAXT_STRICT_CHECK(_contex->ppsSet.count(pps->seq_parameter_set_id), "[slice] missing sps", return false);
MPP_H26X_SYNTAXT_STRICT_CHECK(_contex->spsSet.count(pps->seq_parameter_set_id), "[slice] missing sps", return false);
sps = _contex->spsSet[pps->seq_parameter_set_id];
if (sps->separate_colour_plane_flag == 1)
{
Expand Down

0 comments on commit 00b9ade

Please sign in to comment.