diff --git a/NEWS b/NEWS index f869e6875..b978d3bff 100644 --- a/NEWS +++ b/NEWS @@ -49,6 +49,10 @@ ver 0.24 (not yet released) * remove Boost dependency * require libfmt 7 or later +ver 0.23.15 (not yet released) +* decoder + - ffmpeg: fix build failure with FFmpeg 6.1 + ver 0.23.14 (2023/10/08) * decoder - flac: fix scanning files with non-ASCII names on Windows diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml index cbe293389..447a68251 100644 --- a/android/AndroidManifest.xml +++ b/android/AndroidManifest.xml @@ -2,8 +2,8 @@ + android:versionCode="73" + android:versionName="0.23.15"> diff --git a/src/decoder/plugins/FfmpegIo.cxx b/src/decoder/plugins/FfmpegIo.cxx index 2ef47b2ca..285fddcd4 100644 --- a/src/decoder/plugins/FfmpegIo.cxx +++ b/src/decoder/plugins/FfmpegIo.cxx @@ -10,6 +10,9 @@ extern "C" { #include +#if LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(58, 29, 100) +#include +#endif } AvioStream::~AvioStream()