- Timestamp:
- Nov 30, 2016, 5:14:38 PM (8 years ago)
- 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, yinfft+
- Children:
- 8b210a9
- Parents:
- 2b3c438
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/source_avcodec.c
r2b3c438 re0ad269 352 352 353 353 if (len < 0) { 354 AUBIO_ERR(" Error while decoding %s\n", s->path);354 AUBIO_ERR("source_avcodec: error while decoding %s\n", s->path); 355 355 goto beach; 356 356 } 357 357 #endif 358 358 if (got_frame == 0) { 359 //AUBIO_ERR("Could not get frame for (%s)\n", s->path);359 AUBIO_WRN("source_avcodec: did not get a frame when reading %s\n", s->path); 360 360 goto beach; 361 361 } … … 371 371 (uint8_t **)avFrame->data, in_linesize, in_samples); 372 372 if (out_samples <= 0) { 373 //AUBIO_ERR("No sample found while converting frame (%s)\n", s->path);373 AUBIO_WRN("source_avcodec: no sample found while converting frame (%s)\n", s->path); 374 374 goto beach; 375 375 }
Note: See TracChangeset
for help on using the changeset viewer.