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
f9434227
Commit
f9434227
authored
Nov 10, 2008
by
Led
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0.10.0
parent
88831267
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
7 deletions
+13
-7
ChangeLog
ChangeLog
+2
-0
mpd.1
doc/mpd.1
+1
-1
mpdconf.example
doc/mpdconf.example
+1
-1
conf.c
src/conf.c
+1
-1
decode.c
src/decode.c
+2
-1
permission.c
src/permission.c
+2
-1
player.c
src/player.c
+4
-2
No files found.
ChangeLog
View file @
f9434227
...
@@ -17,6 +17,8 @@ ver 0.10.0 (2004/3/3)
...
@@ -17,6 +17,8 @@ ver 0.10.0 (2004/3/3)
16) Fix a bug, where one process may segfault, and cause more processes to spawn w/o killing ones that lost their parent.
16) Fix a bug, where one process may segfault, and cause more processes to spawn w/o killing ones that lost their parent.
17) Fix a bug when the OSS device was unable to fetch the current volume,
17) Fix a bug when the OSS device was unable to fetch the current volume,
it would close the device (when it maybe previously closed by the exact same code)
it would close the device (when it maybe previously closed by the exact same code)
18) command.c cleanup by mackstann
19) directory.c and command.c cleanup by tw-nym
ver 0.9.4 (2004/1/21)
ver 0.9.4 (2004/1/21)
1) Fix a bug where updated tag info wasn't being detected
1) Fix a bug where updated tag info wasn't being detected
...
...
doc/mpd.1
View file @
f9434227
...
@@ -221,7 +221,7 @@ log_level "default"
...
@@ -221,7 +221,7 @@ log_level "default"
.br
.br
bind_to_address "any"
bind_to_address "any"
.br
.br
#passw
d "passw
d@read,add,control,admin"
#passw
ord "passwor
d@read,add,control,admin"
.br
.br
#default_permissions "read,add,control,admin"
#default_permissions "read,add,control,admin"
.br
.br
...
...
doc/mpdconf.example
View file @
f9434227
...
@@ -32,6 +32,6 @@ save_absolute_paths_in_playlists "no"
...
@@ -32,6 +32,6 @@ save_absolute_paths_in_playlists "no"
log_level "default"
log_level "default"
# when bind_to_address is set to "any", MPD binds all available addresses
# when bind_to_address is set to "any", MPD binds all available addresses
bind_to_address "any"
bind_to_address "any"
#passw
d "passw
d@read,add,control,admin"
#passw
ord "passwor
d@read,add,control,admin"
#default_permissions "read,add,control,admin"
#default_permissions "read,add,control,admin"
#filesystem_charset "UTF-8"
#filesystem_charset "UTF-8"
src/conf.c
View file @
f9434227
...
@@ -168,7 +168,7 @@ char ** readConf(char * file) {
...
@@ -168,7 +168,7 @@ char ** readConf(char * file) {
numberOfArgs
=
buffer2array
(
string
,
&
array
);
numberOfArgs
=
buffer2array
(
string
,
&
array
);
if
(
numberOfArgs
==
0
)
continue
;
if
(
numberOfArgs
==
0
)
continue
;
if
(
2
!=
numberOfArgs
)
{
if
(
2
!=
numberOfArgs
)
{
ERROR
(
"
need two args in conf at
: %s
\n
"
,
string
);
ERROR
(
"
improperly formated config line
: %s
\n
"
,
string
);
exit
(
-
1
);
exit
(
-
1
);
}
}
i
=
0
;
i
=
0
;
...
...
src/decode.c
View file @
f9434227
...
@@ -199,8 +199,9 @@ void decodeSeek(PlayerControl * pc, AudioFormat * af, DecoderControl * dc,
...
@@ -199,8 +199,9 @@ void decodeSeek(PlayerControl * pc, AudioFormat * af, DecoderControl * dc,
int
decoderInit
(
PlayerControl
*
pc
,
Buffer
*
cb
,
AudioFormat
*
af
,
int
decoderInit
(
PlayerControl
*
pc
,
Buffer
*
cb
,
AudioFormat
*
af
,
DecoderControl
*
dc
)
{
DecoderControl
*
dc
)
{
int
pid
;
decode_pid
=
&
(
pc
->
decode_pid
);
decode_pid
=
&
(
pc
->
decode_pid
);
int
pid
=
fork
();
pid
=
fork
();
if
(
pid
==
0
)
{
if
(
pid
==
0
)
{
/* CHILD */
/* CHILD */
...
...
src/permission.c
View file @
f9434227
...
@@ -69,7 +69,6 @@ unsigned int parsePermissions(char * string) {
...
@@ -69,7 +69,6 @@ unsigned int parsePermissions(char * string) {
}
}
void
initPermissions
()
{
void
initPermissions
()
{
permission_passwords
=
makeList
(
free
);
char
*
passwordSets
;
char
*
passwordSets
;
char
*
nextSet
;
char
*
nextSet
;
char
*
temp
;
char
*
temp
;
...
@@ -78,6 +77,8 @@ void initPermissions() {
...
@@ -78,6 +77,8 @@ void initPermissions() {
char
*
password
;
char
*
password
;
unsigned
int
*
permission
;
unsigned
int
*
permission
;
permission_passwords
=
makeList
(
free
);
permission_default
=
PERMISSION_READ
|
PERMISSION_ADD
|
permission_default
=
PERMISSION_READ
|
PERMISSION_ADD
|
PERMISSION_CONTROL
|
PERMISSION_ADMIN
;
PERMISSION_CONTROL
|
PERMISSION_ADMIN
;
...
...
src/player.c
View file @
f9434227
...
@@ -402,17 +402,19 @@ float getPlayerCrossFade() {
...
@@ -402,17 +402,19 @@ float getPlayerCrossFade() {
}
}
void
setPlayerCrossFade
(
float
crossFadeInSeconds
)
{
void
setPlayerCrossFade
(
float
crossFadeInSeconds
)
{
PlayerControl
*
pc
;
if
(
crossFadeInSeconds
<
0
)
crossFadeInSeconds
=
0
;
if
(
crossFadeInSeconds
<
0
)
crossFadeInSeconds
=
0
;
PlayerControl
*
pc
=
&
(
getPlayerData
()
->
playerControl
);
pc
=
&
(
getPlayerData
()
->
playerControl
);
pc
->
crossFade
=
crossFadeInSeconds
;
pc
->
crossFade
=
crossFadeInSeconds
;
}
}
void
setPlayerSoftwareVolume
(
int
volume
)
{
void
setPlayerSoftwareVolume
(
int
volume
)
{
PlayerControl
*
pc
;
volume
=
(
volume
>
100
)
?
100
:
(
volume
<
0
?
0
:
volume
);
volume
=
(
volume
>
100
)
?
100
:
(
volume
<
0
?
0
:
volume
);
PlayerControl
*
pc
=
&
(
getPlayerData
()
->
playerControl
);
pc
=
&
(
getPlayerData
()
->
playerControl
);
pc
->
softwareVolume
=
volume
;
pc
->
softwareVolume
=
volume
;
}
}
...
...
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