ext/ffmpeg/gstffmpegdec.c ext/ffmpeg/gstffmpegenc.c change plugins category to meet our new naming standard :

Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c
* ext/ffmpeg/gstffmpegenc.c
change plugins category to meet our new naming standard :
Codec/Encoder|Decoder/Audio|Video
suggested by bilboed, approved by Company
This commit is contained in:
Stéphane Loeuillet 2004-05-09 22:15:29 +00:00
parent e402f62bc6
commit de518b6888
4 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,11 @@
2004-05-10 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
* ext/ffmpeg/gstffmpegdec.c
* ext/ffmpeg/gstffmpegenc.c
change plugins category to meet our new standard :
Codec/Encoder|Decoder/Audio|Video
suggested by bilboed, approved by Company
2004-05-04 Thomas Vander Stichele <thomas at apestaart dot org>
* gst-libs/ext/ffmpeg/autogen.sh:

2
common

@ -1 +1 @@
Subproject commit 95ba8839c03a7f8939a2ae4b0586b012e929fc84
Subproject commit 5f51018de093a26d447de03e1ec6dd0377fc4c77

View file

@ -134,7 +134,7 @@ gst_ffmpegdec_base_init (GstFFMpegDecClass * klass)
/* construct the element details struct */
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",
params->in_plugin->name);

View file

@ -166,7 +166,7 @@ gst_ffmpegenc_base_init (GstFFMpegEncClass * klass)
/* construct the element details struct */
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",
params->in_plugin->name);