mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
put them back
Original commit message from CVS: put them back
This commit is contained in:
parent
75d9e267c6
commit
842f7aacbe
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
|
||||
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
|
||||
d'oh, put them back
|
||||
|
||||
2004-07-07 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
|
||||
|
||||
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
|
||||
|
|
|
@ -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