Skip to content

Commit

Permalink
Fix csv column label order
Browse files Browse the repository at this point in the history
Signed-off-by: Maxime Gervais <[email protected]>
  • Loading branch information
g-maxime committed Jul 15, 2024
1 parent d5aac4e commit 3035cd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Common/ProcessFileWrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,11 @@ void FileWrapper::Parse_Buffer(const uint8_t *Buffer, size_t Buffer_Size)
"," // rdt_nc
"," // rec_start
"," // rec_end
"," // Used
<< "," << decklink_pixelformat_to_string(Frame->Pixel_Format) // pix_fmt
<< "," << ss.str() // satavg
<< "," << (ST.SatHi != (uint16_t)-1 ? to_string(ST.SatHi) : "") // sathi
<< "," << (ST.SatMax != (uint16_t)-1 ? to_string(ST.SatMax) : "") // satmax
<< "," // Used
<< "," // Status
"," // Comments
"," // BlockErrors
Expand Down

0 comments on commit 3035cd1

Please sign in to comment.