obs-outputs: Enable logging before calling RTMP_Init

Errors or warnings in RTMP_Init were not copied to the OBS log file
if they occured before the callback was set.
This commit is contained in:
Richard Stanway
2020-01-25 17:01:14 +01:00
parent d1159087f1
commit 7a4c5e5df2

View File

@@ -145,8 +145,8 @@ static void *rtmp_stream_create(obs_data_t *settings, obs_output_t *output)
stream->output = output;
pthread_mutex_init_value(&stream->packets_mutex);
RTMP_Init(&stream->rtmp);
RTMP_LogSetCallback(log_rtmp);
RTMP_Init(&stream->rtmp);
RTMP_LogSetLevel(RTMP_LOGWARNING);
if (pthread_mutex_init(&stream->packets_mutex, NULL) != 0)