Changeset 3e944fe4


Ignore:
Timestamp:
Mar 25, 2017, 11:47:27 AM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, sampler
Children:
2a7bcaa
Parents:
657a20a
Message:

src/io/source_avcodec.c: hide EAGAIN warning, skip to next frame immediately

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/io/source_avcodec.c

    r657a20a r3e944fe4  
    375375  if (ret < 0) {
    376376    if (ret == AVERROR(EAGAIN)) {
    377       AUBIO_WRN("source_avcodec: output is not available right now - user must try to send new input\n");
     377      //AUBIO_WRN("source_avcodec: output is not available right now - user must try to send new input\n");
     378      goto beach;
    378379    } else if (ret == AVERROR_EOF) {
    379380      AUBIO_WRN("source_avcodec: the decoder has been fully flushed, and there will be no more output frames\n");
Note: See TracChangeset for help on using the changeset viewer.