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
bf15cac9
Commit
bf15cac9
authored
Nov 24, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v0.19.x'
parents
1a61b013
951bad46
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
6 deletions
+11
-6
NEWS
NEWS
+4
-0
AndroidManifest.xml
android/AndroidManifest.xml
+2
-2
protocol.xml
doc/protocol.xml
+1
-0
DsdLib.cxx
src/decoder/plugins/DsdLib.cxx
+2
-2
OpusDecoderPlugin.cxx
src/decoder/plugins/OpusDecoderPlugin.cxx
+1
-1
File.hxx
src/java/File.hxx
+1
-1
No files found.
NEWS
View file @
bf15cac9
...
@@ -5,6 +5,10 @@ ver 0.20 (not yet released)
...
@@ -5,6 +5,10 @@ ver 0.20 (not yet released)
* output
* output
- pulse: set channel map to WAVE-EX
- pulse: set channel map to WAVE-EX
ver 0.19.5 (not yet released)
* decoder
- dsdiff, dsf, opus: fix deadlock while seeking
ver 0.19.4 (2014/11/18)
ver 0.19.4 (2014/11/18)
* protocol
* protocol
- workaround for buggy clients that send "add /"
- workaround for buggy clients that send "add /"
...
...
android/AndroidManifest.xml
View file @
bf15cac9
...
@@ -2,8 +2,8 @@
...
@@ -2,8 +2,8 @@
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"org.musicpd"
package=
"org.musicpd"
android:installLocation=
"auto"
android:installLocation=
"auto"
android:versionCode=
"
7
"
android:versionCode=
"
8
"
android:versionName=
"0.19.
1
"
>
android:versionName=
"0.19.
4
"
>
<uses-sdk
android:minSdkVersion=
"9"
android:targetSdkVersion=
"17"
/>
<uses-sdk
android:minSdkVersion=
"9"
android:targetSdkVersion=
"17"
/>
...
...
doc/protocol.xml
View file @
bf15cac9
...
@@ -1533,6 +1533,7 @@ OK
...
@@ -1533,6 +1533,7 @@ OK
<command>
count
</command>
<command>
count
</command>
<arg
choice=
"req"
><replaceable>
TAG
</replaceable></arg>
<arg
choice=
"req"
><replaceable>
TAG
</replaceable></arg>
<arg
choice=
"req"
><replaceable>
NEEDLE
</replaceable></arg>
<arg
choice=
"req"
><replaceable>
NEEDLE
</replaceable></arg>
<arg
choice=
"opt"
><replaceable>
...
</replaceable></arg>
<arg
choice=
"opt"
>
group
</arg>
<arg
choice=
"opt"
>
group
</arg>
<arg
choice=
"opt"
><replaceable>
GROUPTYPE
</replaceable></arg>
<arg
choice=
"opt"
><replaceable>
GROUPTYPE
</replaceable></arg>
</cmdsynopsis>
</cmdsynopsis>
...
...
src/decoder/plugins/DsdLib.cxx
View file @
bf15cac9
...
@@ -53,7 +53,7 @@ dsdlib_skip_to(Decoder *decoder, InputStream &is,
...
@@ -53,7 +53,7 @@ dsdlib_skip_to(Decoder *decoder, InputStream &is,
offset_type
offset
)
offset_type
offset
)
{
{
if
(
is
.
IsSeekable
())
if
(
is
.
IsSeekable
())
return
is
.
Seek
(
offset
,
IgnoreError
());
return
is
.
Lock
Seek
(
offset
,
IgnoreError
());
if
(
is
.
GetOffset
()
>
offset
)
if
(
is
.
GetOffset
()
>
offset
)
return
false
;
return
false
;
...
@@ -72,7 +72,7 @@ dsdlib_skip(Decoder *decoder, InputStream &is,
...
@@ -72,7 +72,7 @@ dsdlib_skip(Decoder *decoder, InputStream &is,
return
true
;
return
true
;
if
(
is
.
IsSeekable
())
if
(
is
.
IsSeekable
())
return
is
.
Seek
(
is
.
GetOffset
()
+
delta
,
IgnoreError
());
return
is
.
Lock
Seek
(
is
.
GetOffset
()
+
delta
,
IgnoreError
());
if
(
delta
>
1024
*
1024
)
if
(
delta
>
1024
*
1024
)
/* don't skip more than one megabyte; it would be too
/* don't skip more than one megabyte; it would be too
...
...
src/decoder/plugins/OpusDecoderPlugin.cxx
View file @
bf15cac9
...
@@ -214,7 +214,7 @@ LoadEOSPacket(InputStream &is, Decoder *decoder, int serialno,
...
@@ -214,7 +214,7 @@ LoadEOSPacket(InputStream &is, Decoder *decoder, int serialno,
ogg_stream_clear
(
&
os
);
ogg_stream_clear
(
&
os
);
/* restore the previous file position */
/* restore the previous file position */
is
.
Seek
(
old_offset
,
IgnoreError
());
is
.
Lock
Seek
(
old_offset
,
IgnoreError
());
return
result
;
return
result
;
}
}
...
...
src/java/File.hxx
View file @
bf15cac9
...
@@ -28,7 +28,7 @@
...
@@ -28,7 +28,7 @@
*/
*/
#ifndef JAVA_FILE_HXX
#ifndef JAVA_FILE_HXX
#define JAVA_FILE_H
PP
#define JAVA_FILE_H
XX
#include "Object.hxx"
#include "Object.hxx"
...
...
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