Skip to content

Commit

Permalink
Fix for incorrect iterator in BRC_EncToolBase::ReportGopHints() (#6128)
Browse files Browse the repository at this point in the history
Co-authored-by: Sergey Plotnikov <[email protected]>
  • Loading branch information
gfxVPLsdm and splotnikv authored Nov 28, 2023
1 parent cb756e8 commit 9c8d2b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _studio/enctools/src/mfx_enctools_brc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2205,7 +2205,7 @@ mfxStatus BRC_EncToolBase::ReportGopHints(mfxU32 dispOrder, mfxEncToolsHintPreEn
frStruct.qpDelta = pGopHints.QPDelta;
frStruct.qpModulation = pGopHints.QPModulation;
frStruct.QPDeltaExplicitModulation = pGopHints.QPDeltaExplicitModulation;
(*frameStruct).miniGopSize = pGopHints.MiniGopSize;
frStruct.miniGopSize = pGopHints.MiniGopSize;
m_FrameStruct.push_back(frStruct);
frameStruct = m_FrameStruct.end() - 1;
}
Expand Down

0 comments on commit 9c8d2b2

Please sign in to comment.