ref: 8d41c1d20e7ca182428a9b247dea47b165901b0b
parent: b8503f8ba932d024264c92143d35bc362948c19d
author: Paul Brossier <piem@piem.org>
date: Wed Oct 5 10:14:24 EDT 2016
src/io/source_avcodec.c: improve error message
--- a/src/io/source_avcodec.c
+++ b/src/io/source_avcodec.c
@@ -284,7 +284,7 @@
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);