mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
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:
parent
e402f62bc6
commit
de518b6888
4 changed files with 11 additions and 3 deletions
|
@ -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
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 95ba8839c03a7f8939a2ae4b0586b012e929fc84
|
||||
Subproject commit 5f51018de093a26d447de03e1ec6dd0377fc4c77
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue