diff options
author | Hyunjun Ko <zzoon.ko@samsung.com> | 2015-04-15 10:06:30 +0900 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2015-04-15 15:14:15 +0200 |
commit | fabde79bc3edf9b6c47a62ae274ad84b2d444813 (patch) | |
tree | 97833957258245ecd12b92dabc3c853d14886c27 /examples | |
parent | de590b4b2a8aa1c9de9bf263cd63e23aca4ca0ea (diff) |
test-video-rtx: set exact payload type to PCMA payloader
Setting wrong payload type causes failure to do retransmission through audio stream
https://bugzilla.gnome.org/show_bug.cgi?id=747839
Diffstat (limited to 'examples')
-rw-r--r-- | examples/test-video-rtx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/test-video-rtx.c b/examples/test-video-rtx.c index 27763c3..89b7778 100644 --- a/examples/test-video-rtx.c +++ b/examples/test-video-rtx.c @@ -64,7 +64,7 @@ main (int argc, char *argv[]) "videotestsrc ! video/x-raw,width=352,height=288,framerate=15/1 ! " "x264enc ! rtph264pay name=pay0 pt=96 " "audiotestsrc ! audio/x-raw,rate=8000 ! " - "alawenc ! rtppcmapay name=pay1 pt=97 " ")"); + "alawenc ! rtppcmapay name=pay1 pt=8 " ")"); /* store up to 0.4 seconds of retransmission data */ gst_rtsp_media_factory_set_retransmission_time (factory, 400 * GST_MSECOND); |