mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 08:17:01 +00:00
+ the last of the float caps changes ... these are a bit more pervasive
Original commit message from CVS: + the last of the float caps changes ... these are a bit more pervasive
This commit is contained in:
parent
6fcc950836
commit
7b0389b09c
3 changed files with 6 additions and 10 deletions
|
@ -7,7 +7,7 @@
|
|||
/* elementfactory information */
|
||||
static GstElementDetails alawenc_details = {
|
||||
"PCM to A Law conversion",
|
||||
"Filter/Audio/Conversion",
|
||||
"Codec/Audio/Encoder",
|
||||
"LGPL",
|
||||
"Convert 16bit PCM to 8bit A law",
|
||||
VERSION,
|
||||
|
@ -18,7 +18,7 @@ static GstElementDetails alawenc_details = {
|
|||
/* elementfactory information */
|
||||
static GstElementDetails alawdec_details = {
|
||||
"A Law to PCM conversion",
|
||||
"Filter/Audio/Conversion",
|
||||
"Codec/Audio/Decoder",
|
||||
"LGPL",
|
||||
"Convert 8bit A law to 16bit PCM",
|
||||
VERSION,
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
/* elementfactory information */
|
||||
static GstElementDetails mulawenc_details = {
|
||||
"PCM to Mu Law conversion",
|
||||
"Filter/Audio/Conversion",
|
||||
"Codec/Audio/Encoder",
|
||||
"LGPL",
|
||||
"Convert 16bit PCM to 8bit mu law",
|
||||
VERSION,
|
||||
|
@ -18,7 +18,7 @@ static GstElementDetails mulawenc_details = {
|
|||
/* elementfactory information */
|
||||
static GstElementDetails mulawdec_details = {
|
||||
"Mu Law to PCM conversion",
|
||||
"Filter/Audio/Conversion",
|
||||
"Codec/Audio/Decoder",
|
||||
"LGPL",
|
||||
"Convert 8bit mu law to 16bit PCM",
|
||||
VERSION,
|
||||
|
|
|
@ -1673,18 +1673,14 @@ static GstCaps *qtdemux_audio_caps(GstQTDemux *qtdemux, guint32 fourcc)
|
|||
"channels",GST_PROPS_INT_RANGE(1,G_MAXINT));
|
||||
case GST_MAKE_FOURCC('f','l','6','4'):
|
||||
return GST_CAPS_NEW("fl64_caps","audio/x-raw-float",
|
||||
"depth",GST_PROPS_INT (64),
|
||||
"width",GST_PROPS_INT (64),
|
||||
"endianness",GST_PROPS_INT (G_BIG_ENDIAN),
|
||||
"intercept",GST_PROPS_FLOAT (0.0),
|
||||
"slope",GST_PROPS_FLOAT (1.0),
|
||||
"rate",GST_PROPS_INT_RANGE(1,G_MAXINT),
|
||||
"channels",GST_PROPS_INT_RANGE(1,G_MAXINT));
|
||||
case GST_MAKE_FOURCC('f','l','3','2'):
|
||||
return GST_CAPS_NEW("fl32_caps","audio/x-raw-float",
|
||||
"depth",GST_PROPS_INT (32),
|
||||
"width",GST_PROPS_INT (32),
|
||||
"endianness",GST_PROPS_INT (G_BIG_ENDIAN),
|
||||
"intercept",GST_PROPS_FLOAT (0.0),
|
||||
"slope",GST_PROPS_FLOAT (1.0),
|
||||
"rate",GST_PROPS_INT_RANGE(1,G_MAXINT),
|
||||
"channels",GST_PROPS_INT_RANGE(1,G_MAXINT));
|
||||
case GST_MAKE_FOURCC('i','n','2','4'):
|
||||
|
|
Loading…
Reference in a new issue