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
85b6ff7b
Commit
85b6ff7b
authored
Nov 02, 2008
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
music_pipe: document struct music_chunk
Add doxygen compatible comments.
parent
b42dad9b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
pipe.h
src/pipe.h
+11
-0
No files found.
src/pipe.h
View file @
85b6ff7b
...
...
@@ -28,10 +28,21 @@
struct
audio_format
;
/**
* A chunk of music data. Its format is defined by the
* music_pipe_append() caller.
*/
struct
music_chunk
{
/** number of bytes stored in this chunk */
uint16_t
length
;
/** current bit rate of the source file */
uint16_t
bit_rate
;
/** the time stamp within the song */
float
times
;
/** the data (probably PCM) */
char
data
[
CHUNK_SIZE
];
};
...
...
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