mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-30 02:58:24 +00:00
+ checking in plugin category changes
Original commit message from CVS: + checking in plugin category changes
This commit is contained in:
parent
ebbae798e3
commit
579ca39de7
4 changed files with 4 additions and 4 deletions
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit e903f88a7388f0b463204ea1f960a4ace840175b
|
Subproject commit 2c2bce01ed5ed1d1684bd76a334477398009ef4a
|
|
@ -70,7 +70,7 @@ struct _GstFFMpegCspClass {
|
||||||
/* elementfactory information */
|
/* elementfactory information */
|
||||||
static GstElementDetails ffmpegcsp_details = {
|
static GstElementDetails ffmpegcsp_details = {
|
||||||
"FFMPEG Colorspace converter",
|
"FFMPEG Colorspace converter",
|
||||||
"Filter/Effect",
|
"Filter/Converter/Video",
|
||||||
"Converts video from one colorspace to another",
|
"Converts video from one colorspace to another",
|
||||||
"Ronald Bultje <rbultje@ronald.bitfreak.net>",
|
"Ronald Bultje <rbultje@ronald.bitfreak.net>",
|
||||||
};
|
};
|
||||||
|
|
|
@ -131,7 +131,7 @@ gst_ffmpegdec_base_init (GstFFMpegDecClass *klass)
|
||||||
details = g_new0 (GstElementDetails, 1);
|
details = g_new0 (GstElementDetails, 1);
|
||||||
details->longname = g_strdup_printf("FFMPEG %s decoder",
|
details->longname = g_strdup_printf("FFMPEG %s decoder",
|
||||||
params->in_plugin->name);
|
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) ?
|
(params->in_plugin->type == CODEC_TYPE_VIDEO) ?
|
||||||
"Video" : "Audio");
|
"Video" : "Audio");
|
||||||
details->description = g_strdup_printf("FFMPEG %s decoder",
|
details->description = g_strdup_printf("FFMPEG %s decoder",
|
||||||
|
|
|
@ -165,7 +165,7 @@ gst_ffmpegenc_base_init (GstFFMpegEncClass *klass)
|
||||||
details = g_new0 (GstElementDetails, 1);
|
details = g_new0 (GstElementDetails, 1);
|
||||||
details->longname = g_strdup_printf("FFMPEG %s encoder",
|
details->longname = g_strdup_printf("FFMPEG %s encoder",
|
||||||
params->in_plugin->name);
|
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) ?
|
(params->in_plugin->type == CODEC_TYPE_VIDEO) ?
|
||||||
"Video" : "Audio");
|
"Video" : "Audio");
|
||||||
details->description = g_strdup_printf("FFMPEG %s encoder",
|
details->description = g_strdup_printf("FFMPEG %s encoder",
|
||||||
|
|
Loading…
Reference in a new issue