Skip to content
Snippets Groups Projects
Commit 5abf914d authored by Frank Bossen's avatar Frank Bossen
Browse files

Add layer ID to output picture log file

parent aafc0148
No related branches found
No related tags found
No related merge requests found
......@@ -390,6 +390,9 @@ void DecApp::writeLineToOutputLog(Picture * pcPic)
const int croppedWidth = pcPic->Y().width - leftOffset - rightOffset;
const int croppedHeight = pcPic->Y().height - topOffset - bottomOffset;
#if OPL_ADD_LAYER_ID
m_oplFileStream << std::setw(3) << pcPic->layerId << ",";
#endif
m_oplFileStream << std::setw(8) << pcPic->getPOC() << "," << std::setw(5) << croppedWidth << "," << std::setw(5)
<< croppedHeight << "," << hashToString(recon_digest, numChar) << "\n";
}
......
......@@ -72,6 +72,8 @@
#define JVET_S_SUB_PROFILE 1 // Move signalling of ptl_num_sub_profiles
#define OPL_ADD_LAYER_ID 1 // Add layer ID to output picture log
#define JVET_R0324_REORDER 1 // Reordering of syntax elements JVET-R0324/JVET-R2001-v2
#define JVET_S0097_VPS_default_values 1 // JVET-S0097: infer values of variables in VPS when not present
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment