We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94e5604 commit a515712Copy full SHA for a515712
tools/WebcamReportTool/main.cpp
@@ -83,7 +83,7 @@ void LogMediaTypes(wil::com_ptr_nothrow<IPin>& pin)
83
}
84
const auto formatAvgFPS = 10000000LL / format->AvgTimePerFrame;
85
log() << GetMediaSubTypeString(mt->subtype) << '\t' << format->bmiHeader.biWidth << "x"
86
- << format->bmiHeader.biHeight << '\t' << formatAvgFPS << "fps\n";
+ << format->bmiHeader.biHeight << " - " << formatAvgFPS << "fps\n";
87
88
log() << '\n';
89
@@ -186,4 +186,4 @@ int main()
186
log() << "Report started\n";
187
ReportAllWebcams();
188
return 0;
189
-}
+}
0 commit comments