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
c2ada39f
Commit
c2ada39f
authored
Apr 12, 2011
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v0.16.x'
Conflicts: NEWS configure.ac
parents
77b6e275
def2fe88
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
4 deletions
+16
-4
NEWS
NEWS
+11
-0
configure.ac
configure.ac
+1
-1
audio_parser.c
src/audio_parser.c
+2
-1
command.c
src/command.c
+1
-1
flac_decoder_plugin.c
src/decoder/flac_decoder_plugin.c
+1
-1
No files found.
NEWS
View file @
c2ada39f
...
...
@@ -15,6 +15,10 @@ ver 0.17 (2011/??/??)
* state_file: add option "restore_paused"
ver 0.16.3 (2011/??/??)
* fix assertion failure in audio format mask parser
ver 0.16.2 (2011/03/18)
* configure.ac:
- fix bashism in tremor test
...
...
@@ -160,6 +164,13 @@ ver 0.16 (2010/12/11)
* make single mode 'sticky'
ver 0.15.17 (2011/??/??)
* encoder:
- vorbis: reset the Ogg stream after flush
* decoders:
- vorbis: fix tremor support
ver 0.15.16 (2011/03/13)
* output:
- ao: initialize the ao_sample_format struct
...
...
configure.ac
View file @
c2ada39f
...
...
@@ -1120,7 +1120,7 @@ if
fi
AM_CONDITIONAL(HAVE_OGG_COMMON,
test x$enable_vorbis
= xyes || test x$enable_oggflac = xyes || test x$enable_flac = xyes)
test x$enable_vorbis = xyes || test x$enable_tremor
= xyes || test x$enable_oggflac = xyes || test x$enable_flac = xyes)
AM_CONDITIONAL(HAVE_FLAC_COMMON,
test x$enable_flac = xyes || test x$enable_oggflac = xyes)
...
...
src/audio_parser.c
View file @
c2ada39f
...
...
@@ -192,7 +192,8 @@ audio_format_parse(struct audio_format *dest, const char *src,
}
audio_format_init
(
dest
,
rate
,
sample_format
,
channels
);
assert
(
audio_format_valid
(
dest
));
assert
(
mask
?
audio_format_mask_valid
(
dest
)
:
audio_format_valid
(
dest
));
return
true
;
}
src/command.c
View file @
c2ada39f
...
...
@@ -467,7 +467,7 @@ handle_currentsong(struct client *client,
G_GNUC_UNUSED
int
argc
,
G_GNUC_UNUSED
char
*
argv
[])
{
playlist_print_current
(
client
,
&
g_playlist
);
return
PLAYLIST_RESULT_SUCCESS
;
return
COMMAND_RETURN_OK
;
}
static
enum
command_return
...
...
src/decoder/flac_decoder_plugin.c
View file @
c2ada39f
...
...
@@ -81,7 +81,7 @@ flac_tell_cb(G_GNUC_UNUSED const FLAC__StreamDecoder *fd,
struct
flac_data
*
data
=
(
struct
flac_data
*
)
fdata
;
if
(
!
data
->
input_stream
->
seekable
)
return
FLAC__STREAM_DECODER_
SEEK
_STATUS_UNSUPPORTED
;
return
FLAC__STREAM_DECODER_
TELL
_STATUS_UNSUPPORTED
;
*
offset
=
(
long
)(
data
->
input_stream
->
offset
);
...
...
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