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
a9edf85a
Commit
a9edf85a
authored
Apr 04, 2012
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output/jack: check for connection failure before starting playback
parent
e7a18625
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
NEWS
NEWS
+1
-0
jack_output_plugin.c
src/output/jack_output_plugin.c
+3
-0
No files found.
NEWS
View file @
a9edf85a
...
@@ -4,6 +4,7 @@ ver 0.16.8 (2012/??/??)
...
@@ -4,6 +4,7 @@ ver 0.16.8 (2012/??/??)
- vorbis (and others): fix seeking at startup
- vorbis (and others): fix seeking at startup
- ffmpeg: read the "year" tag
- ffmpeg: read the "year" tag
* output:
* output:
- jack: check for connection failure before starting playback
- jack: workaround for libjack1 crash bug
- jack: workaround for libjack1 crash bug
- osx: fix stuttering due to buffering bug
- osx: fix stuttering due to buffering bug
* fix endless loop in text file reader
* fix endless loop in text file reader
...
...
src/output/jack_output_plugin.c
View file @
a9edf85a
...
@@ -576,6 +576,9 @@ mpd_jack_open(void *data, struct audio_format *audio_format, GError **error_r)
...
@@ -576,6 +576,9 @@ mpd_jack_open(void *data, struct audio_format *audio_format, GError **error_r)
jd
->
pause
=
false
;
jd
->
pause
=
false
;
if
(
jd
->
client
!=
NULL
&&
jd
->
shutdown
)
mpd_jack_disconnect
(
jd
);
if
(
jd
->
client
==
NULL
&&
!
mpd_jack_connect
(
jd
,
error_r
))
if
(
jd
->
client
==
NULL
&&
!
mpd_jack_connect
(
jd
,
error_r
))
return
false
;
return
false
;
...
...
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