mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
ext/mad/gstid3tag.c: move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
Original commit message from CVS: * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio" * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio" * gst/auparse/gstauparse.c : - add code (commented for now) to support audio/x-adpcm on src pad (we have no decoder for those layout yet) * gst/cdxaparse/gstcdxaparse.c : * gst/cdxaparse/gstcdxaparse.h : - partial rewrite using RiffRead (ripped iain's wavparse code) * gst/rtp/gstrtpL16enc.c : typo * gst/rtp/gstrtpgsmenc.c : typo
This commit is contained in:
parent
59f3c16b0c
commit
61a021fbba
7 changed files with 30 additions and 10 deletions
16
ChangeLog
16
ChangeLog
|
@ -1,3 +1,19 @@
|
||||||
|
2004-05-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
|
||||||
|
|
||||||
|
* ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
|
||||||
|
* gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
|
||||||
|
|
||||||
|
* gst/auparse/gstauparse.c :
|
||||||
|
- add code (commented for now) to support audio/x-adpcm on src pad
|
||||||
|
(we have no decoder for those layout yet)
|
||||||
|
|
||||||
|
* gst/cdxaparse/gstcdxaparse.c :
|
||||||
|
* gst/cdxaparse/gstcdxaparse.h :
|
||||||
|
- partial rewrite using RiffRead (ripped iain's wavparse code)
|
||||||
|
|
||||||
|
* gst/rtp/gstrtpL16enc.c : typo
|
||||||
|
* gst/rtp/gstrtpgsmenc.c : typo
|
||||||
|
|
||||||
2004-05-13 Benjamin Otte <otte@gnome.org>
|
2004-05-13 Benjamin Otte <otte@gnome.org>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
|
@ -51,11 +51,10 @@ static GstStaticPadTemplate gst_auparse_src_template =
|
||||||
GST_PAD_SOMETIMES, /* FIXME: spider */
|
GST_PAD_SOMETIMES, /* FIXME: spider */
|
||||||
GST_STATIC_CAPS (GST_AUDIO_INT_PAD_TEMPLATE_CAPS "; " /* 24-bit PCM is barely supported by gstreamer actually */
|
GST_STATIC_CAPS (GST_AUDIO_INT_PAD_TEMPLATE_CAPS "; " /* 24-bit PCM is barely supported by gstreamer actually */
|
||||||
GST_AUDIO_FLOAT_PAD_TEMPLATE_CAPS "; " /* 64-bit float is barely supported by gstreamer actually */
|
GST_AUDIO_FLOAT_PAD_TEMPLATE_CAPS "; " /* 64-bit float is barely supported by gstreamer actually */
|
||||||
"audio/x-alaw, "
|
"audio/x-alaw, " "rate = (int) [ 8000, 192000 ], " "channels = (int) [ 1, 2 ]; " "audio/x-mulaw, " "rate = (int) [ 8000, 192000 ], " "channels = (int) [ 1, 2 ]" /*"; "
|
||||||
"rate = (int) [ 8000, 192000 ], "
|
"audio/x-adpcm, "
|
||||||
"channels = (int) [ 1, 2 ]; "
|
"layout = (string) { g721, g722, g723_3, g723_5 }" */ )
|
||||||
"audio/x-mulaw, "
|
/* Nothing to decode those ADPCM streams for now */
|
||||||
"rate = (int) [ 8000, 192000 ], " "channels = (int) [ 1, 2 ]")
|
|
||||||
);
|
);
|
||||||
|
|
||||||
/* AuParse signals and args */
|
/* AuParse signals and args */
|
||||||
|
@ -314,6 +313,11 @@ Samples :
|
||||||
"width", G_TYPE_INT, depth,
|
"width", G_TYPE_INT, depth,
|
||||||
"endianness", G_TYPE_INT,
|
"endianness", G_TYPE_INT,
|
||||||
auparse->le ? G_LITTLE_ENDIAN : G_BIG_ENDIAN, NULL);
|
auparse->le ? G_LITTLE_ENDIAN : G_BIG_ENDIAN, NULL);
|
||||||
|
/*
|
||||||
|
} else if (layout) {
|
||||||
|
tempcaps = gst_caps_new_simple ("audio/x-adpcm",
|
||||||
|
"layout", G_TYPE_STRING, layout, NULL);
|
||||||
|
*/
|
||||||
} else {
|
} else {
|
||||||
tempcaps = gst_caps_new_simple ("audio/x-raw-int",
|
tempcaps = gst_caps_new_simple ("audio/x-raw-int",
|
||||||
"endianness", G_TYPE_INT,
|
"endianness", G_TYPE_INT,
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
static GstElementDetails gst_rtpL16enc_details = {
|
static GstElementDetails gst_rtpL16enc_details = {
|
||||||
"RTP RAW Audio Encoder",
|
"RTP RAW Audio Encoder",
|
||||||
"Codec/Encoder/Network",
|
"Codec/Encoder/Network",
|
||||||
"Encodes Raw Audio into an RTP packet",
|
"Encodes Raw Audio into a RTP packet",
|
||||||
"Zeeshan Ali <zak147@yahoo.com>"
|
"Zeeshan Ali <zak147@yahoo.com>"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
static GstElementDetails gst_rtpL16enc_details = {
|
static GstElementDetails gst_rtpL16enc_details = {
|
||||||
"RTP RAW Audio Encoder",
|
"RTP RAW Audio Encoder",
|
||||||
"Codec/Encoder/Network",
|
"Codec/Encoder/Network",
|
||||||
"Encodes Raw Audio into an RTP packet",
|
"Encodes Raw Audio into a RTP packet",
|
||||||
"Zeeshan Ali <zak147@yahoo.com>"
|
"Zeeshan Ali <zak147@yahoo.com>"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
static GstElementDetails gst_rtpgsmenc_details = {
|
static GstElementDetails gst_rtpgsmenc_details = {
|
||||||
"RTP GSM Audio Encoder",
|
"RTP GSM Audio Encoder",
|
||||||
"Codec/Encoder/Network",
|
"Codec/Encoder/Network",
|
||||||
"Encodes GSM audio into an RTP packet",
|
"Encodes GSM audio into a RTP packet",
|
||||||
"Zeeshan Ali <zak147@yahoo.com>"
|
"Zeeshan Ali <zak147@yahoo.com>"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
static GstElementDetails gst_rtpgsmenc_details = {
|
static GstElementDetails gst_rtpgsmenc_details = {
|
||||||
"RTP GSM Audio Encoder",
|
"RTP GSM Audio Encoder",
|
||||||
"Codec/Encoder/Network",
|
"Codec/Encoder/Network",
|
||||||
"Encodes GSM audio into an RTP packet",
|
"Encodes GSM audio into a RTP packet",
|
||||||
"Zeeshan Ali <zak147@yahoo.com>"
|
"Zeeshan Ali <zak147@yahoo.com>"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -75,7 +75,7 @@ struct wave_header
|
||||||
|
|
||||||
static GstElementDetails gst_wavenc_details =
|
static GstElementDetails gst_wavenc_details =
|
||||||
GST_ELEMENT_DETAILS ("WAV encoder",
|
GST_ELEMENT_DETAILS ("WAV encoder",
|
||||||
"Codec/Encoder/Audio",
|
"Codec/Muxer/Audio",
|
||||||
"Encode raw audio into WAV",
|
"Encode raw audio into WAV",
|
||||||
"Iain Holmes <iain@prettypeople.org>");
|
"Iain Holmes <iain@prettypeople.org>");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue