-Subproject commit e903f88a7388f0b463204ea1f960a4ace840175b
+Subproject commit 2c2bce01ed5ed1d1684bd76a334477398009ef4a
/* elementfactory information */
static GstElementDetails ffmpegcsp_details = {
"FFMPEG Colorspace converter",
- "Filter/Effect",
+ "Filter/Converter/Video",
"Converts video from one colorspace to another",
"Ronald Bultje <rbultje@ronald.bitfreak.net>",
};
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",
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",