diff options
author | Max Kellermann <max@duempel.org> | 2008-11-02 16:57:16 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-02 16:57:16 +0100 |
commit | 5347cca29d0b6df888122d09ec05101d24a227be (patch) | |
tree | 97959c6751a7eafda228a949be58a378732b9695 /src/pipe.h | |
parent | 8490c1b4cfbd35f049f36c3f85396a429a80d837 (diff) | |
download | mpd-5347cca29d0b6df888122d09ec05101d24a227be.tar.gz mpd-5347cca29d0b6df888122d09ec05101d24a227be.tar.xz mpd-5347cca29d0b6df888122d09ec05101d24a227be.zip |
music_pipe: no CamelCase
Rename all variables and struct members.
Diffstat (limited to 'src/pipe.h')
-rw-r--r-- | src/pipe.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pipe.h b/src/pipe.h index ae5fa64d5..51c8ed3f3 100644 --- a/src/pipe.h +++ b/src/pipe.h @@ -29,8 +29,8 @@ struct audio_format; struct music_chunk { - uint16_t chunkSize; - uint16_t bitRate; + uint16_t length; + uint16_t bit_rate; float times; char data[CHUNK_SIZE]; }; @@ -136,7 +136,7 @@ music_pipe_peek(void) */ size_t music_pipe_append(const void *data, size_t datalen, const struct audio_format *audio_format, - float data_time, uint16_t bitRate); + float data_time, uint16_t bit_rate); void music_pipe_skip(unsigned num); |