diff options
Diffstat (limited to 'src/discourse.c')
-rw-r--r-- | src/discourse.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/discourse.c b/src/discourse.c index 46a8569..9c1159d 100644 --- a/src/discourse.c +++ b/src/discourse.c | |||
@@ -149,7 +149,8 @@ _setup_video_gst_pipelines_of_subscription(MESSENGER_DiscourseSubscriptionInfo * | |||
149 | g_assert(info); | 149 | g_assert(info); |
150 | 150 | ||
151 | info->video_stream_pipeline = gst_parse_launch( | 151 | info->video_stream_pipeline = gst_parse_launch( |
152 | "appsrc name=source ! rtpjitterbuffer ! rtph264depay ! avdec_h264 ! videoconvert ! gtksink name=sink sync=false", | 152 | "appsrc name=source ! rtpjitterbuffer ! rtph264depay ! avdec_h264 ! videoconvert ! " |
153 | "gtksink name=sink sync=false", | ||
153 | NULL | 154 | NULL |
154 | ); | 155 | ); |
155 | 156 | ||
@@ -530,7 +531,8 @@ _setup_audio_gst_pipelines(MESSENGER_DiscourseInfo *info) | |||
530 | g_assert(info); | 531 | g_assert(info); |
531 | 532 | ||
532 | info->audio_record_pipeline = gst_parse_launch( | 533 | info->audio_record_pipeline = gst_parse_launch( |
533 | "autoaudiosrc ! audioconvert ! audio/x-raw,format=S16BE,layout=interleaved,rate=44100,channels=1 ! rtpL16pay ! capsfilter name=filter ! fdsink name=sink", | 534 | "autoaudiosrc ! audioconvert ! audio/x-raw,format=S16BE,layout=interleaved,rate=44100,channels=1 ! " |
535 | "rtpL16pay ! capsfilter name=filter ! fdsink name=sink", | ||
534 | NULL | 536 | NULL |
535 | ); | 537 | ); |
536 | 538 | ||