libobs: Remove warning log for raw outputs when starting data capture

#8873 accidentally used `log_flag_encoded()` instead of `flag_encoded()` in `obs_output_begin_data_capture()`, which was causing a warning to be logged when it shouldn't.
This commit is contained in:
tt2468 2023-05-27 13:18:41 -07:00 committed by GitHub
parent 2a4c8594a1
commit a696470c9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2275,7 +2275,7 @@ bool obs_output_begin_data_capture2(obs_output_t *output)
output->total_frames = 0;
if (!log_flag_encoded(output, __FUNCTION__, false))
if (!flag_encoded(output))
reset_raw_output(output);
if (!can_begin_data_capture(output))