[FFmpeg-cvslog] jack: Use av_strerror

Luca Barbato git at videolan.org
Wed Oct 29 22:06:08 CET 2014


ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Sun Oct 26 14:02:45 2014 +0100| [2cd28693a59050717cb7da6cb229e606b1dee356] | committer: Vittorio Giovara

jack: Use av_strerror

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2cd28693a59050717cb7da6cb229e606b1dee356
---

 libavdevice/jack_audio.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/libavdevice/jack_audio.c b/libavdevice/jack_audio.c
index 8ce3321..7bdc229 100644
--- a/libavdevice/jack_audio.c
+++ b/libavdevice/jack_audio.c
@@ -289,8 +289,11 @@ static int audio_read_packet(AVFormatContext *context, AVPacket *pkt)
             av_log(context, AV_LOG_ERROR,
                    "Input error: timed out when waiting for JACK process callback output\n");
         } else {
+            char errbuf[128];
+            int ret = AVERROR(errno);
+            av_strerror(ret, errbuf, sizeof(errbuf));
             av_log(context, AV_LOG_ERROR, "Error while waiting for audio packet: %s\n",
-                   strerror(errno));
+                   errbuf);
         }
         if (!self->client)
             av_log(context, AV_LOG_ERROR, "Input error: JACK server is gone\n");



More information about the ffmpeg-cvslog mailing list