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
d000d313
Commit
d000d313
authored
Dec 15, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
encoder/flac: fix write callback prototype for libFLAC 1.1.2
parent
971c9671
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
flac_encoder.c
src/encoder/flac_encoder.c
+7
-1
No files found.
src/encoder/flac_encoder.c
View file @
d000d313
...
@@ -129,7 +129,13 @@ flac_encoder_setup(struct flac_encoder *encoder, unsigned bits_per_sample,
...
@@ -129,7 +129,13 @@ flac_encoder_setup(struct flac_encoder *encoder, unsigned bits_per_sample,
static
FLAC__StreamEncoderWriteStatus
static
FLAC__StreamEncoderWriteStatus
flac_write_callback
(
G_GNUC_UNUSED
const
FLAC__StreamEncoder
*
fse
,
flac_write_callback
(
G_GNUC_UNUSED
const
FLAC__StreamEncoder
*
fse
,
const
FLAC__byte
data
[],
size_t
bytes
,
G_GNUC_UNUSED
unsigned
samples
,
const
FLAC__byte
data
[],
#if !defined(FLAC_API_VERSION_CURRENT) || FLAC_API_VERSION_CURRENT <= 7
unsigned
bytes
,
#else
size_t
bytes
,
#endif
G_GNUC_UNUSED
unsigned
samples
,
G_GNUC_UNUSED
unsigned
current_frame
,
void
*
client_data
)
G_GNUC_UNUSED
unsigned
current_frame
,
void
*
client_data
)
{
{
struct
flac_encoder
*
encoder
=
(
struct
flac_encoder
*
)
client_data
;
struct
flac_encoder
*
encoder
=
(
struct
flac_encoder
*
)
client_data
;
...
...
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