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
806496df
Commit
806496df
authored
Oct 31, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v0.15.x'
Conflicts: NEWS configure.ac src/decoder/ffmpeg_plugin.c src/update.c
parents
9eadb517
3de912e2
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
4 deletions
+21
-4
NEWS
NEWS
+7
-0
decoder_control.h
src/decoder_control.h
+0
-3
output_thread.c
src/output_thread.c
+9
-0
update_walk.c
src/update_walk.c
+5
-1
No files found.
NEWS
View file @
806496df
...
...
@@ -58,6 +58,13 @@ ver 0.16 (20??/??/??)
* require GLib 2.16
ver 0.15.6 (2009/??/??)
* decoders:
- ffmpeg: convert metadata
* output_thread: check again if output is open on PAUSE
* update: delete ignored symlinks from database
ver 0.15.5 (2009/10/18)
* input:
- curl: don't abort if a packet has only metadata
...
...
src/decoder_control.h
View file @
806496df
...
...
@@ -27,9 +27,6 @@
#include <assert.h>
#define DECODE_TYPE_FILE 0
#define DECODE_TYPE_URL 1
enum
decoder_state
{
DECODE_STATE_STOP
=
0
,
DECODE_STATE_START
,
...
...
src/output_thread.c
View file @
806496df
...
...
@@ -430,6 +430,15 @@ static gpointer audio_output_task(gpointer arg)
break
;
case
AO_COMMAND_PAUSE
:
if
(
!
ao
->
open
)
{
/* the output has failed after
audio_output_all_pause() has
submitted the PAUSE command; bail
out */
ao_command_finished
(
ao
);
break
;
}
ao_pause
(
ao
);
/* don't "break" here: this might cause
ao_play() to be called when command==CLOSE
...
...
src/update_walk.c
View file @
806496df
...
...
@@ -695,7 +695,11 @@ updateDirectory(struct directory *directory, const struct stat *st)
continue
;
utf8
=
fs_charset_to_utf8
(
ent
->
d_name
);
if
(
utf8
==
NULL
||
skip_symlink
(
directory
,
utf8
))
{
if
(
utf8
==
NULL
)
continue
;
if
(
skip_symlink
(
directory
,
utf8
))
{
delete_name_in
(
directory
,
utf8
);
g_free
(
utf8
);
continue
;
}
...
...
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