Skip to content
Snippets Groups Projects
Commit c34e79e4 authored by Antti Hallapuro's avatar Antti Hallapuro
Browse files

Fix gcc compiler warning

parent 2c1b0c42
No related branches found
No related tags found
1 merge request!14JVET-AH0161: Packed Regions Info SEI
......@@ -1959,9 +1959,9 @@ void DecApp::xOutputPackedRegionsInfo(Picture* pcPic)
}
}
void DecApp::xOutputPackedRegionsInfoVector(FILE* fp, char* paramName, const std::vector<uint32_t>& l)
void DecApp::xOutputPackedRegionsInfoVector(FILE* fp, std::string paramName, const std::vector<uint32_t>& l)
{
fprintf(fp, paramName);
fprintf(fp, paramName.c_str());
for (auto it : l)
{
fprintf(fp, " %d", it);
......
......@@ -140,7 +140,7 @@ private:
#endif
#if JVET_AH0161_REGION_PACKING_INFORMATION_SEI
void xOutputPackedRegionsInfo(Picture* pcPic);
void xOutputPackedRegionsInfoVector(FILE* fp, char* paramName, const std::vector<uint32_t>& v);
void xOutputPackedRegionsInfoVector(FILE* fp, std::string paramName, const std::vector<uint32_t>& v);
#endif
};
......
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