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
43eefe9c
Commit
43eefe9c
authored
Jan 17, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder_api: pass const pointer to decoder_data()
parent
35652645
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
decoder_api.c
src/decoder_api.c
+1
-1
decoder_api.h
src/decoder_api.h
+2
-1
No files found.
src/decoder_api.c
View file @
43eefe9c
...
...
@@ -187,7 +187,7 @@ update_stream_tag(struct decoder *decoder, struct input_stream *is)
enum
decoder_command
decoder_data
(
struct
decoder
*
decoder
,
struct
input_stream
*
is
,
void
*
_data
,
size_t
length
,
const
void
*
_data
,
size_t
length
,
float
data_time
,
uint16_t
bitRate
,
struct
replay_gain_info
*
replay_gain_info
)
{
...
...
src/decoder_api.h
View file @
43eefe9c
...
...
@@ -148,7 +148,8 @@ size_t decoder_read(struct decoder *decoder,
enum
decoder_command
decoder_data
(
struct
decoder
*
decoder
,
struct
input_stream
*
inStream
,
void
*
data
,
size_t
datalen
,
float
data_time
,
uint16_t
bitRate
,
const
void
*
data
,
size_t
datalen
,
float
data_time
,
uint16_t
bitRate
,
struct
replay_gain_info
*
replay_gain_info
);
/**
...
...
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