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
Stefan Strogin
flac
Commits
0bc2c328
Commit
0bc2c328
authored
Dec 30, 2003
by
Josh Coalson
Browse files
minor comments
parent
182e4e6f
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/FLAC/stream_decoder.h
View file @
0bc2c328
...
...
@@ -334,7 +334,8 @@ typedef struct {
* to the callback, it contains the maximum number
* of bytes that may be stored in \a buffer. The
* callee must set it to the actual number of bytes
* stored before returning.
* stored (0 in case of error or end-of-stream) before
* returning.
* \param client_data The callee's client data set through
* FLAC__stream_decoder_set_client_data().
* \retval FLAC__StreamDecoderReadStatus
...
...
src/libOggFLAC/ogg_encoder_aspect.c
View file @
0bc2c328
...
...
@@ -95,6 +95,7 @@ FLAC__StreamEncoderWriteStatus OggFLAC__ogg_encoder_aspect_write_callback_wrappe
return
FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR
;
#ifdef FLAC__ONE_FLAC_FRAME_PER_OGG_PAGE
/* WATCHOUT: a FLAC frame may not be able to fit in a single Ogg page */
while
(
ogg_stream_flush
(
&
aspect
->
stream_state
,
&
aspect
->
page
)
!=
0
)
{
if
(
write_callback
(
encoder
,
aspect
->
page
.
header
,
aspect
->
page
.
header_len
,
0
,
current_frame
,
client_data
)
!=
FLAC__STREAM_ENCODER_WRITE_STATUS_OK
)
return
FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR
;
...
...
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