GST_STATIC_CAPS ("audio/x-wavpack, "
"width = (int) { 8, 16, 24, 32 }, "
"channels = (int) { 1, 2 }, "
- "rate = (int) [ 8000, 96000 ], " "framed = (boolean) true")
+ "rate = (int) [ 6000, 192000 ], " "framed = (boolean) true")
);
static GstStaticPadTemplate wvc_sink_factory =
"width = (int) { 8, 16, 24 }, "
"depth = (int) { 8, 16, 24 }, "
"channels = (int) { 1, 2 }, "
- "rate = (int) [ 8000, 96000 ], "
+ "rate = (int) [ 6000, 192000 ], "
"endianness = (int) LITTLE_ENDIAN, "
"signed = (boolean) true;"
"audio/x-raw-float, "
"width = (int) 32, "
"channels = (int) { 1, 2 }, "
- "rate = (int) [ 8000, 96000 ], "
- "endianness = (int) LITTLE_ENDIAN, " "buffer-frames = (int) 0")
+ "rate = (int) [ 6000, 192000 ], " "endianness = (int) LITTLE_ENDIAN, ")
);
static void gst_wavpack_dec_class_init (GstWavpackDecClass * klass);
srccaps = gst_caps_new_simple ("audio/x-raw-float",
"rate", G_TYPE_INT, wavpackdec->samplerate,
"channels", G_TYPE_INT, wavpackdec->channels,
- "width", G_TYPE_INT, 32,
- "endianness", G_TYPE_INT, LITTLE_ENDIAN,
- "buffer-frames", G_TYPE_INT, 0, NULL);
+ "width", G_TYPE_INT, 32, "endianness", G_TYPE_INT, LITTLE_ENDIAN, NULL);
}
gst_pad_set_caps (wavpackdec->srcpad, srccaps);
gst_pad_use_fixed_caps (wavpackdec->srcpad);
GST_STATIC_CAPS ("audio/x-wavpack, "
"width = (int) { 8, 16, 24 }, "
"channels = (int) { 1, 2 }, "
- "rate = (int) [ 8000, 96000 ], " "framed = (boolean) true")
+ "rate = (int) [ 6000, 192000 ], " "framed = (boolean) true")
);
static GstStaticPadTemplate wvc_src_factory = GST_STATIC_PAD_TEMPLATE ("wvcsrc",