- Timestamp:
- Mar 18, 2014, 10:28:21 PM (11 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:
- 0b3c17b
- Parents:
- c66d4ff
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/source_avcodec.c
rc66d4ff rcd4c997 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.