Home
last modified time | relevance | path

Searched refs:h264_time (Results 1 – 4 of 4) sorted by relevance

/third_party/gstreamer/gstplugins_bad/ext/avtp/
Dgstavtpcrfsync.c141 GstClockTime tstamp, h264_time = 0, adjusted_tstamp, adjusted_h264_time = 0; in gst_avtp_crf_sync_transform_ip() local
174 res = avtp_cvf_pdu_get (pdu, AVTP_CVF_FIELD_H264_TIMESTAMP, &h264_time); in gst_avtp_crf_sync_transform_ip()
181 h264_time |= current_ts & 0xFFFFFFFF00000000; in gst_avtp_crf_sync_transform_ip()
182 if (h264_time < current_ts) in gst_avtp_crf_sync_transform_ip()
183 h264_time += (1ULL << 32); in gst_avtp_crf_sync_transform_ip()
190 (GstClockTime) roundl (current_ts + ceill (((gdouble) h264_time - in gst_avtp_crf_sync_transform_ip()
200 h264_time & 0xFFFFFFFF, adjusted_h264_time & 0xFFFFFFFF); in gst_avtp_crf_sync_transform_ip()
237 GST_BUFFER_PTS (buffer) += adjusted_h264_time - h264_time; in gst_avtp_crf_sync_transform_ip()
Dgstavtpcrfcheck.c170 GstClockTime h264_time; in gst_avtp_crf_check_transform_ip() local
194 res = avtp_cvf_pdu_get (pdu, AVTP_CVF_FIELD_H264_TIMESTAMP, &h264_time); in gst_avtp_crf_check_transform_ip()
197 h264_time |= current_ts & 0xFFFFFFFF00000000; in gst_avtp_crf_check_transform_ip()
198 if (h264_time < current_ts) in gst_avtp_crf_check_transform_ip()
199 h264_time += (1ULL << 32); in gst_avtp_crf_check_transform_ip()
206 (GstClockTime) roundl (current_ts + roundl ((h264_time - in gst_avtp_crf_check_transform_ip()
209 if (llabs ((gint64) adjusted_h264_time - (gint64) h264_time) > in gst_avtp_crf_check_transform_ip()
214 adjusted_h264_time & 0xFFFFFFFF, h264_time & 0xFFFFFFFF); in gst_avtp_crf_check_transform_ip()
Dgstavtpcvfpay.c532 guint64 avtp_time, h264_time; in gst_avtp_cvf_pay_prepare_avtp_packets() local
547 h264_time = gst_avtp_base_payload_calc_ptime (avtpbasepayload, nal); in gst_avtp_cvf_pay_prepare_avtp_packets()
584 res = avtp_cvf_pdu_set (pdu, AVTP_CVF_FIELD_H264_TIMESTAMP, h264_time); in gst_avtp_cvf_pay_prepare_avtp_packets()
609 " h264_time: %" G_GUINT64_FORMAT, GST_TIME_ARGS (h264_time), in gst_avtp_cvf_pay_prepare_avtp_packets()
611 GST_TIME_ARGS (h264_time & 0xffffffff), avtp_time, h264_time); in gst_avtp_cvf_pay_prepare_avtp_packets()
Dgstavtpcvfdepay.c419 guint64 avtp_time, h264_time, tv, ptv; in gst_avtp_cvf_depay_get_avtp_timestamps() local
441 res = avtp_cvf_pdu_get (pdu, AVTP_CVF_FIELD_H264_TIMESTAMP, &h264_time); in gst_avtp_cvf_depay_get_avtp_timestamps()
444 *pts = h264_time; in gst_avtp_cvf_depay_get_avtp_timestamps()