summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe Fergeau <teuf@gnome.org>2003-12-08 12:41:02 +0000
committerChristophe Fergeau <teuf@gnome.org>2003-12-08 12:41:02 +0000
commita5a43a7f614ca72a3485bdb52e3fe9c05510d5ef (patch)
treeafe28b6e35c87fad6dccc8dace62f6021bc77a2b
parentada54a1cddc274190e1562c1c2269b40b14184dc (diff)
Forgot to change one application/x-flac to audio/x-flac
Original commit message from CVS: Forgot to change one application/x-flac to audio/x-flac
-rw-r--r--ext/flac/gstflacenc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/flac/gstflacenc.c b/ext/flac/gstflacenc.c
index ae624090..437e682c 100644
--- a/ext/flac/gstflacenc.c
+++ b/ext/flac/gstflacenc.c
@@ -214,7 +214,7 @@ gst_flacenc_base_init (gpointer g_class)
raw_caps = raw_caps_factory ();
flac_caps = flac_caps_factory ();
-
+
sink_template = gst_pad_template_new ("sink", GST_PAD_SINK,
GST_PAD_ALWAYS,
raw_caps, NULL);
@@ -369,7 +369,7 @@ gst_flacenc_sinkconnect (GstPad *pad, GstCaps *caps)
gst_caps_get_int (caps, "rate", &flacenc->sample_rate);
caps = GST_CAPS_NEW ("flacenc_srccaps",
- "application/x-flac",
+ "audio/x-flac",
"channels", GST_PROPS_INT (flacenc->channels),
"rate", GST_PROPS_INT (flacenc->sample_rate));
ret = gst_pad_try_set_caps (flacenc->srcpad, caps);