From: Leif Johnson Date: Sun, 16 Nov 2003 22:01:30 +0000 (+0000) Subject: + checking in plugin category changes X-Git-Tag: RELEASE-0_7_2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Ftags%2FRELEASE-0_7_2;p=platform%2Fupstream%2Fgst-libav.git + checking in plugin category changes Original commit message from CVS: + checking in plugin category changes --- diff --git a/common b/common index e903f88..2c2bce0 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit e903f88a7388f0b463204ea1f960a4ace840175b +Subproject commit 2c2bce01ed5ed1d1684bd76a334477398009ef4a diff --git a/ext/ffmpeg/gstffmpegcolorspace.c b/ext/ffmpeg/gstffmpegcolorspace.c index 39a1559..0dfce88 100644 --- a/ext/ffmpeg/gstffmpegcolorspace.c +++ b/ext/ffmpeg/gstffmpegcolorspace.c @@ -70,7 +70,7 @@ struct _GstFFMpegCspClass { /* elementfactory information */ static GstElementDetails ffmpegcsp_details = { "FFMPEG Colorspace converter", - "Filter/Effect", + "Filter/Converter/Video", "Converts video from one colorspace to another", "Ronald Bultje ", }; diff --git a/ext/ffmpeg/gstffmpegdec.c b/ext/ffmpeg/gstffmpegdec.c index b9bc317..610dc6c 100644 --- a/ext/ffmpeg/gstffmpegdec.c +++ b/ext/ffmpeg/gstffmpegdec.c @@ -131,7 +131,7 @@ gst_ffmpegdec_base_init (GstFFMpegDecClass *klass) details = g_new0 (GstElementDetails, 1); details->longname = g_strdup_printf("FFMPEG %s decoder", params->in_plugin->name); - details->klass = g_strdup_printf("Codec/%s/Decoder", + details->klass = g_strdup_printf("Codec/Decoder/%s", (params->in_plugin->type == CODEC_TYPE_VIDEO) ? "Video" : "Audio"); details->description = g_strdup_printf("FFMPEG %s decoder", diff --git a/ext/ffmpeg/gstffmpegenc.c b/ext/ffmpeg/gstffmpegenc.c index 2c1d1d3..03f80f2 100644 --- a/ext/ffmpeg/gstffmpegenc.c +++ b/ext/ffmpeg/gstffmpegenc.c @@ -165,7 +165,7 @@ gst_ffmpegenc_base_init (GstFFMpegEncClass *klass) details = g_new0 (GstElementDetails, 1); details->longname = g_strdup_printf("FFMPEG %s encoder", params->in_plugin->name); - details->klass = g_strdup_printf("Codec/%s/Encoder", + details->klass = g_strdup_printf("Codec/Encoder/%s", (params->in_plugin->type == CODEC_TYPE_VIDEO) ? "Video" : "Audio"); details->description = g_strdup_printf("FFMPEG %s encoder",