aboutsummaryrefslogtreecommitdiff
path: root/src/encoder/vorbis_encoder.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/encoder/vorbis_encoder.c')
-rw-r--r--src/encoder/vorbis_encoder.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/encoder/vorbis_encoder.c b/src/encoder/vorbis_encoder.c
index df998efb..8e118e90 100644
--- a/src/encoder/vorbis_encoder.c
+++ b/src/encoder/vorbis_encoder.c
@@ -382,12 +382,10 @@ vorbis_encoder_read(struct encoder *_encoder, void *_dest, size_t length)
return nbytes;
}
-static const char *vorbis_encoder_mime_type = "application/x-ogg";
-
static const char *
vorbis_encoder_get_mime_type(G_GNUC_UNUSED struct encoder *_encoder)
{
- return vorbis_encoder_mime_type;
+ return "application/x-ogg";
}
const struct encoder_plugin vorbis_encoder_plugin = {