Changeset 2a32644 for src/io/source_avcodec.c
- Timestamp:
- Aug 21, 2015, 12:26:48 PM (9 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:
- f549b98d
- Parents:
- eb68991
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/source_avcodec.c
reb68991 r2a32644 23 23 24 24 #ifdef HAVE_LIBAV 25 26 // determine whether we use libavformat from ffmpe or libav 27 #define FFMPEG_LIBAVFORMAT (LIBAVFORMAT_VERSION_MICRO > 99) 25 28 26 29 #include <libavcodec/avcodec.h> … … 101 104 102 105 // try to make sure max_analyze_duration is big enough for most songs 106 #if FFMPEG_LIBAVFORMAT 107 avFormatCtx->max_analyze_duration2 *= 100; 108 #else 103 109 avFormatCtx->max_analyze_duration *= 100; 110 #endif 104 111 105 112 // retrieve stream information
Note: See TracChangeset
for help on using the changeset viewer.