diff options
author | Leif Johnson <leif@ambient.2y.net> | 2003-07-19 23:47:41 +0000 |
---|---|---|
committer | Leif Johnson <leif@ambient.2y.net> | 2003-07-19 23:47:41 +0000 |
commit | 7b0389b09c1dd68462164394ef888cb2455851a6 (patch) | |
tree | 8fd11ae38af22f7ea99d78250eca8eb7bef0af34 /gst/qtdemux | |
parent | 6fcc950836dc9626bd9cabbd6ba3650c363a4375 (diff) |
+ 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
Diffstat (limited to 'gst/qtdemux')
-rw-r--r-- | gst/qtdemux/qtdemux.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index 4852db93..3358db33 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -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'): |