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
0c9fc2f8
You need to sign in or sign up before continuing.
Commit
0c9fc2f8
authored
Mar 19, 2011
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge commit 'release-0.16.2'
Conflicts: Makefile.am NEWS configure.ac
parents
1a954748
fe588a25
Hide whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
128 additions
and
43 deletions
+128
-43
Makefile.am
Makefile.am
+9
-0
NEWS
NEWS
+20
-1
configure.ac
configure.ac
+9
-3
compress.c
src/AudioCompress/compress.c
+14
-14
audio_format.h
src/audio_format.h
+6
-0
audio_parser.c
src/audio_parser.c
+1
-0
command.c
src/command.c
+1
-1
audiofile_decoder_plugin.c
src/decoder/audiofile_decoder_plugin.c
+1
-1
gme_decoder_plugin.c
src/decoder/gme_decoder_plugin.c
+3
-0
flac_encoder.c
src/encoder/flac_encoder.c
+3
-3
vorbis_encoder.c
src/encoder/vorbis_encoder.c
+2
-0
wave_encoder.c
src/encoder/wave_encoder.c
+2
-2
winmm_mixer_plugin.c
src/mixer/winmm_mixer_plugin.c
+5
-5
ao_plugin.c
src/output/ao_plugin.c
+4
-1
httpd_internal.h
src/output/httpd_internal.h
+1
-1
httpd_output_plugin.c
src/output/httpd_output_plugin.c
+2
-0
jack_output_plugin.c
src/output/jack_output_plugin.c
+7
-7
mvp_plugin.c
src/output/mvp_plugin.c
+1
-1
oss_plugin.c
src/output/oss_plugin.c
+22
-1
output_control.c
src/output_control.c
+1
-0
output_thread.c
src/output_thread.c
+5
-0
pcm_byteswap.c
src/pcm_byteswap.c
+1
-1
pipe.h
src/pipe.h
+1
-1
update_walk.c
src/update_walk.c
+7
-0
No files found.
Makefile.am
View file @
0c9fc2f8
...
@@ -886,6 +886,7 @@ test_run_input_LDADD = $(MPD_LIBS) \
...
@@ -886,6 +886,7 @@ test_run_input_LDADD = $(MPD_LIBS) \
$(INPUT_LIBS)
\
$(INPUT_LIBS)
\
$(GLIB_LIBS)
$(GLIB_LIBS)
test_run_input_SOURCES
=
test
/run_input.c
\
test_run_input_SOURCES
=
test
/run_input.c
\
test
/stdbin.h
\
src/conf.c src/tokenizer.c src/utils.c src/string_util.c
\
src/conf.c src/tokenizer.c src/utils.c src/string_util.c
\
src/tag.c src/tag_pool.c src/tag_save.c
\
src/tag.c src/tag_pool.c src/tag_save.c
\
src/fd_util.c
\
src/fd_util.c
\
...
@@ -933,6 +934,7 @@ test_run_decoder_LDADD = $(MPD_LIBS) \
...
@@ -933,6 +934,7 @@ test_run_decoder_LDADD = $(MPD_LIBS) \
$(INPUT_LIBS)
$(DECODER_LIBS)
\
$(INPUT_LIBS)
$(DECODER_LIBS)
\
$(GLIB_LIBS)
$(GLIB_LIBS)
test_run_decoder_SOURCES
=
test
/run_decoder.c
\
test_run_decoder_SOURCES
=
test
/run_decoder.c
\
test
/stdbin.h
\
src/conf.c src/tokenizer.c src/utils.c src/string_util.c src/log.c
\
src/conf.c src/tokenizer.c src/utils.c src/string_util.c src/log.c
\
src/tag.c src/tag_pool.c
\
src/tag.c src/tag_pool.c
\
src/replay_gain_info.c
\
src/replay_gain_info.c
\
...
@@ -973,6 +975,7 @@ test_run_filter_LDADD = $(MPD_LIBS) \
...
@@ -973,6 +975,7 @@ test_run_filter_LDADD = $(MPD_LIBS) \
$(SAMPLERATE_LIBS)
\
$(SAMPLERATE_LIBS)
\
$(GLIB_LIBS)
$(GLIB_LIBS)
test_run_filter_SOURCES
=
test
/run_filter.c
\
test_run_filter_SOURCES
=
test
/run_filter.c
\
test
/stdbin.h
\
src/filter_plugin.c
\
src/filter_plugin.c
\
src/filter_registry.c
\
src/filter_registry.c
\
src/conf.c src/tokenizer.c src/utils.c src/string_util.c
\
src/conf.c src/tokenizer.c src/utils.c src/string_util.c
\
...
@@ -995,6 +998,7 @@ endif
...
@@ -995,6 +998,7 @@ endif
if
ENABLE_ENCODER
if
ENABLE_ENCODER
noinst_PROGRAMS
+=
test
/run_encoder
noinst_PROGRAMS
+=
test
/run_encoder
test_run_encoder_SOURCES
=
test
/run_encoder.c
\
test_run_encoder_SOURCES
=
test
/run_encoder.c
\
test
/stdbin.h
\
src/conf.c src/tokenizer.c
\
src/conf.c src/tokenizer.c
\
src/utils.c src/string_util.c
\
src/utils.c src/string_util.c
\
src/tag.c src/tag_pool.c
\
src/tag.c src/tag_pool.c
\
...
@@ -1002,12 +1006,15 @@ test_run_encoder_SOURCES = test/run_encoder.c \
...
@@ -1002,12 +1006,15 @@ test_run_encoder_SOURCES = test/run_encoder.c \
src/audio_format.c
\
src/audio_format.c
\
src/audio_parser.c
\
src/audio_parser.c
\
$(ENCODER_SRC)
$(ENCODER_SRC)
test_run_encoder_CPPFLAGS
=
$(AM_CPPFLAGS)
\
$(ENCODER_CFLAGS)
test_run_encoder_LDADD
=
$(MPD_LIBS)
\
test_run_encoder_LDADD
=
$(MPD_LIBS)
\
$(ENCODER_LIBS)
\
$(ENCODER_LIBS)
\
$(GLIB_LIBS)
$(GLIB_LIBS)
endif
endif
test_software_volume_SOURCES
=
test
/software_volume.c
\
test_software_volume_SOURCES
=
test
/software_volume.c
\
test
/stdbin.h
\
src/audio_check.c
\
src/audio_check.c
\
src/audio_parser.c
\
src/audio_parser.c
\
src/pcm_volume.c
src/pcm_volume.c
...
@@ -1015,6 +1022,7 @@ test_software_volume_LDADD = \
...
@@ -1015,6 +1022,7 @@ test_software_volume_LDADD = \
$(GLIB_LIBS)
$(GLIB_LIBS)
test_run_normalize_SOURCES
=
test
/run_normalize.c
\
test_run_normalize_SOURCES
=
test
/run_normalize.c
\
test
/stdbin.h
\
src/audio_check.c
\
src/audio_check.c
\
src/audio_parser.c
\
src/audio_parser.c
\
src/AudioCompress/compress.c
src/AudioCompress/compress.c
...
@@ -1052,6 +1060,7 @@ test_run_output_LDADD = $(MPD_LIBS) \
...
@@ -1052,6 +1060,7 @@ test_run_output_LDADD = $(MPD_LIBS) \
$(OUTPUT_LIBS)
\
$(OUTPUT_LIBS)
\
$(GLIB_LIBS)
$(GLIB_LIBS)
test_run_output_SOURCES
=
test
/run_output.c
\
test_run_output_SOURCES
=
test
/run_output.c
\
test
/stdbin.h
\
src/conf.c src/tokenizer.c src/utils.c src/string_util.c src/log.c
\
src/conf.c src/tokenizer.c src/utils.c src/string_util.c src/log.c
\
src/audio_check.c
\
src/audio_check.c
\
src/audio_format.c
\
src/audio_format.c
\
...
...
NEWS
View file @
0c9fc2f8
...
@@ -15,6 +15,21 @@ ver 0.17 (2011/??/??)
...
@@ -15,6 +15,21 @@ ver 0.17 (2011/??/??)
* state_file: add option "restore_paused"
* state_file: add option "restore_paused"
ver 0.16.2 (2011/03/18)
* configure.ac:
- fix bashism in tremor test
* decoder:
- tremor: fix configure test
- gme: detect end of song
* encoder:
- vorbis: reset the Ogg stream after flush
* output:
- httpd: fix uninitialized variable
- httpd: include sys/socket.h
- oss: AFMT_S24_PACKED is little-endian
- oss: disable 24 bit playback on FreeBSD
ver 0.16.1 (2011/01/09)
ver 0.16.1 (2011/01/09)
* audio_check: fix parameter in prototype
* audio_check: fix parameter in prototype
* add void casts to suppress "result unused" warnings (clang)
* add void casts to suppress "result unused" warnings (clang)
...
@@ -145,9 +160,13 @@ ver 0.16 (2010/12/11)
...
@@ -145,9 +160,13 @@ ver 0.16 (2010/12/11)
* make single mode 'sticky'
* make single mode 'sticky'
ver 0.15.16 (2010/??/??)
ver 0.15.16 (2011/03/13)
* output:
- ao: initialize the ao_sample_format struct
- jack: fix crash with mono playback
* encoders:
* encoders:
- lame: explicitly configure the output sample rate
- lame: explicitly configure the output sample rate
* update: log all file permission problems
ver 0.15.15 (2010/11/08)
ver 0.15.15 (2010/11/08)
...
...
configure.ac
View file @
0c9fc2f8
...
@@ -660,7 +660,7 @@ fi
...
@@ -660,7 +660,7 @@ fi
AM_CONDITIONAL(ENABLE_CDIO_PARANOIA, test x$enable_cdio_paranoia = xyes)
AM_CONDITIONAL(ENABLE_CDIO_PARANOIA, test x$enable_cdio_paranoia = xyes)
dnl ---------------------------------- libogg ---------------------------------
dnl ---------------------------------- libogg ---------------------------------
if test x$with_tremor =
=
xno || test -z $with_tremor; then
if test x$with_tremor = xno || test -z $with_tremor; then
PKG_CHECK_MODULES(OGG, [ogg], enable_ogg=yes, enable_ogg=no)
PKG_CHECK_MODULES(OGG, [ogg], enable_ogg=yes, enable_ogg=no)
fi
fi
...
@@ -959,13 +959,19 @@ if test x$enable_tremor = xyes; then
...
@@ -959,13 +959,19 @@ if test x$enable_tremor = xyes; then
ac_save_LIBS="$LIBS"
ac_save_LIBS="$LIBS"
CFLAGS="$CFLAGS $TREMOR_CFLAGS"
CFLAGS="$CFLAGS $TREMOR_CFLAGS"
LIBS="$LIBS $TREMOR_LIBS"
LIBS="$LIBS $TREMOR_LIBS"
AC_CHECK_LIB(vorbisidec,ov_read,
enable_vorbis=yes,enable_vorbis
=no;
AC_CHECK_LIB(vorbisidec,ov_read,
,enable_tremor
=no;
AC_MSG_WARN([vorbisidec lib needed for ogg support with tremor -- disabling ogg support]))
AC_MSG_WARN([vorbisidec lib needed for ogg support with tremor -- disabling ogg support]))
CFLAGS="$ac_save_CFLAGS"
CFLAGS="$ac_save_CFLAGS"
LIBS="$ac_save_LIBS"
LIBS="$ac_save_LIBS"
fi
if test x$enable_tremor = xyes; then
AC_DEFINE(HAVE_TREMOR,1,
AC_DEFINE(HAVE_TREMOR,1,
[Define to use tremor (libvorbisidec) for ogg support])
[Define to use tremor (libvorbisidec) for ogg support])
AC_DEFINE(ENABLE_VORBIS_DECODER, 1, [Define for Ogg Vorbis support]),
else
TREMOR_CFLAGS=
TREMOR_LIBS=
fi
fi
AC_SUBST(TREMOR_CFLAGS)
AC_SUBST(TREMOR_CFLAGS)
...
@@ -1005,7 +1011,7 @@ if test x$enable_vorbis = xyes; then
...
@@ -1005,7 +1011,7 @@ if test x$enable_vorbis = xyes; then
fi
fi
fi
fi
AM_CONDITIONAL(ENABLE_VORBIS_DECODER, test x$enable_vorbis = xyes)
AM_CONDITIONAL(ENABLE_VORBIS_DECODER, test x$enable_vorbis = xyes
|| test x$enable_tremor = xyes
)
dnl --------------------------------- sidplay ---------------------------------
dnl --------------------------------- sidplay ---------------------------------
found_sidplay=$HAVE_CXX
found_sidplay=$HAVE_CXX
...
...
src/AudioCompress/compress.c
View file @
0c9fc2f8
...
@@ -16,16 +16,16 @@
...
@@ -16,16 +16,16 @@
struct
Compressor
{
struct
Compressor
{
//! The compressor's preferences
//! The compressor's preferences
struct
CompressorConfig
prefs
;
struct
CompressorConfig
prefs
;
//! History of the peak values
//! History of the peak values
int
*
peaks
;
int
*
peaks
;
//! History of the gain values
//! History of the gain values
int
*
gain
;
int
*
gain
;
//! History of clip amounts
//! History of clip amounts
int
*
clipped
;
int
*
clipped
;
unsigned
int
pos
;
unsigned
int
pos
;
unsigned
int
bufsz
;
unsigned
int
bufsz
;
};
};
...
@@ -41,9 +41,9 @@ struct Compressor *Compressor_new(unsigned int history)
...
@@ -41,9 +41,9 @@ struct Compressor *Compressor_new(unsigned int history)
obj
->
peaks
=
obj
->
gain
=
obj
->
clipped
=
NULL
;
obj
->
peaks
=
obj
->
gain
=
obj
->
clipped
=
NULL
;
obj
->
bufsz
=
0
;
obj
->
bufsz
=
0
;
obj
->
pos
=
0
;
obj
->
pos
=
0
;
Compressor_setHistory
(
obj
,
history
);
Compressor_setHistory
(
obj
,
history
);
return
obj
;
return
obj
;
}
}
...
@@ -70,7 +70,7 @@ void Compressor_setHistory(struct Compressor *obj, unsigned int history)
...
@@ -70,7 +70,7 @@ void Compressor_setHistory(struct Compressor *obj, unsigned int history)
{
{
if
(
!
history
)
if
(
!
history
)
history
=
BUCKETS
;
history
=
BUCKETS
;
obj
->
peaks
=
resizeArray
(
obj
->
peaks
,
history
,
obj
->
bufsz
);
obj
->
peaks
=
resizeArray
(
obj
->
peaks
,
history
,
obj
->
bufsz
);
obj
->
gain
=
resizeArray
(
obj
->
gain
,
history
,
obj
->
bufsz
);
obj
->
gain
=
resizeArray
(
obj
->
gain
,
history
,
obj
->
bufsz
);
obj
->
clipped
=
resizeArray
(
obj
->
clipped
,
history
,
obj
->
bufsz
);
obj
->
clipped
=
resizeArray
(
obj
->
clipped
,
history
,
obj
->
bufsz
);
...
@@ -82,7 +82,7 @@ struct CompressorConfig *Compressor_getConfig(struct Compressor *obj)
...
@@ -82,7 +82,7 @@ struct CompressorConfig *Compressor_getConfig(struct Compressor *obj)
return
&
obj
->
prefs
;
return
&
obj
->
prefs
;
}
}
void
Compressor_Process_int16
(
struct
Compressor
*
obj
,
int16_t
*
audio
,
void
Compressor_Process_int16
(
struct
Compressor
*
obj
,
int16_t
*
audio
,
unsigned
int
count
)
unsigned
int
count
)
{
{
struct
CompressorConfig
*
prefs
=
Compressor_getConfig
(
obj
);
struct
CompressorConfig
*
prefs
=
Compressor_getConfig
(
obj
);
...
@@ -97,7 +97,7 @@ void Compressor_Process_int16(struct Compressor *obj, int16_t *audio,
...
@@ -97,7 +97,7 @@ void Compressor_Process_int16(struct Compressor *obj, int16_t *audio,
int
*
clipped
=
obj
->
clipped
+
slot
;
int
*
clipped
=
obj
->
clipped
+
slot
;
unsigned
int
ramp
=
count
;
unsigned
int
ramp
=
count
;
int
delta
;
int
delta
;
ap
=
audio
;
ap
=
audio
;
for
(
i
=
0
;
i
<
count
;
i
++
)
for
(
i
=
0
;
i
<
count
;
i
++
)
{
{
...
@@ -124,15 +124,15 @@ void Compressor_Process_int16(struct Compressor *obj, int16_t *audio,
...
@@ -124,15 +124,15 @@ void Compressor_Process_int16(struct Compressor *obj, int16_t *audio,
//! Determine target gain
//! Determine target gain
newGain
=
(
1
<<
10
)
*
prefs
->
target
/
peakVal
;
newGain
=
(
1
<<
10
)
*
prefs
->
target
/
peakVal
;
//! Adjust the gain with inertia from the previous gain value
//! Adjust the gain with inertia from the previous gain value
newGain
=
(
curGain
*
((
1
<<
prefs
->
smooth
)
-
1
)
+
newGain
)
newGain
=
(
curGain
*
((
1
<<
prefs
->
smooth
)
-
1
)
+
newGain
)
>>
prefs
->
smooth
;
>>
prefs
->
smooth
;
//! Make sure it's no more than the maximum gain value
//! Make sure it's no more than the maximum gain value
if
(
newGain
>
(
prefs
->
maxgain
<<
10
))
if
(
newGain
>
(
prefs
->
maxgain
<<
10
))
newGain
=
prefs
->
maxgain
<<
10
;
newGain
=
prefs
->
maxgain
<<
10
;
//! Make sure it's no less than 1:1
//! Make sure it's no less than 1:1
if
(
newGain
<
(
1
<<
10
))
if
(
newGain
<
(
1
<<
10
))
newGain
=
1
<<
10
;
newGain
=
1
<<
10
;
...
@@ -144,7 +144,7 @@ void Compressor_Process_int16(struct Compressor *obj, int16_t *audio,
...
@@ -144,7 +144,7 @@ void Compressor_Process_int16(struct Compressor *obj, int16_t *audio,
//! Truncate the ramp time
//! Truncate the ramp time
ramp
=
peakPos
;
ramp
=
peakPos
;
}
}
//! Record the new gain
//! Record the new gain
obj
->
gain
[
slot
]
=
newGain
;
obj
->
gain
[
slot
]
=
newGain
;
...
...
src/audio_format.h
View file @
0c9fc2f8
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
#include <stdint.h>
#include <stdint.h>
#include <stdbool.h>
#include <stdbool.h>
#include <assert.h>
enum
sample_format
{
enum
sample_format
{
SAMPLE_FORMAT_UNDEFINED
=
0
,
SAMPLE_FORMAT_UNDEFINED
=
0
,
...
@@ -219,6 +220,9 @@ static inline void
...
@@ -219,6 +220,9 @@ static inline void
audio_format_mask_apply
(
struct
audio_format
*
af
,
audio_format_mask_apply
(
struct
audio_format
*
af
,
const
struct
audio_format
*
mask
)
const
struct
audio_format
*
mask
)
{
{
assert
(
audio_format_valid
(
af
));
assert
(
audio_format_mask_valid
(
mask
));
if
(
mask
->
sample_rate
!=
0
)
if
(
mask
->
sample_rate
!=
0
)
af
->
sample_rate
=
mask
->
sample_rate
;
af
->
sample_rate
=
mask
->
sample_rate
;
...
@@ -227,6 +231,8 @@ audio_format_mask_apply(struct audio_format *af,
...
@@ -227,6 +231,8 @@ audio_format_mask_apply(struct audio_format *af,
if
(
mask
->
channels
!=
0
)
if
(
mask
->
channels
!=
0
)
af
->
channels
=
mask
->
channels
;
af
->
channels
=
mask
->
channels
;
assert
(
audio_format_valid
(
af
));
}
}
/**
/**
...
...
src/audio_parser.c
View file @
0c9fc2f8
...
@@ -192,6 +192,7 @@ audio_format_parse(struct audio_format *dest, const char *src,
...
@@ -192,6 +192,7 @@ audio_format_parse(struct audio_format *dest, const char *src,
}
}
audio_format_init
(
dest
,
rate
,
sample_format
,
channels
);
audio_format_init
(
dest
,
rate
,
sample_format
,
channels
);
assert
(
audio_format_valid
(
dest
));
return
true
;
return
true
;
}
}
src/command.c
View file @
0c9fc2f8
...
@@ -763,7 +763,7 @@ handle_load(struct client *client, G_GNUC_UNUSED int argc, char *argv[])
...
@@ -763,7 +763,7 @@ handle_load(struct client *client, G_GNUC_UNUSED int argc, char *argv[])
result
=
playlist_open_into_queue
(
argv
[
1
],
&
g_playlist
,
result
=
playlist_open_into_queue
(
argv
[
1
],
&
g_playlist
,
client
->
player_control
,
true
);
client
->
player_control
,
true
);
if
(
result
!=
PLAYLIST_RESULT_NO_SUCH_LIST
)
if
(
result
!=
PLAYLIST_RESULT_NO_SUCH_LIST
)
return
result
;
return
print_playlist_result
(
client
,
result
)
;
result
=
playlist_load_spl
(
&
g_playlist
,
client
->
player_control
,
result
=
playlist_load_spl
(
&
g_playlist
,
client
->
player_control
,
argv
[
1
]);
argv
[
1
]);
...
...
src/decoder/audiofile_decoder_plugin.c
View file @
0c9fc2f8
...
@@ -244,7 +244,7 @@ static const char *const audiofile_suffixes[] = {
...
@@ -244,7 +244,7 @@ static const char *const audiofile_suffixes[] = {
static
const
char
*
const
audiofile_mime_types
[]
=
{
static
const
char
*
const
audiofile_mime_types
[]
=
{
"audio/x-wav"
,
"audio/x-wav"
,
"audio/x-aiff"
,
"audio/x-aiff"
,
NULL
NULL
};
};
const
struct
decoder_plugin
audiofile_decoder_plugin
=
{
const
struct
decoder_plugin
audiofile_decoder_plugin
=
{
...
...
src/decoder/gme_decoder_plugin.c
View file @
0c9fc2f8
...
@@ -153,6 +153,9 @@ gme_file_decode(struct decoder *decoder, const char *path_fs)
...
@@ -153,6 +153,9 @@ gme_file_decode(struct decoder *decoder, const char *path_fs)
if
((
gme_err
=
gme_start_track
(
emu
,
song_num
))
!=
NULL
)
if
((
gme_err
=
gme_start_track
(
emu
,
song_num
))
!=
NULL
)
g_warning
(
"%s"
,
gme_err
);
g_warning
(
"%s"
,
gme_err
);
if
(
ti
->
length
>
0
)
gme_set_fade
(
emu
,
ti
->
length
);
/* play */
/* play */
do
{
do
{
gme_err
=
gme_play
(
emu
,
GME_BUFFER_SAMPLES
,
buf
);
gme_err
=
gme_play
(
emu
,
GME_BUFFER_SAMPLES
,
buf
);
...
...
src/encoder/flac_encoder.c
View file @
0c9fc2f8
...
@@ -55,7 +55,7 @@ static bool
...
@@ -55,7 +55,7 @@ static bool
flac_encoder_configure
(
struct
flac_encoder
*
encoder
,
flac_encoder_configure
(
struct
flac_encoder
*
encoder
,
const
struct
config_param
*
param
,
G_GNUC_UNUSED
GError
**
error
)
const
struct
config_param
*
param
,
G_GNUC_UNUSED
GError
**
error
)
{
{
encoder
->
compression
=
config_get_block_unsigned
(
param
,
encoder
->
compression
=
config_get_block_unsigned
(
param
,
"compression"
,
5
);
"compression"
,
5
);
return
true
;
return
true
;
...
@@ -218,7 +218,7 @@ flac_encoder_open(struct encoder *_encoder, struct audio_format *audio_format,
...
@@ -218,7 +218,7 @@ flac_encoder_open(struct encoder *_encoder, struct audio_format *audio_format,
if
(
init_status
!=
FLAC__STREAM_ENCODER_OK
)
{
if
(
init_status
!=
FLAC__STREAM_ENCODER_OK
)
{
g_set_error
(
error
,
flac_encoder_quark
(),
0
,
g_set_error
(
error
,
flac_encoder_quark
(),
0
,
"failed to initialize encoder: %s
\n
"
,
"failed to initialize encoder: %s
\n
"
,
FLAC__StreamEncoderStateString
[
init_status
]);
FLAC__StreamEncoderStateString
[
init_status
]);
flac_encoder_close
(
_encoder
);
flac_encoder_close
(
_encoder
);
return
false
;
return
false
;
...
@@ -234,7 +234,7 @@ flac_encoder_open(struct encoder *_encoder, struct audio_format *audio_format,
...
@@ -234,7 +234,7 @@ flac_encoder_open(struct encoder *_encoder, struct audio_format *audio_format,
if
(
init_status
!=
FLAC__STREAM_ENCODER_INIT_STATUS_OK
)
{
if
(
init_status
!=
FLAC__STREAM_ENCODER_INIT_STATUS_OK
)
{
g_set_error
(
error
,
flac_encoder_quark
(),
0
,
g_set_error
(
error
,
flac_encoder_quark
(),
0
,
"failed to initialize encoder: %s
\n
"
,
"failed to initialize encoder: %s
\n
"
,
FLAC__StreamEncoderInitStatusString
[
init_status
]);
FLAC__StreamEncoderInitStatusString
[
init_status
]);
flac_encoder_close
(
_encoder
);
flac_encoder_close
(
_encoder
);
return
false
;
return
false
;
...
...
src/encoder/vorbis_encoder.c
View file @
0c9fc2f8
...
@@ -276,6 +276,8 @@ vorbis_encoder_flush(struct encoder *_encoder, G_GNUC_UNUSED GError **error)
...
@@ -276,6 +276,8 @@ vorbis_encoder_flush(struct encoder *_encoder, G_GNUC_UNUSED GError **error)
vorbis_analysis_init
(
&
encoder
->
vd
,
&
encoder
->
vi
);
vorbis_analysis_init
(
&
encoder
->
vd
,
&
encoder
->
vi
);
vorbis_block_init
(
&
encoder
->
vd
,
&
encoder
->
vb
);
vorbis_block_init
(
&
encoder
->
vd
,
&
encoder
->
vb
);
ogg_stream_reset
(
&
encoder
->
os
);
encoder
->
flush
=
true
;
encoder
->
flush
=
true
;
return
true
;
return
true
;
}
}
...
...
src/encoder/wave_encoder.c
View file @
0c9fc2f8
...
@@ -58,7 +58,7 @@ wave_encoder_quark(void)
...
@@ -58,7 +58,7 @@ wave_encoder_quark(void)
}
}
static
void
static
void
fill_wave_header
(
struct
wave_header
*
header
,
int
channels
,
int
bits
,
fill_wave_header
(
struct
wave_header
*
header
,
int
channels
,
int
bits
,
int
freq
,
int
block_size
)
int
freq
,
int
block_size
)
{
{
int
data_size
=
0x0FFFFFFF
;
int
data_size
=
0x0FFFFFFF
;
...
@@ -142,7 +142,7 @@ wave_encoder_open(struct encoder *_encoder,
...
@@ -142,7 +142,7 @@ wave_encoder_open(struct encoder *_encoder,
buffer
=
pcm_buffer_get
(
&
encoder
->
buffer
,
sizeof
(
struct
wave_header
)
);
buffer
=
pcm_buffer_get
(
&
encoder
->
buffer
,
sizeof
(
struct
wave_header
)
);
/* create PCM wave header in initial buffer */
/* create PCM wave header in initial buffer */
fill_wave_header
((
struct
wave_header
*
)
buffer
,
fill_wave_header
((
struct
wave_header
*
)
buffer
,
audio_format
->
channels
,
audio_format
->
channels
,
encoder
->
bits
,
encoder
->
bits
,
audio_format
->
sample_rate
,
audio_format
->
sample_rate
,
...
...
src/mixer/winmm_mixer_plugin.c
View file @
0c9fc2f8
...
@@ -58,11 +58,11 @@ winmm_mixer_init(void *ao, G_GNUC_UNUSED const struct config_param *param,
...
@@ -58,11 +58,11 @@ winmm_mixer_init(void *ao, G_GNUC_UNUSED const struct config_param *param,
G_GNUC_UNUSED
GError
**
error_r
)
G_GNUC_UNUSED
GError
**
error_r
)
{
{
assert
(
ao
!=
NULL
);
assert
(
ao
!=
NULL
);
struct
winmm_mixer
*
wm
=
g_new
(
struct
winmm_mixer
,
1
);
struct
winmm_mixer
*
wm
=
g_new
(
struct
winmm_mixer
,
1
);
mixer_init
(
&
wm
->
base
,
&
winmm_mixer_plugin
);
mixer_init
(
&
wm
->
base
,
&
winmm_mixer_plugin
);
wm
->
output
=
(
struct
winmm_output
*
)
ao
;
wm
->
output
=
(
struct
winmm_output
*
)
ao
;
return
&
wm
->
base
;
return
&
wm
->
base
;
}
}
...
@@ -79,13 +79,13 @@ winmm_mixer_get_volume(struct mixer *mixer, GError **error_r)
...
@@ -79,13 +79,13 @@ winmm_mixer_get_volume(struct mixer *mixer, GError **error_r)
DWORD
volume
;
DWORD
volume
;
HWAVEOUT
handle
=
winmm_output_get_handle
(
wm
->
output
);
HWAVEOUT
handle
=
winmm_output_get_handle
(
wm
->
output
);
MMRESULT
result
=
waveOutGetVolume
(
handle
,
&
volume
);
MMRESULT
result
=
waveOutGetVolume
(
handle
,
&
volume
);
if
(
result
!=
MMSYSERR_NOERROR
)
{
if
(
result
!=
MMSYSERR_NOERROR
)
{
g_set_error
(
error_r
,
0
,
winmm_mixer_quark
(),
g_set_error
(
error_r
,
0
,
winmm_mixer_quark
(),
"Failed to get winmm volume"
);
"Failed to get winmm volume"
);
return
-
1
;
return
-
1
;
}
}
return
winmm_volume_decode
(
volume
);
return
winmm_volume_decode
(
volume
);
}
}
...
@@ -102,7 +102,7 @@ winmm_mixer_set_volume(struct mixer *mixer, unsigned volume, GError **error_r)
...
@@ -102,7 +102,7 @@ winmm_mixer_set_volume(struct mixer *mixer, unsigned volume, GError **error_r)
"Failed to set winmm volume"
);
"Failed to set winmm volume"
);
return
false
;
return
false
;
}
}
return
true
;
return
true
;
}
}
...
...
src/output/ao_plugin.c
View file @
0c9fc2f8
...
@@ -26,6 +26,9 @@
...
@@ -26,6 +26,9 @@
#undef G_LOG_DOMAIN
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "ao"
#define G_LOG_DOMAIN "ao"
/* An ao_sample_format, with all fields set to zero: */
static
const
ao_sample_format
OUR_AO_FORMAT_INITIALIZER
;
static
unsigned
ao_output_ref
;
static
unsigned
ao_output_ref
;
struct
ao_data
{
struct
ao_data
{
...
@@ -167,7 +170,7 @@ static bool
...
@@ -167,7 +170,7 @@ static bool
ao_output_open
(
void
*
data
,
struct
audio_format
*
audio_format
,
ao_output_open
(
void
*
data
,
struct
audio_format
*
audio_format
,
GError
**
error
)
GError
**
error
)
{
{
ao_sample_format
format
;
ao_sample_format
format
=
OUR_AO_FORMAT_INITIALIZER
;
struct
ao_data
*
ad
=
(
struct
ao_data
*
)
data
;
struct
ao_data
*
ad
=
(
struct
ao_data
*
)
data
;
switch
(
audio_format
->
format
)
{
switch
(
audio_format
->
format
)
{
...
...
src/output/httpd_internal.h
View file @
0c9fc2f8
...
@@ -111,7 +111,7 @@ struct httpd_output {
...
@@ -111,7 +111,7 @@ struct httpd_output {
char
buffer
[
32768
];
char
buffer
[
32768
];
/**
/**
* The maximum and current number of clients connected
* The maximum and current number of clients connected
* at the same time.
* at the same time.
*/
*/
guint
clients_max
,
clients_cnt
;
guint
clients_max
,
clients_cnt
;
...
...
src/output/httpd_output_plugin.c
View file @
0c9fc2f8
...
@@ -36,6 +36,7 @@
...
@@ -36,6 +36,7 @@
#include <errno.h>
#include <errno.h>
#ifdef HAVE_LIBWRAP
#ifdef HAVE_LIBWRAP
#include <sys/socket.h>
/* needed for AF_UNIX */
#include <tcpd.h>
#include <tcpd.h>
#endif
#endif
...
@@ -123,6 +124,7 @@ httpd_output_init(G_GNUC_UNUSED const struct audio_format *audio_format,
...
@@ -123,6 +124,7 @@ httpd_output_init(G_GNUC_UNUSED const struct audio_format *audio_format,
/* initialize metadata */
/* initialize metadata */
httpd
->
metadata
=
NULL
;
httpd
->
metadata
=
NULL
;
httpd
->
unflushed_input
=
0
;
/* initialize encoder */
/* initialize encoder */
...
...
src/output/jack_output_plugin.c
View file @
0c9fc2f8
...
@@ -40,7 +40,7 @@ enum {
...
@@ -40,7 +40,7 @@ enum {
MAX_PORTS
=
16
,
MAX_PORTS
=
16
,
};
};
static
const
size_t
sample_size
=
sizeof
(
jack_default_audio_sample_t
);
static
const
size_t
jack_
sample_size
=
sizeof
(
jack_default_audio_sample_t
);
struct
jack_data
{
struct
jack_data
{
/**
/**
...
@@ -103,9 +103,9 @@ mpd_jack_available(const struct jack_data *jd)
...
@@ -103,9 +103,9 @@ mpd_jack_available(const struct jack_data *jd)
min
=
current
;
min
=
current
;
}
}
assert
(
min
%
sample_size
==
0
);
assert
(
min
%
jack_
sample_size
==
0
);
return
min
/
sample_size
;
return
min
/
jack_
sample_size
;
}
}
static
int
static
int
...
@@ -123,7 +123,7 @@ mpd_jack_process(jack_nframes_t nframes, void *arg)
...
@@ -123,7 +123,7 @@ mpd_jack_process(jack_nframes_t nframes, void *arg)
const
jack_nframes_t
available
=
mpd_jack_available
(
jd
);
const
jack_nframes_t
available
=
mpd_jack_available
(
jd
);
for
(
unsigned
i
=
0
;
i
<
jd
->
audio_format
.
channels
;
++
i
)
for
(
unsigned
i
=
0
;
i
<
jd
->
audio_format
.
channels
;
++
i
)
jack_ringbuffer_read_advance
(
jd
->
ringbuffer
[
i
],
jack_ringbuffer_read_advance
(
jd
->
ringbuffer
[
i
],
available
*
sample_size
);
available
*
jack_
sample_size
);
/* generate silence while MPD is paused */
/* generate silence while MPD is paused */
...
@@ -144,7 +144,7 @@ mpd_jack_process(jack_nframes_t nframes, void *arg)
...
@@ -144,7 +144,7 @@ mpd_jack_process(jack_nframes_t nframes, void *arg)
for
(
unsigned
i
=
0
;
i
<
jd
->
audio_format
.
channels
;
++
i
)
{
for
(
unsigned
i
=
0
;
i
<
jd
->
audio_format
.
channels
;
++
i
)
{
out
=
jack_port_get_buffer
(
jd
->
ports
[
i
],
nframes
);
out
=
jack_port_get_buffer
(
jd
->
ports
[
i
],
nframes
);
jack_ringbuffer_read
(
jd
->
ringbuffer
[
i
],
jack_ringbuffer_read
(
jd
->
ringbuffer
[
i
],
(
char
*
)
out
,
available
*
sample_size
);
(
char
*
)
out
,
available
*
jack_
sample_size
);
for
(
jack_nframes_t
f
=
available
;
f
<
nframes
;
++
f
)
for
(
jack_nframes_t
f
=
available
;
f
<
nframes
;
++
f
)
/* ringbuffer underrun, fill with silence */
/* ringbuffer underrun, fill with silence */
...
@@ -675,7 +675,7 @@ mpd_jack_play(void *data, const void *chunk, size_t size, GError **error_r)
...
@@ -675,7 +675,7 @@ mpd_jack_play(void *data, const void *chunk, size_t size, GError **error_r)
space
=
space1
;
space
=
space1
;
}
}
if
(
space
>=
fram
e_size
)
if
(
space
>=
jack_sampl
e_size
)
break
;
break
;
/* XXX do something more intelligent to
/* XXX do something more intelligent to
...
@@ -683,7 +683,7 @@ mpd_jack_play(void *data, const void *chunk, size_t size, GError **error_r)
...
@@ -683,7 +683,7 @@ mpd_jack_play(void *data, const void *chunk, size_t size, GError **error_r)
g_usleep
(
1000
);
g_usleep
(
1000
);
}
}
space
/=
sample_size
;
space
/=
jack_
sample_size
;
if
(
space
<
size
)
if
(
space
<
size
)
size
=
space
;
size
=
space
;
...
...
src/output/mvp_plugin.c
View file @
0c9fc2f8
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
*/
/*
/*
* Media MVP audio output based on code from MVPMC project:
* Media MVP audio output based on code from MVPMC project:
* http://mvpmc.sourceforge.net/
* http://mvpmc.sourceforge.net/
*/
*/
...
...
src/output/oss_plugin.c
View file @
0c9fc2f8
...
@@ -41,6 +41,15 @@
...
@@ -41,6 +41,15 @@
# include <sys/soundcard.h>
# include <sys/soundcard.h>
#endif
/* !(defined(__OpenBSD__) || defined(__NetBSD__) */
#endif
/* !(defined(__OpenBSD__) || defined(__NetBSD__) */
/* We got bug reports from FreeBSD users who said that the two 24 bit
formats generate white noise on FreeBSD, but 32 bit works. This is
a workaround until we know what exactly is expected by the kernel
audio drivers. */
#ifndef __linux__
#undef AFMT_S24_PACKED
#undef AFMT_S24_NE
#endif
struct
oss_data
{
struct
oss_data
{
int
fd
;
int
fd
;
const
char
*
device
;
const
char
*
device
;
...
@@ -347,7 +356,7 @@ oss_setup_sample_rate(int fd, struct audio_format *audio_format,
...
@@ -347,7 +356,7 @@ oss_setup_sample_rate(int fd, struct audio_format *audio_format,
case
SUCCESS
:
case
SUCCESS
:
if
(
!
audio_valid_sample_rate
(
sample_rate
))
if
(
!
audio_valid_sample_rate
(
sample_rate
))
break
;
break
;
audio_format
->
sample_rate
=
sample_rate
;
audio_format
->
sample_rate
=
sample_rate
;
return
true
;
return
true
;
...
@@ -461,6 +470,12 @@ oss_setup_sample_format(int fd, struct audio_format *audio_format,
...
@@ -461,6 +470,12 @@ oss_setup_sample_format(int fd, struct audio_format *audio_format,
break
;
break
;
audio_format
->
format
=
mpd_format
;
audio_format
->
format
=
mpd_format
;
#ifdef AFMT_S24_PACKED
if
(
oss_format
==
AFMT_S24_PACKED
)
audio_format
->
reverse_endian
=
G_BYTE_ORDER
!=
G_LITTLE_ENDIAN
;
#endif
return
true
;
return
true
;
case
ERROR
:
case
ERROR
:
...
@@ -502,6 +517,12 @@ oss_setup_sample_format(int fd, struct audio_format *audio_format,
...
@@ -502,6 +517,12 @@ oss_setup_sample_format(int fd, struct audio_format *audio_format,
break
;
break
;
audio_format
->
format
=
mpd_format
;
audio_format
->
format
=
mpd_format
;
#ifdef AFMT_S24_PACKED
if
(
oss_format
==
AFMT_S24_PACKED
)
audio_format
->
reverse_endian
=
G_BYTE_ORDER
!=
G_LITTLE_ENDIAN
;
#endif
return
true
;
return
true
;
case
ERROR
:
case
ERROR
:
...
...
src/output_control.c
View file @
0c9fc2f8
...
@@ -139,6 +139,7 @@ audio_output_open(struct audio_output *ao,
...
@@ -139,6 +139,7 @@ audio_output_open(struct audio_output *ao,
{
{
bool
open
;
bool
open
;
assert
(
audio_format_valid
(
audio_format
));
assert
(
mp
!=
NULL
);
assert
(
mp
!=
NULL
);
if
(
ao
->
fail_timer
!=
NULL
)
{
if
(
ao
->
fail_timer
!=
NULL
)
{
...
...
src/output_thread.c
View file @
0c9fc2f8
...
@@ -96,6 +96,8 @@ ao_filter_open(struct audio_output *ao,
...
@@ -96,6 +96,8 @@ ao_filter_open(struct audio_output *ao,
struct
audio_format
*
audio_format
,
struct
audio_format
*
audio_format
,
GError
**
error_r
)
GError
**
error_r
)
{
{
assert
(
audio_format_valid
(
audio_format
));
/* the replay_gain filter cannot fail here */
/* the replay_gain filter cannot fail here */
if
(
ao
->
replay_gain_filter
!=
NULL
)
if
(
ao
->
replay_gain_filter
!=
NULL
)
filter_open
(
ao
->
replay_gain_filter
,
audio_format
,
error_r
);
filter_open
(
ao
->
replay_gain_filter
,
audio_format
,
error_r
);
...
@@ -137,6 +139,7 @@ ao_open(struct audio_output *ao)
...
@@ -137,6 +139,7 @@ ao_open(struct audio_output *ao)
assert
(
!
ao
->
open
);
assert
(
!
ao
->
open
);
assert
(
ao
->
pipe
!=
NULL
);
assert
(
ao
->
pipe
!=
NULL
);
assert
(
ao
->
chunk
==
NULL
);
assert
(
ao
->
chunk
==
NULL
);
assert
(
audio_format_valid
(
&
ao
->
in_audio_format
));
if
(
ao
->
fail_timer
!=
NULL
)
{
if
(
ao
->
fail_timer
!=
NULL
)
{
/* this can only happen when this
/* this can only happen when this
...
@@ -165,6 +168,8 @@ ao_open(struct audio_output *ao)
...
@@ -165,6 +168,8 @@ ao_open(struct audio_output *ao)
return
;
return
;
}
}
assert
(
audio_format_valid
(
filter_audio_format
));
ao
->
out_audio_format
=
*
filter_audio_format
;
ao
->
out_audio_format
=
*
filter_audio_format
;
audio_format_mask_apply
(
&
ao
->
out_audio_format
,
audio_format_mask_apply
(
&
ao
->
out_audio_format
,
&
ao
->
config_audio_format
);
&
ao
->
config_audio_format
);
...
...
src/pcm_byteswap.c
View file @
0c9fc2f8
...
@@ -49,7 +49,7 @@ const int16_t *pcm_byteswap_16(struct pcm_buffer *buffer,
...
@@ -49,7 +49,7 @@ const int16_t *pcm_byteswap_16(struct pcm_buffer *buffer,
static
inline
uint32_t
swab32
(
uint32_t
x
)
static
inline
uint32_t
swab32
(
uint32_t
x
)
{
{
return
(
x
<<
24
)
|
return
(
x
<<
24
)
|
((
x
&
0xff00
)
<<
8
)
|
((
x
&
0xff00
)
<<
8
)
|
((
x
&
0xff0000
)
>>
8
)
|
((
x
&
0xff0000
)
>>
8
)
|
(
x
>>
24
);
(
x
>>
24
);
...
...
src/pipe.h
View file @
0c9fc2f8
...
@@ -20,9 +20,9 @@
...
@@ -20,9 +20,9 @@
#ifndef MPD_PIPE_H
#ifndef MPD_PIPE_H
#define MPD_PIPE_H
#define MPD_PIPE_H
#ifndef NDEBUG
#include <stdbool.h>
#include <stdbool.h>
#ifndef NDEBUG
struct
audio_format
;
struct
audio_format
;
#endif
#endif
...
...
src/update_walk.c
View file @
0c9fc2f8
...
@@ -300,6 +300,9 @@ stat_directory(const struct directory *directory, struct stat *st)
...
@@ -300,6 +300,9 @@ stat_directory(const struct directory *directory, struct stat *st)
if
(
path_fs
==
NULL
)
if
(
path_fs
==
NULL
)
return
-
1
;
return
-
1
;
ret
=
stat
(
path_fs
,
st
);
ret
=
stat
(
path_fs
,
st
);
if
(
ret
<
0
)
g_warning
(
"Failed to stat %s: %s"
,
path_fs
,
g_strerror
(
errno
));
g_free
(
path_fs
);
g_free
(
path_fs
);
return
ret
;
return
ret
;
}
}
...
@@ -316,6 +319,9 @@ stat_directory_child(const struct directory *parent, const char *name,
...
@@ -316,6 +319,9 @@ stat_directory_child(const struct directory *parent, const char *name,
return
-
1
;
return
-
1
;
ret
=
stat
(
path_fs
,
st
);
ret
=
stat
(
path_fs
,
st
);
if
(
ret
<
0
)
g_warning
(
"Failed to stat %s: %s"
,
path_fs
,
g_strerror
(
errno
));
g_free
(
path_fs
);
g_free
(
path_fs
);
return
ret
;
return
ret
;
}
}
...
@@ -557,6 +563,7 @@ directory_child_access(const struct directory *directory,
...
@@ -557,6 +563,7 @@ directory_child_access(const struct directory *directory,
/* access() is useless on WIN32 */
/* access() is useless on WIN32 */
(
void
)
directory
;
(
void
)
directory
;
(
void
)
name
;
(
void
)
name
;
(
void
)
mode
;
return
true
;
return
true
;
#else
#else
char
*
path
=
map_directory_child_fs
(
directory
,
name
);
char
*
path
=
map_directory_child_fs
(
directory
,
name
);
...
...
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