Skip to content

Commit

Permalink
Merge pull request #68 from irieger/bugfix/rdd36-4444-xq
Browse files Browse the repository at this point in the history
Fix the command line option for ProRes 4444 XQ
  • Loading branch information
philipnbbc authored May 10, 2024
2 parents 0c2f433 + c68c4cf commit 38204bb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/raw2bmx/raw2bmx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3748,7 +3748,10 @@ int main(int argc, const char** argv)
inputs.push_back(input);
cmdln_index++;
}
else if (strcmp(argv[cmdln_index], "--rdd36_4444_hq") == 0)
// Allowing --rdd36_4444_xq as defined in the cli help as well as --rdd36_4444_hq
// which was defined first to keep backwards compatibility with older scripts.
else if (strcmp(argv[cmdln_index], "--rdd36_4444_xq") == 0 ||
strcmp(argv[cmdln_index], "--rdd36_4444_hq") == 0)
{
if (cmdln_index + 1 >= argc)
{
Expand Down

0 comments on commit 38204bb

Please sign in to comment.