Merge branch 'v0.23.x'

This commit is contained in:
Max Kellermann 2023-11-21 20:37:46 +01:00
commit 5ab2c31500
3 changed files with 9 additions and 2 deletions

4
NEWS
View File

@ -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

View File

@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.musicpd"
android:installLocation="auto"
android:versionCode="72"
android:versionName="0.23.14">
android:versionCode="73"
android:versionName="0.23.15">
<uses-sdk android:minSdkVersion="24" android:targetSdkVersion="30"/>

View File

@ -10,6 +10,9 @@
extern "C" {
#include <libavutil/mem.h>
#if LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(58, 29, 100)
#include <libavutil/error.h>
#endif
}
AvioStream::~AvioStream()