decoder: rename the struct to "Decoder"

This commit is contained in:
Max Kellermann
2013-10-21 21:12:37 +02:00
parent 13e9f18403
commit 82059645f1
43 changed files with 342 additions and 333 deletions

View File

@@ -29,7 +29,7 @@
*/
struct DecoderBuffer;
struct decoder;
struct Decoder;
struct input_stream;
/**
@@ -41,7 +41,7 @@ struct input_stream;
* @return the new decoder_buffer object
*/
DecoderBuffer *
decoder_buffer_new(struct decoder *decoder, struct input_stream *is,
decoder_buffer_new(Decoder *decoder, struct input_stream *is,
size_t size);
/**