diff --git a/LICENSE_readme b/LICENSE_readme index acfd11a98c..70d6541669 100644 --- a/LICENSE_readme +++ b/LICENSE_readme @@ -26,6 +26,7 @@ gst1394 libraw1394 (http://linux1394.sourceforge.net) flac libFLAC (http://flac.sourceforge.net) RTP ortp (http://www.linphone.org/ortp/) Effectv effectv (http://effectv.sourceforge.net) +ffmpeg ffmpeg (http://ffmpeg.sourceforge.net) Plugins which use a BSD covered library are as follows: vorbisenc libogg/libvorbis (http://www.xiph.org/ogg/vorbis) diff --git a/ext/vorbis/vorbis.c b/ext/vorbis/vorbis.c index 7de1fc09d9..317a81d955 100644 --- a/ext/vorbis/vorbis.c +++ b/ext/vorbis/vorbis.c @@ -38,7 +38,7 @@ vorbis_caps_factory (void) return gst_caps_new ( "vorbis_vorbis", - "audio/x-ogg", + "application/x-ogg", NULL); } @@ -78,7 +78,7 @@ raw_caps2_factory (void) static GstTypeDefinition vorbisdefinition = { "vorbis_audio/x-ogg", - "audio/x-ogg", + "application/x-ogg", ".ogg", vorbis_type_find, }; @@ -91,7 +91,7 @@ vorbis_type_find (GstBuffer *buf, gpointer private) if (head != 0x4F676753) return NULL; - return gst_caps_new ("vorbis_type_find", "audio/x-ogg", NULL); + return gst_caps_new ("vorbis_type_find", "application/x-ogg", NULL); }