We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dfc547 commit 0c84b97Copy full SHA for 0c84b97
libavdevice/jack.c
@@ -291,11 +291,9 @@ static int audio_read_packet(AVFormatContext *context, AVPacket *pkt)
291
av_log(context, AV_LOG_ERROR,
292
"Input error: timed out when waiting for JACK process callback output\n");
293
} else {
294
- char errbuf[128];
295
int ret = AVERROR(errno);
296
- av_strerror(ret, errbuf, sizeof(errbuf));
297
av_log(context, AV_LOG_ERROR, "Error while waiting for audio packet: %s\n",
298
- errbuf);
+ av_err2str(ret));
299
}
300
if (!self->client)
301
av_log(context, AV_LOG_ERROR, "Input error: JACK server is gone\n");
0 commit comments