Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/io/source_avcodec.c

    r50bb325 r029bf4e  
    6262// hack to create or re-create the context the first time _do or _do_multi is called
    6363void aubio_source_avcodec_reset_resampler(aubio_source_avcodec_t * s, uint_t multi);
     64void aubio_source_avcodec_readframe(aubio_source_avcodec_t *s, uint_t * read_samples);
    6465
    6566aubio_source_avcodec_t * new_aubio_source_avcodec(char_t * path, uint_t samplerate, uint_t hop_size) {
     
    279280        (uint8_t **)avFrame->data, in_linesize, in_samples);
    280281  if (out_samples <= 0) {
    281     AUBIO_ERR("No sample found while converting frame (%s)\n", s->path);
     282    //AUBIO_ERR("No sample found while converting frame (%s)\n", s->path);
    282283    goto beach;
    283284  }
Note: See TracChangeset for help on using the changeset viewer.