fixed syntax error in videodecodefork.cpp, was missing a semicolon at the end of a line (#217)

Co-authored-by: kjayapra-amd <karthik.jayaprakash@amd.com>
Этот коммит содержится в:
Pavel Tcherniaev
2024-02-02 13:46:07 -08:00
коммит произвёл GitHub
родитель 300be009de
Коммит fa3f21a7df
+1 -1
Просмотреть файл
@@ -58,7 +58,7 @@ void ShowHelpAndExit(const char *option = NULL) {
<< "-i Input File Path - required" << std::endl
<< "-f Number of forks (>= 1) - optional; default: 4" << std::endl
<< "-d Device ID (>= 0) - optional; default: 0" << std::endl
<< "-z force_zero_latency (force_zero_latency, Decoded frames will be flushed out for display immediately); optional;" << std::endl
<< "-z force_zero_latency (force_zero_latency, Decoded frames will be flushed out for display immediately); optional;" << std::endl;
exit(0);
}