libobs,plugins: Remove new obs_output_*2 functions

Effectively reverting parts of d314d47, this commit removes the new
functions that got added to remove the flags parameter. Instead, it just
marks the parameter as unused and documents this. Having what is
effectively an API break just to remove a parameter is a bit overkill.
The other parts of d314d47 which cleaned up the usage of the flags
parameter are untouched here.
This commit is contained in:
gxalpha
2023-06-04 14:00:37 +02:00
committed by Lain
parent 5cc319d97f
commit 79822a58c3
17 changed files with 60 additions and 70 deletions

View File

@@ -110,7 +110,7 @@ static bool decklink_output_start(void *data)
obs_output_set_audio_conversion(decklink->GetOutput(), &conversion);
if (!obs_output_begin_data_capture2(decklink->GetOutput()))
if (!obs_output_begin_data_capture(decklink->GetOutput(), 0))
return false;
return true;