mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
gst/festival/gstfestival.c: Set the output rate to 16000. Should fix #160235.
Original commit message from CVS: * gst/festival/gstfestival.c: (gst_festival_chain): Set the output rate to 16000. Should fix #160235.
This commit is contained in:
parent
cf4b8997f9
commit
b30b813a35
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-12-14 David Schleef <ds@schleef.org>
|
||||
|
||||
* gst/festival/gstfestival.c: (gst_festival_chain): Set the
|
||||
output rate to 16000. Should fix #160235.
|
||||
|
||||
2004-12-14 Zaheer Abbas Merali <zaheerabbas at merali dot org>
|
||||
|
||||
* gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
|
||||
|
|
|
@ -226,6 +226,7 @@ gst_festival_chain (GstPad * pad, GstData * _data)
|
|||
size = GST_BUFFER_SIZE (buf);
|
||||
|
||||
/* Copy text over to server, escaping any quotes */
|
||||
fprintf (fd, "(Parameter.set 'Audio_Required_Rate 16000)\n");
|
||||
fprintf (fd, "(tts_textall \"\n");
|
||||
for (p = GST_BUFFER_DATA (buf); p && (*p != '\0') && size; p++, size--) {
|
||||
if ((*p == '"') || (*p == '\\'))
|
||||
|
|
Loading…
Reference in a new issue