From 5c6acbb21e51480ab458e9b72257e31766733a52 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sat, 28 Dec 2013 19:38:45 -0400 Subject: [PATCH] src/io/source_avcodec.c: no errors if not sample given, may happen in some resampling configurations --- 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 962e9b77..a303251b 100644 --- a/src/io/source_avcodec.c +++ b/src/io/source_avcodec.c @@ -278,7 +278,7 @@ void aubio_source_avcodec_readframe(aubio_source_avcodec_t *s, uint_t * read_sam (uint8_t **)&output, out_linesize, max_out_samples, (uint8_t **)avFrame->data, in_linesize, in_samples); if (out_samples <= 0) { - AUBIO_ERR("No sample found while converting frame (%s)\n", s->path); + //AUBIO_ERR("No sample found while converting frame (%s)\n", s->path); goto beach; } -- 2.11.0