From: Paul Brossier Date: Wed, 5 Oct 2016 12:14:24 +0000 (+0200) Subject: src/io/source_avcodec.c: improve error message X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=024584d7280d78d6befcf752e30bfc407e1a9d2a;p=aubio.git src/io/source_avcodec.c: improve error message --- 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);