diff options
Diffstat (limited to '')
-rw-r--r-- | src/chunk.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/chunk.h b/src/chunk.h index 58ed7be6f..b63466102 100644 --- a/src/chunk.h +++ b/src/chunk.h @@ -35,6 +35,9 @@ struct audio_format; * music_pipe_append() caller. */ struct music_chunk { + /** the next chunk in a linked list */ + struct music_chunk *next; + /** number of bytes stored in this chunk */ uint16_t length; |