Merge pull request #2833 from RytoEX/update-process-packet-error

obs-ffmpeg: Update error message in process_packet
master
Ben Torell 2020-04-29 19:39:12 -04:00 committed by GitHub
commit 2d14ee3e60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -952,7 +952,7 @@ static int process_packet(struct ffmpeg_output *output)
if (ret < 0) {
av_free_packet(&packet);
ffmpeg_log_error(LOG_WARNING, &output->ff_data,
"receive_audio: Error writing packet: %s",
"process_packet: Error writing packet: %s",
av_err2str(ret));
return ret;
}