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
5cc3c4f5
Commit
5cc3c4f5
authored
Nov 11, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote branch 'origin/v0.15.x'
parents
96204ea3
dca4d9cf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
14 deletions
+18
-14
NEWS
NEWS
+2
-0
flac_plugin.c
src/decoder/flac_plugin.c
+8
-14
oggflac_plugin.c
src/decoder/oggflac_plugin.c
+8
-0
No files found.
NEWS
View file @
5cc3c4f5
...
...
@@ -79,6 +79,8 @@ ver 0.15.6 (2009/??/??)
- zzip: require libzzip 0.13
* decoders:
- ffmpeg: convert metadata
- oggflac: rewind stream after FLAC detection
- flac: fixed CUE seeking range check
* output_thread: check again if output is open on PAUSE
* update: delete ignored symlinks from database
* database: increased maximum line length to 32 kB
...
...
src/decoder/flac_plugin.c
View file @
5cc3c4f5
...
...
@@ -632,21 +632,15 @@ flac_container_decode(struct decoder* decoder,
FLAC__uint64
seek_sample
=
t_start
+
(
decoder_seek_where
(
decoder
)
*
data
.
audio_format
.
sample_rate
);
//if (seek_sample >= t_start && seek_sample <= t_end && data.total_time > 30)
if
(
seek_sample
>=
t_start
&&
seek_sample
<=
t_end
)
{
if
(
flac_seek_absolute
(
flac_dec
,
(
FLAC__uint64
)
seek_sample
))
{
data
.
time
=
(
float
)(
seek_sample
-
t_start
)
/
data
.
audio_format
.
sample_rate
;
data
.
position
=
0
;
if
(
seek_sample
>=
t_start
&&
seek_sample
<=
t_end
&&
flac_seek_absolute
(
flac_dec
,
(
FLAC__uint64
)
seek_sample
))
{
data
.
time
=
(
float
)(
seek_sample
-
t_start
)
/
data
.
audio_format
.
sample_rate
;
data
.
position
=
0
;
decoder_command_finished
(
decoder
);
}
else
decoder_seek_error
(
decoder
);
//decoder_command_finished(decoder);
}
decoder_command_finished
(
decoder
);
}
else
decoder_seek_error
(
decoder
);
}
else
if
(
flac_get_state
(
flac_dec
)
==
flac_decoder_eof
)
break
;
...
...
src/decoder/oggflac_plugin.c
View file @
5cc3c4f5
...
...
@@ -261,6 +261,10 @@ oggflac_tag_dup(const char *file)
return
NULL
;
}
/* rewind the stream, because ogg_stream_type_detect() has
moved it */
input_stream_seek
(
&
input_stream
,
0
,
SEEK_SET
);
flac_data_init
(
&
data
,
NULL
,
&
input_stream
);
data
.
tag
=
tag_new
();
...
...
@@ -292,6 +296,10 @@ oggflac_decode(struct decoder * mpd_decoder, struct input_stream *input_stream)
if
(
ogg_stream_type_detect
(
input_stream
)
!=
FLAC
)
return
;
/* rewind the stream, because ogg_stream_type_detect() has
moved it */
input_stream_seek
(
input_stream
,
0
,
SEEK_SET
);
flac_data_init
(
&
data
,
mpd_decoder
,
input_stream
);
if
(
!
(
decoder
=
full_decoder_init_and_read_metadata
(
&
data
,
0
)))
{
...
...
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