mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
ext/vorbis/vorbisenc.c: Fix weird caps (#157548).
Original commit message from CVS: reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net> * ext/vorbis/vorbisenc.c: (raw_caps_factory): Fix weird caps (#157548).
This commit is contained in:
parent
52181d8327
commit
9aeea7c92b
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2004-11-06 Tim-Philipp Müller <t.i.m@zen.co.uk>
|
||||||
|
|
||||||
|
reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
|
* ext/vorbis/vorbisenc.c: (raw_caps_factory):
|
||||||
|
Fix weird caps (#157548).
|
||||||
|
|
||||||
2004-11-06 Tim-Philipp Müller <t.i.m@zen.co.uk>
|
2004-11-06 Tim-Philipp Müller <t.i.m@zen.co.uk>
|
||||||
|
|
||||||
Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
|
@ -163,9 +163,9 @@ raw_caps_factory (void)
|
||||||
return
|
return
|
||||||
gst_caps_new_simple ("audio/x-raw-float",
|
gst_caps_new_simple ("audio/x-raw-float",
|
||||||
"rate", GST_TYPE_INT_RANGE, 8000, 50000,
|
"rate", GST_TYPE_INT_RANGE, 8000, 50000,
|
||||||
"channels", GST_TYPE_INT_RANGE, 1, 2, NULL,
|
"channels", GST_TYPE_INT_RANGE, 1, 2,
|
||||||
"endianness", G_TYPE_INT, G_BYTE_ORDER,
|
"endianness", G_TYPE_INT, G_BYTE_ORDER,
|
||||||
"width", G_TYPE_INT, 32, "buffer-frames", G_TYPE_INT, 0);
|
"width", G_TYPE_INT, 32, "buffer-frames", G_TYPE_INT, 0, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue