mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 04:56:24 +00:00
ext/: \1/Codec, (fixes #142193)
Original commit message from CVS: reviewed by Benjamin Otte <otte@gnome.org> * ext/a52dec/gsta52dec.c: * ext/divx/gstdivxdec.c: * ext/divx/gstdivxenc.c: * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init): * ext/faac/gstfaac.c: (gst_faac_base_init): * ext/faad/gstfaad.c: (gst_faad_base_init): * ext/ivorbis/vorbisfile.c: * ext/lame/gstlame.c: * ext/libfame/gstlibfame.c: * ext/mpeg2enc/gstmpeg2enc.cc: * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init): * ext/sidplay/gstsiddec.cc: * ext/speex/gstspeexdec.c: * ext/speex/gstspeexenc.c: * ext/xvid/gstxviddec.c: * ext/xvid/gstxvidenc.c: correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec, (fixes #142193)
This commit is contained in:
parent
d14637ca7f
commit
948520e171
4 changed files with 26 additions and 3 deletions
23
ChangeLog
23
ChangeLog
|
@ -1,3 +1,26 @@
|
||||||
|
2004-05-09 Edward Hervey <bilboed@bilboed.com>
|
||||||
|
|
||||||
|
reviewed by Benjamin Otte <otte@gnome.org>
|
||||||
|
|
||||||
|
* ext/a52dec/gsta52dec.c:
|
||||||
|
* ext/divx/gstdivxdec.c:
|
||||||
|
* ext/divx/gstdivxenc.c:
|
||||||
|
* ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
|
||||||
|
* ext/faac/gstfaac.c: (gst_faac_base_init):
|
||||||
|
* ext/faad/gstfaad.c: (gst_faad_base_init):
|
||||||
|
* ext/ivorbis/vorbisfile.c:
|
||||||
|
* ext/lame/gstlame.c:
|
||||||
|
* ext/libfame/gstlibfame.c:
|
||||||
|
* ext/mpeg2enc/gstmpeg2enc.cc:
|
||||||
|
* ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
|
||||||
|
* ext/sidplay/gstsiddec.cc:
|
||||||
|
* ext/speex/gstspeexdec.c:
|
||||||
|
* ext/speex/gstspeexenc.c:
|
||||||
|
* ext/xvid/gstxviddec.c:
|
||||||
|
* ext/xvid/gstxvidenc.c:
|
||||||
|
correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
|
||||||
|
(fixes #142193)
|
||||||
|
|
||||||
2004-05-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
2004-05-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
* ext/alsa/gstalsa.c: (device_list),
|
* ext/alsa/gstalsa.c: (device_list),
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
/* elementfactory information */
|
/* elementfactory information */
|
||||||
static GstElementDetails gst_a52dec_details = {
|
static GstElementDetails gst_a52dec_details = {
|
||||||
"ATSC A/52 audio decoder",
|
"ATSC A/52 audio decoder",
|
||||||
"Codec/Audio/Decoder",
|
"Codec/Decoder/Audio",
|
||||||
"Decodes ATSC A/52 encoded audio streams",
|
"Decodes ATSC A/52 encoded audio streams",
|
||||||
"David I. Lehn <dlehn@users.sourceforge.net>",
|
"David I. Lehn <dlehn@users.sourceforge.net>",
|
||||||
};
|
};
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
/* elementfactory information */
|
/* elementfactory information */
|
||||||
static GstElementDetails gst_lame_details = {
|
static GstElementDetails gst_lame_details = {
|
||||||
"L.A.M.E. mp3 encoder",
|
"L.A.M.E. mp3 encoder",
|
||||||
"Codec/Audio/Encoder",
|
"Codec/Encoder/Audio",
|
||||||
"High-quality free MP3 encoder",
|
"High-quality free MP3 encoder",
|
||||||
"Erik Walthinsen <omega@cse.ogi.edu>",
|
"Erik Walthinsen <omega@cse.ogi.edu>",
|
||||||
};
|
};
|
||||||
|
|
|
@ -162,7 +162,7 @@ gst_siddec_base_init (gpointer g_class)
|
||||||
{
|
{
|
||||||
static GstElementDetails gst_siddec_details =
|
static GstElementDetails gst_siddec_details =
|
||||||
GST_ELEMENT_DETAILS ("Sid decoder",
|
GST_ELEMENT_DETAILS ("Sid decoder",
|
||||||
"Codec/Audio/Decoder",
|
"Codec/Decoder/Audio",
|
||||||
"Use sidplay to decode SID audio tunes",
|
"Use sidplay to decode SID audio tunes",
|
||||||
"Wim Taymans <wim.taymans@chello.be> ");
|
"Wim Taymans <wim.taymans@chello.be> ");
|
||||||
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
||||||
|
|
Loading…
Reference in a new issue