GNOME Bugzilla – Bug 628773
[0.11] rtp -- match properties and caps fields
Last modified: 2011-10-27 17:12:13 UTC
The names "timestamp-offset" and "sequnum-offset" as shown by gst-inspect and as accepted by gst-launch, correspond to the names "clock-base" and "seqnum-base" as printed by gst-launch. If you set a value into parameter "timestamp-offset", then that value is printed with name "clock-base". The same names should be used for both input and output. ------------------------- $ cat rtp-server-jpeg.sh gst-launch -v \ videotestsrc pattern=red \ ! ffmpegcolorspace \ ! jpegenc \ ! rtpjpegpay ssrc=3210 timestamp-offset=1234 seqnum-offset=1357 \ ! udpsink host=127.0.0.1 port=51234 $ . rtp-server-jpeg.sh ... /GstPipeline:pipeline0/GstRtpJPEGPay:rtpjpegpay0.GstPad:src: caps = application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)JPEG, payload=(int)96, ssrc=(uint)3210, clock-base=(uint)1234, seqnum-base=(uint)1357 ...
We can't fix that now. Marked this for 0.11, when we can break ABI/API again.
collecting all 0.11 requests under the 0.11.x milestone to give Wim one easy view for all of them.
commit 01854cca801c65a793fecc69e93e7785a1373bbd Author: Wim Taymans <wim.taymans@collabora.co.uk> Date: Thu Oct 27 18:54:50 2011 +0200 basertppay: rename caps fields Make the caps fields for timestamp and seqnum match the element properties. See #628773