Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
31e36588
Commit
31e36588
authored
Feb 22, 2021
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v0.22.x'
parents
abd41673
6eba6210
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
4 deletions
+18
-4
NEWS
NEWS
+4
-0
AndroidManifest.xml
android/AndroidManifest.xml
+2
-2
conf.py
doc/conf.py
+1
-1
FfmpegDecoderPlugin.cxx
src/decoder/plugins/FfmpegDecoderPlugin.cxx
+11
-1
No files found.
NEWS
View file @
31e36588
...
...
@@ -5,6 +5,10 @@ ver 0.23 (not yet released)
* output
- snapcast: new plugin
ver 0.22.7 (not yet released)
* decoder
- ffmpeg: fix build problem with FFmpeg 3.4
ver 0.22.6 (2021/02/16)
* fix missing tags on songs in queue
...
...
android/AndroidManifest.xml
View file @
31e36588
...
...
@@ -2,8 +2,8 @@
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"org.musicpd"
android:installLocation=
"auto"
android:versionCode=
"5
4
"
android:versionName=
"0.22.
6
"
>
android:versionCode=
"5
5
"
android:versionName=
"0.22.
7
"
>
<uses-sdk
android:minSdkVersion=
"21"
android:targetSdkVersion=
"29"
/>
...
...
doc/conf.py
View file @
31e36588
...
...
@@ -38,7 +38,7 @@ author = 'Max Kellermann'
# built documents.
#
# The short X.Y version.
version
=
'0.22.
6
'
version
=
'0.22.
7
'
# The full version, including alpha/beta/rc tags.
release
=
version
...
...
src/decoder/plugins/FfmpegDecoderPlugin.cxx
View file @
31e36588
...
...
@@ -464,6 +464,16 @@ FfmpegCheckTag(DecoderClient &client, InputStream *is,
client
.
SubmitTag
(
is
,
tag
.
Commit
());
}
static
bool
IsSeekable
(
const
AVFormatContext
&
format_context
)
noexcept
{
#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(58, 6, 100)
return
(
format_context
.
ctx_flags
&
AVFMTCTX_UNSEEKABLE
)
!=
0
;
#else
return
false
;
#endif
}
static
void
FfmpegDecode
(
DecoderClient
&
client
,
InputStream
*
input
,
AVFormatContext
&
format_context
)
...
...
@@ -521,7 +531,7 @@ FfmpegDecode(DecoderClient &client, InputStream *input,
client
.
Ready
(
audio_format
,
input
?
input
->
IsSeekable
()
:
(
format_context
.
ctx_flags
&
AVFMTCTX_UNSEEKABLE
)
!=
0
,
:
IsSeekable
(
format_context
)
,
total_time
);
FfmpegParseMetaData
(
client
,
format_context
,
audio_stream
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment