X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=subprojects%2Fgst-plugins-base%2Fgst-libs%2Fgst%2Frtp%2Fgstrtpbuffer.c;h=228abf45683464557399ce094ccc0795a5adf744;hb=4df3da3bab8b8f3aa03437f1aa345cba47a7d000;hp=d83bbd232493a462b8d3b252b0863a4b449bd15d;hpb=d586c2cc28c33fa0f4685a1734e2e11b47bd39d6;p=platform%2Fupstream%2Fgstreamer.git diff --git a/subprojects/gst-plugins-base/gst-libs/gst/rtp/gstrtpbuffer.c b/subprojects/gst-plugins-base/gst-libs/gst/rtp/gstrtpbuffer.c index d83bbd2..228abf4 100644 --- a/subprojects/gst-plugins-base/gst-libs/gst/rtp/gstrtpbuffer.c +++ b/subprojects/gst-plugins-base/gst-libs/gst/rtp/gstrtpbuffer.c @@ -1326,7 +1326,7 @@ gst_rtp_buffer_ext_timestamp (guint64 * exttimestamp, guint32 timestamp) ext = *exttimestamp; if (ext == -1) { - result = timestamp; + result = (G_GUINT64_CONSTANT (1) << 32) + timestamp; } else { /* pick wraparound counter from previous timestamp and add to new timestamp */ result = timestamp + (ext & ~(G_GUINT64_CONSTANT (0xffffffff)));