diff options
Diffstat (limited to 'ext/flac/gstflac.c')
-rw-r--r-- | ext/flac/gstflac.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/flac/gstflac.c b/ext/flac/gstflac.c index 4d75caf1..6614f865 100644 --- a/ext/flac/gstflac.c +++ b/ext/flac/gstflac.c @@ -37,7 +37,7 @@ flac_caps_factory (void) return gst_caps_new ( "flac_flac", - "audio/x-flac", + "application/x-flac", NULL); } @@ -61,8 +61,8 @@ raw_caps_factory (void) } static GstTypeDefinition flacdefinition = { - "flac_audio/x-flac", - "audio/x-flac", + "flac_application/x-flac", + "application/x-flac", ".flac", flac_type_find, }; @@ -75,7 +75,7 @@ flac_type_find (GstBuffer *buf, gpointer private) if (head != 0x664C6143) return NULL; - return gst_caps_new ("flac_type_find", "audio/x-flac", NULL); + return gst_caps_new ("flac_type_find", "application/x-flac", NULL); } |