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

@@ -27,7 +27,7 @@
#include <string.h>
struct DecoderBuffer {
struct decoder *decoder;
Decoder *decoder;
struct input_stream *is;
/** the allocated size of the buffer */
@@ -45,7 +45,7 @@ struct DecoderBuffer {
};
DecoderBuffer *
decoder_buffer_new(struct decoder *decoder, struct input_stream *is,
decoder_buffer_new(Decoder *decoder, struct input_stream *is,
size_t size)
{
DecoderBuffer *buffer = (DecoderBuffer *)