Skip to content
Snippets Groups Projects
Commit 40dfde15 authored by Nikolay Shostak's avatar Nikolay Shostak
Browse files

Add braces according to coding guidelines

parent 0efea8d0
No related branches found
No related tags found
No related merge requests found
......@@ -400,7 +400,9 @@ uint32_t DecApp::decode()
for (; iterPicLayer != pcListPic->end(); ++iterPicLayer)
{
if ((*iterPicLayer)->layerId == nalu.m_nuhLayerId)
{
break;
}
}
if (iterPicLayer != pcListPic->end())
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment