diff options
author | Max Kellermann <max@duempel.org> | 2008-10-21 21:59:43 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-21 21:59:43 +0200 |
commit | fb416964d62487c13c9a89fb7f4284945b9544a7 (patch) | |
tree | d9f16b38379101643a6c40144e3a512e78a1702c /src/decoder_internal.h | |
parent | a7888c4998d52a6c85a0c5bd80c340a1a6eee867 (diff) | |
download | mpd-fb416964d62487c13c9a89fb7f4284945b9544a7.tar.gz mpd-fb416964d62487c13c9a89fb7f4284945b9544a7.tar.xz mpd-fb416964d62487c13c9a89fb7f4284945b9544a7.zip |
pcm_utils: renamed ConvState to struct pcm_convert_state
No CamelCase, and a struct instead of a typedef.
Diffstat (limited to '')
-rw-r--r-- | src/decoder_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder_internal.h b/src/decoder_internal.h index 174ca019d..ee8f23b8b 100644 --- a/src/decoder_internal.h +++ b/src/decoder_internal.h @@ -25,7 +25,7 @@ struct decoder { struct decoder_plugin *plugin; - ConvState conv_state; + struct pcm_convert_state conv_state; bool seeking; }; |