summaryrefslogtreecommitdiff
path: root/modules/gst_video/encode.c
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gst_video/encode.c')
-rw-r--r--modules/gst_video/encode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gst_video/encode.c b/modules/gst_video/encode.c
index b6dfe8a..6377785 100644
--- a/modules/gst_video/encode.c
+++ b/modules/gst_video/encode.c
@@ -169,14 +169,14 @@ static void internal_appsink_new_buffer(GstElement *sink,
if (buffer) {
GstClockTime ts;
- uint32_t rtp_ts;
+ uint64_t rtp_ts;
guint8 *data = GST_BUFFER_DATA(buffer);
guint size = GST_BUFFER_SIZE(buffer);
ts = GST_BUFFER_TIMESTAMP(buffer);
- rtp_ts = (uint32_t)((90000ULL*ts) / 1000000000UL );
+ rtp_ts = (uint64_t)((90000ULL*ts) / 1000000000UL );
h264_packetize(rtp_ts, data, size, st->pktsize,
st->pkth, st->pkth_arg);