src/io/source_avcodec.c: no errors if not sample given, may happen in some resampling...
authorPaul Brossier <piem@piem.org>
Sat, 28 Dec 2013 23:38:45 +0000 (19:38 -0400)
committerPaul Brossier <piem@piem.org>
Sat, 28 Dec 2013 23:38:45 +0000 (19:38 -0400)
src/io/source_avcodec.c

index 962e9b7..a303251 100644 (file)
@@ -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;
   }