[bug] declaration of variable already used in outer scope

master
jcdr428 2022-05-03 17:59:09 +00:00
parent d358fa831e
commit eff0a366f1
1 changed files with 1 additions and 1 deletions

View File

@ -877,7 +877,7 @@ vector<vector<uint8_t>> hevc_extract_priv_data(const uint8_t* buff, int size, in
if (nalSize > 0)
{
spsPps.push_back(vector<uint8_t>());
for (int i = 0; i < nalSize; ++i, ++src) spsPps.rbegin()->push_back(*src);
for (int k = 0; k < nalSize; ++k, ++src) spsPps.rbegin()->push_back(*src);
}
}
}