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
f2ff2409
Commit
f2ff2409
authored
Aug 30, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merged release 0.15.3 from branch 'v0.15.x'
Conflicts: NEWS configure.ac
parents
bff4c54e
7a690c6b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
30 additions
and
2 deletions
+30
-2
NEWS
NEWS
+8
-0
protocol.xml
doc/protocol.xml
+18
-0
vorbis_plugin.c
src/decoder/vorbis_plugin.c
+1
-1
output_init.c
src/output_init.c
+1
-0
update.c
src/update.c
+2
-1
No files found.
NEWS
View file @
f2ff2409
...
...
@@ -32,6 +32,14 @@ ver 0.16 (20??/??/??)
* obey $(sysconfdir) for default mpd.conf location
ver 0.15.3 (2009/08/29)
* decoders:
- vorbis: faster tag scanning with ov_test_callback()
* output:
- fix stuttering due to uninitialized variable
* update: don't re-read unchanged container files
ver 0.15.2 (2009/08/15)
* tags:
- ape: check the tag size (fixes integer underflow)
...
...
doc/protocol.xml
View file @
f2ff2409
...
...
@@ -281,6 +281,24 @@
</listitem>
<listitem>
<para>
<varname>
nextsong
</varname>
:
<footnoteref
linkend=
"since_0_15"
/>
<returnvalue>
playlist song number of the next
song to be played
</returnvalue>
</para>
</listitem>
<listitem>
<para>
<varname>
nextsongid
</varname>
:
<footnoteref
linkend=
"since_0_15"
/>
<returnvalue>
playlist songid of the next song
to be played
</returnvalue>
</para>
</listitem>
<listitem>
<para>
<varname>
time
</varname>
:
<returnvalue>
total time elapsed (of current
playing/paused song)
</returnvalue>
...
...
src/decoder/vorbis_plugin.c
View file @
f2ff2409
...
...
@@ -382,7 +382,7 @@ vorbis_tag_dup(const char *file)
return
NULL
;
}
if
(
ov_
open
(
fp
,
&
vf
,
NULL
,
0
)
<
0
)
{
if
(
ov_
test_callbacks
(
fp
,
&
vf
,
NULL
,
0
,
OV_CALLBACKS_STREAMONLY
)
<
0
)
{
fclose
(
fp
);
return
NULL
;
}
...
...
src/output_init.c
View file @
f2ff2409
...
...
@@ -178,6 +178,7 @@ audio_output_init(struct audio_output *ao, const struct config_param *param,
ao
->
plugin
=
plugin
;
ao
->
enabled
=
config_get_block_bool
(
param
,
"enabled"
,
true
);
ao
->
open
=
false
;
ao
->
pause
=
false
;
ao
->
fail_timer
=
NULL
;
/* set up the filter chain */
...
...
src/update.c
View file @
f2ff2409
...
...
@@ -502,7 +502,8 @@ update_regular_file(struct directory *directory,
{
struct
song
*
song
=
songvec_find
(
&
directory
->
songs
,
name
);
if
(
plugin
->
container_scan
!=
NULL
)
if
(
!
(
song
!=
NULL
&&
st
->
st_mtime
==
song
->
mtime
)
&&
plugin
->
container_scan
!=
NULL
)
{
if
(
update_container_file
(
directory
,
name
,
st
,
plugin
))
{
...
...
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