Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
flac
Commits
49f02571
Commit
49f02571
authored
Jan 16, 2001
by
Josh Coalson
Browse files
minor compile error fix
parent
920401c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugin_winamp2/in_flac.c
View file @
49f02571
...
...
@@ -209,8 +209,8 @@ void getfileinfo(char *filename, char *title, int *length_in_ms)
else
{
/* some other file */
if
(
length_in_ms
)
{
FLAC__FileDecoder
*
tmp_decoder
=
FLAC__file_decoder_get_new_instance
();
tmp_decoder
->
check_md5
=
false
;
/* turn off MD5 checking in the decoder */
stream_info_struct
tmp_stream_info
;
tmp_decoder
->
check_md5
=
false
;
/* turn off MD5 checking in the decoder */
tmp_stream_info
.
abort_flag
=
false
;
if
(
FLAC__file_decoder_init
(
tmp_decoder
,
filename
,
write_callback
,
metadata_callback
,
error_callback
,
&
tmp_stream_info
)
!=
FLAC__FILE_DECODER_OK
)
return
;
...
...
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