From 06f898cc1240a29b293de0e97ad95a4fdc971254 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 30 Jul 2013 20:11:57 +0200 Subject: tag: convert to C++ --- src/EncoderPlugin.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/EncoderPlugin.hxx') diff --git a/src/EncoderPlugin.hxx b/src/EncoderPlugin.hxx index 9336b2693..868a9998c 100644 --- a/src/EncoderPlugin.hxx +++ b/src/EncoderPlugin.hxx @@ -29,7 +29,7 @@ struct EncoderPlugin; struct audio_format; struct config_param; -struct tag; +struct Tag; struct Encoder { const EncoderPlugin &plugin; @@ -66,7 +66,7 @@ struct EncoderPlugin { bool (*pre_tag)(Encoder *encoder, GError **error); - bool (*tag)(Encoder *encoder, const struct tag *tag, + bool (*tag)(Encoder *encoder, const Tag *tag, GError **error); bool (*write)(Encoder *encoder, @@ -246,7 +246,7 @@ encoder_pre_tag(Encoder *encoder, GError **error) * @return true on success */ static inline bool -encoder_tag(Encoder *encoder, const struct tag *tag, GError **error) +encoder_tag(Encoder *encoder, const Tag *tag, GError **error) { assert(encoder->open); assert(!encoder->pre_tag); -- cgit v1.2.3