- Timestamp:
- Aug 24, 2014, 7:24:07 PM (10 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, pitchshift, sampler, timestretch, yinfft+
- Children:
- acf2b9b4
- Parents:
- fe19724
- git-author:
- Paul Brossier <piem@piem.org> (03/18/14 22:28:21)
- git-committer:
- Paul Brossier <piem@piem.org> (08/24/14 19:24:07)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/source_avcodec.c
rfe19724 r7d7c9f0 168 168 169 169 AVFrame *avFrame = s->avFrame; 170 avFrame = av codec_alloc_frame();170 avFrame = av_frame_alloc(); 171 171 if (!avFrame) { 172 172 AUBIO_ERR("source_avcodec: Could not allocate frame for (%s)\n", s->path); … … 416 416 s->output = NULL; 417 417 if (s->avFrame != NULL) { 418 av codec_free_frame( &(s->avFrame) );418 av_frame_free( &(s->avFrame) ); 419 419 } 420 420 s->avFrame = NULL;
Note: See TracChangeset
for help on using the changeset viewer.