Changeset cd4c997 for src


Ignore:
Timestamp:
Mar 18, 2014, 10:28:21 PM (10 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, pitchshift, sampler, timestretch, yinfft+
Children:
0b3c17b
Parents:
c66d4ff
Message:

src/io/source_avcodec.c: update to libav10, libavcodec 55.34.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/io/source_avcodec.c

    rc66d4ff rcd4c997  
    168168
    169169  AVFrame *avFrame = s->avFrame;
    170   avFrame = avcodec_alloc_frame();
     170  avFrame = av_frame_alloc();
    171171  if (!avFrame) {
    172172    AUBIO_ERR("source_avcodec: Could not allocate frame for (%s)\n", s->path);
     
    416416  s->output = NULL;
    417417  if (s->avFrame != NULL) {
    418     avcodec_free_frame( &(s->avFrame) );
     418    av_frame_free( &(s->avFrame) );
    419419  }
    420420  s->avFrame = NULL;
Note: See TracChangeset for help on using the changeset viewer.