From 8d41c1d20e7ca182428a9b247dea47b165901b0b Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Wed, 5 Oct 2016 14:14:24 +0200 Subject: [PATCH] src/io/source_avcodec.c: improve error message --- src/io/source_avcodec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/source_avcodec.c b/src/io/source_avcodec.c index f10cfe72..871b07e6 100644 --- a/src/io/source_avcodec.c +++ b/src/io/source_avcodec.c @@ -284,7 +284,7 @@ void aubio_source_avcodec_readframe(aubio_source_avcodec_t *s, uint_t * read_sam if (err != 0) { char errorstr[256]; av_strerror (err, errorstr, sizeof(errorstr)); - AUBIO_ERR("Could not read frame in %s (%s)\n", s->path, errorstr); + AUBIO_ERR("source_avcodec: could not read frame in %s (%s)\n", s->path, errorstr); goto beach; } } while (avPacket.stream_index != s->selected_stream); -- 2.11.0