Home
last modified time | relevance | path

Searched refs:stream_time (Results 1 – 25 of 2135) sorted by relevance

12345678910>>...86

/dports/multimedia/gstreamer1/gstreamer-1.16.2/gst/
H A Dgstsegment.c420 *stream_time = -1; in gst_segment_to_stream_time_full()
447 *stream_time += time; in gst_segment_to_stream_time_full()
453 if (*stream_time > time) { in gst_segment_to_stream_time_full()
454 *stream_time -= time; in gst_segment_to_stream_time_full()
457 *stream_time = time - *stream_time; in gst_segment_to_stream_time_full()
469 *stream_time = position - stop; in gst_segment_to_stream_time_full()
472 if (*stream_time > time) { in gst_segment_to_stream_time_full()
473 *stream_time -= time; in gst_segment_to_stream_time_full()
476 *stream_time = time - *stream_time; in gst_segment_to_stream_time_full()
480 *stream_time = stop - position; in gst_segment_to_stream_time_full()
[all …]
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/gstreamer-video-0.17.2/src/
H A Dvideo_event.rs72 stream_time: Option<gst::ClockTime>, field
86 stream_time: gst::ClockTime::NONE, in new()
100 pub fn stream_time(self, stream_time: impl Into<Option<gst::ClockTime>>) -> Self { in stream_time() method
102 stream_time: stream_time.into(), in stream_time()
128 s.stream_time.into_glib(),
139 pub stream_time: Option<gst::ClockTime>, field
155 let mut stream_time = mem::MaybeUninit::uninit(); in parse() localVariable
163 stream_time.as_mut_ptr(), in parse()
171 stream_time: from_glib(stream_time.assume_init()), in parse()
/dports/audio/gnome-podcasts/podcasts-c86f7bfdef7692bbf20f315a90450321f6ca9ce7/cargo-crates/gstreamer-video-0.17.2/src/
H A Dvideo_event.rs72 stream_time: Option<gst::ClockTime>, field
86 stream_time: gst::ClockTime::NONE, in new()
100 pub fn stream_time(self, stream_time: impl Into<Option<gst::ClockTime>>) -> Self { in stream_time() method
102 stream_time: stream_time.into(), in stream_time()
128 s.stream_time.into_glib(),
139 pub stream_time: Option<gst::ClockTime>, field
155 let mut stream_time = mem::MaybeUninit::uninit(); in parse() localVariable
163 stream_time.as_mut_ptr(), in parse()
171 stream_time: from_glib(stream_time.assume_init()), in parse()
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/base/
H A Daudio_shifter.cc138 base::TimeTicks stream_time; in Pull() local
142 stream_time = end_of_last_consumed_audiobus_; in Pull()
145 stream_time = queue_.front().target_playout_time; in Pull()
148 stream_time += base::TimeDelta::FromSecondsD( in Pull()
153 buffer_end_time - stream_time) { in Pull()
160 stream_time - in Pull()
174 bias_ = playout_time - stream_time + clock_accuracy_ + in Pull()
177 stream_time += bias_; in Pull()
189 playout_time - stream_time > clock_accuracy_) { in Pull()
197 stream_time = queue_.front().target_playout_time; in Pull()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/media/base/
H A Daudio_shifter.cc150 base::TimeTicks stream_time; in Pull() local
154 stream_time = end_of_last_consumed_audiobus_; in Pull()
157 stream_time = queue_.front().target_playout_time; in Pull()
160 stream_time += base::TimeDelta::FromSecondsD( in Pull()
165 clock_accuracy_ > buffer_end_time - stream_time) { in Pull()
171 if (playout_time < stream_time - in Pull()
185 bias_ = playout_time - stream_time + in Pull()
189 stream_time += bias_; in Pull()
201 playout_time - stream_time > clock_accuracy_) { in Pull()
209 stream_time = queue_.front().target_playout_time; in Pull()
[all …]
/dports/net-im/fractal/fractal-4.4.0/vendor/gstreamer-video/src/
H A Dvideo_event.rs92 stream_time: gst::ClockTime, field
106 stream_time: gst::CLOCK_TIME_NONE, in new()
117 pub fn stream_time(self, stream_time: gst::ClockTime) -> Self { in stream_time() method
119 stream_time, in stream_time()
145 s.stream_time.to_glib(),
156 pub stream_time: gst::ClockTime, field
167 let mut stream_time = mem::MaybeUninit::uninit(); in parse_downstream_force_key_unit_event() localVariable
176 stream_time.as_mut_ptr(), in parse_downstream_force_key_unit_event()
185 stream_time: from_glib(stream_time.assume_init()), in parse_downstream_force_key_unit_event()
/dports/multimedia/gstreamermm/gstreamermm-1.10.0/gstreamer/gstreamermm/
H A Dsegment.cc168 int Segment::to_stream_time(Format format, guint64 position, guint64& stream_time) const in to_stream_time()
170 …stream_time_full(const_cast<GstSegment*>(gobj()), ((GstFormat)(format)), position, &(stream_time)); in to_stream_time()
193 guint64 Segment::position_from_stream_time(Gst::Format format, guint64 stream_time) const in position_from_stream_time()
195 …ent_position_from_stream_time(const_cast<GstSegment*>(gobj()), ((GstFormat)(format)), stream_time); in position_from_stream_time()
198 int Segment::position_from_stream_time(Gst::Format format, guint64 stream_time, guint64& position) … in position_from_stream_time() argument
200 …stream_time_full(const_cast<GstSegment*>(gobj()), ((GstFormat)(format)), stream_time, &(position)); in position_from_stream_time()
/dports/multimedia/gstreamer1-plugins/gst-plugins-base-1.16.2/gst-libs/gst/video/
H A Dvideo-event.c117 GstClockTime stream_time, GstClockTime running_time, gboolean all_headers, in gst_video_event_new_downstream_force_key_unit() argument
125 "stream-time", G_TYPE_UINT64, stream_time, in gst_video_event_new_downstream_force_key_unit()
215 GstClockTime * timestamp, GstClockTime * stream_time, in gst_video_event_parse_downstream_force_key_unit() argument
247 if (stream_time) in gst_video_event_parse_downstream_force_key_unit()
248 *stream_time = ev_stream_time; in gst_video_event_parse_downstream_force_key_unit()
/dports/audio/gstreamer1-plugins-ogg/gst-plugins-base-1.16.2/gst-libs/gst/video/
H A Dvideo-event.c117 GstClockTime stream_time, GstClockTime running_time, gboolean all_headers, in gst_video_event_new_downstream_force_key_unit() argument
125 "stream-time", G_TYPE_UINT64, stream_time, in gst_video_event_new_downstream_force_key_unit()
215 GstClockTime * timestamp, GstClockTime * stream_time, in gst_video_event_parse_downstream_force_key_unit() argument
247 if (stream_time) in gst_video_event_parse_downstream_force_key_unit()
248 *stream_time = ev_stream_time; in gst_video_event_parse_downstream_force_key_unit()
/dports/audio/gstreamer1-plugins-cdparanoia/gst-plugins-base-1.16.2/gst-libs/gst/video/
H A Dvideo-event.c117 GstClockTime stream_time, GstClockTime running_time, gboolean all_headers, in gst_video_event_new_downstream_force_key_unit() argument
125 "stream-time", G_TYPE_UINT64, stream_time, in gst_video_event_new_downstream_force_key_unit()
215 GstClockTime * timestamp, GstClockTime * stream_time, in gst_video_event_parse_downstream_force_key_unit() argument
247 if (stream_time) in gst_video_event_parse_downstream_force_key_unit()
248 *stream_time = ev_stream_time; in gst_video_event_parse_downstream_force_key_unit()
/dports/audio/gstreamer1-plugins-vorbis/gst-plugins-base-1.16.2/gst-libs/gst/video/
H A Dvideo-event.c117 GstClockTime stream_time, GstClockTime running_time, gboolean all_headers, in gst_video_event_new_downstream_force_key_unit() argument
125 "stream-time", G_TYPE_UINT64, stream_time, in gst_video_event_new_downstream_force_key_unit()
215 GstClockTime * timestamp, GstClockTime * stream_time, in gst_video_event_parse_downstream_force_key_unit() argument
247 if (stream_time) in gst_video_event_parse_downstream_force_key_unit()
248 *stream_time = ev_stream_time; in gst_video_event_parse_downstream_force_key_unit()
/dports/audio/gstreamer1-plugins-opus/gst-plugins-base-1.16.2/gst-libs/gst/video/
H A Dvideo-event.c117 GstClockTime stream_time, GstClockTime running_time, gboolean all_headers, in gst_video_event_new_downstream_force_key_unit() argument
125 "stream-time", G_TYPE_UINT64, stream_time, in gst_video_event_new_downstream_force_key_unit()
215 GstClockTime * timestamp, GstClockTime * stream_time, in gst_video_event_parse_downstream_force_key_unit() argument
247 if (stream_time) in gst_video_event_parse_downstream_force_key_unit()
248 *stream_time = ev_stream_time; in gst_video_event_parse_downstream_force_key_unit()
/dports/x11-toolkits/gstreamer1-plugins-pango/gst-plugins-base-1.16.2/gst-libs/gst/video/
H A Dvideo-event.c117 GstClockTime stream_time, GstClockTime running_time, gboolean all_headers, in gst_video_event_new_downstream_force_key_unit() argument
125 "stream-time", G_TYPE_UINT64, stream_time, in gst_video_event_new_downstream_force_key_unit()
215 GstClockTime * timestamp, GstClockTime * stream_time, in gst_video_event_parse_downstream_force_key_unit() argument
247 if (stream_time) in gst_video_event_parse_downstream_force_key_unit()
248 *stream_time = ev_stream_time; in gst_video_event_parse_downstream_force_key_unit()
/dports/graphics/gstreamer1-plugins-libvisual/gst-plugins-base-1.16.2/gst-libs/gst/video/
H A Dvideo-event.c117 GstClockTime stream_time, GstClockTime running_time, gboolean all_headers, in gst_video_event_new_downstream_force_key_unit() argument
125 "stream-time", G_TYPE_UINT64, stream_time, in gst_video_event_new_downstream_force_key_unit()
215 GstClockTime * timestamp, GstClockTime * stream_time, in gst_video_event_parse_downstream_force_key_unit() argument
247 if (stream_time) in gst_video_event_parse_downstream_force_key_unit()
248 *stream_time = ev_stream_time; in gst_video_event_parse_downstream_force_key_unit()
/dports/graphics/gstreamer1-plugins-gl/gst-plugins-base-1.16.2/gst-libs/gst/video/
H A Dvideo-event.c117 GstClockTime stream_time, GstClockTime running_time, gboolean all_headers, in gst_video_event_new_downstream_force_key_unit() argument
125 "stream-time", G_TYPE_UINT64, stream_time, in gst_video_event_new_downstream_force_key_unit()
215 GstClockTime * timestamp, GstClockTime * stream_time, in gst_video_event_parse_downstream_force_key_unit() argument
247 if (stream_time) in gst_video_event_parse_downstream_force_key_unit()
248 *stream_time = ev_stream_time; in gst_video_event_parse_downstream_force_key_unit()
/dports/x11/gstreamer1-plugins-x/gst-plugins-base-1.16.2/gst-libs/gst/video/
H A Dvideo-event.c117 GstClockTime stream_time, GstClockTime running_time, gboolean all_headers, in gst_video_event_new_downstream_force_key_unit() argument
125 "stream-time", G_TYPE_UINT64, stream_time, in gst_video_event_new_downstream_force_key_unit()
215 GstClockTime * timestamp, GstClockTime * stream_time, in gst_video_event_parse_downstream_force_key_unit() argument
247 if (stream_time) in gst_video_event_parse_downstream_force_key_unit()
248 *stream_time = ev_stream_time; in gst_video_event_parse_downstream_force_key_unit()
/dports/multimedia/gstreamer1-plugins-theora/gst-plugins-base-1.16.2/gst-libs/gst/video/
H A Dvideo-event.c117 GstClockTime stream_time, GstClockTime running_time, gboolean all_headers, in gst_video_event_new_downstream_force_key_unit() argument
125 "stream-time", G_TYPE_UINT64, stream_time, in gst_video_event_new_downstream_force_key_unit()
215 GstClockTime * timestamp, GstClockTime * stream_time, in gst_video_event_parse_downstream_force_key_unit() argument
247 if (stream_time) in gst_video_event_parse_downstream_force_key_unit()
248 *stream_time = ev_stream_time; in gst_video_event_parse_downstream_force_key_unit()
/dports/devel/libzvbi/zvbi-0.2.35/test/
H A Dsliced.c84 int64_t stream_time);
120 int64_t stream_time; member
274 int64_t stream_time) in write_func_pes_ts() argument
280 assert (stream_time >= 0); in write_func_pes_ts()
543 stream_time); in write_func_xml()
576 stream_time = stream_time; in write_func_old_sliced()
763 st->stream_time = 0; in write_stream_new()
1131 st->stream_time); in read_loop_old_sliced()
1136 st->stream_time); in read_loop_old_sliced()
1321 st->stream_time = 0; in read_stream_new()
[all …]
H A Dcapture.c91 int64_t stream_time; member
176 int64_t stream_time) in decode_sliced() argument
183 sample_time, stream_time); in decode_sliced()
339 int64_t stream_time) in decode_frame() argument
343 sample_time, stream_time); in decode_frame()
360 f->stream_time); in decode_frame()
379 f->stream_time = stream_time; in decode_frame()
396 stream_time); in decode_frame()
/dports/x11-toolkits/gtk30/gtk+-3.24.31/tests/
H A Dvideo-timer.c8 gint64 stream_time; member
112 frame_data->stream_time = (G_GINT64_CONSTANT (1000000) * frame_count) / fps; in create_frames_thread()
146 stream_time_to_clock_time (gint64 stream_time) in stream_time_to_clock_time() argument
148 return clock_time_base + (stream_time - stream_time_base) * time_factor; in stream_time_to_clock_time()
322 if (stream_time_to_clock_time (pending_frame->stream_time) in on_update()
329 stream_time_to_clock_time (next_frame->stream_time) in on_update()
346 displayed_frame->clock_time = stream_time_to_clock_time (displayed_frame->stream_time); in on_update()
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/gstreamer-0.15.7/src/
H A Dsegment.rs228 pub fn position_from_stream_time<V: Into<T>>(&self, stream_time: V) -> T { in position_from_stream_time()
229 let stream_time = stream_time.into(); in position_from_stream_time() localVariable
232 assert_eq!(self.get_format(), stream_time.get_format()); in position_from_stream_time()
241 stream_time.to_raw_value() as u64, in position_from_stream_time()
247 pub fn position_from_stream_time_full<V: Into<T>>(&self, stream_time: V) -> (i32, T) { in position_from_stream_time_full()
248 let stream_time = stream_time.into(); in position_from_stream_time_full() localVariable
251 assert_eq!(self.get_format(), stream_time.get_format()); in position_from_stream_time_full()
259 stream_time.to_raw_value() as u64, in position_from_stream_time_full()
356 let mut stream_time = mem::MaybeUninit::uninit(); in to_stream_time_full() localVariable
361 stream_time.as_mut_ptr(), in to_stream_time_full()
[all …]
/dports/multimedia/termplay/termplay-2.0.6/cargo-crates/gstreamer-0.15.0/src/
H A Dsegment.rs228 pub fn position_from_stream_time<V: Into<T>>(&self, stream_time: V) -> T { in position_from_stream_time()
229 let stream_time = stream_time.into(); in position_from_stream_time() localVariable
232 assert_eq!(self.get_format(), stream_time.get_format()); in position_from_stream_time()
241 stream_time.to_raw_value() as u64, in position_from_stream_time()
247 pub fn position_from_stream_time_full<V: Into<T>>(&self, stream_time: V) -> (i32, T) { in position_from_stream_time_full()
248 let stream_time = stream_time.into(); in position_from_stream_time_full() localVariable
251 assert_eq!(self.get_format(), stream_time.get_format()); in position_from_stream_time_full()
259 stream_time.to_raw_value() as u64, in position_from_stream_time_full()
356 let mut stream_time = mem::MaybeUninit::uninit(); in to_stream_time_full() localVariable
361 stream_time.as_mut_ptr(), in to_stream_time_full()
[all …]
/dports/net-im/fractal/fractal-4.4.0/vendor/gstreamer/src/
H A Dsegment.rs228 pub fn position_from_stream_time<V: Into<T>>(&self, stream_time: V) -> T { in position_from_stream_time()
229 let stream_time = stream_time.into(); in position_from_stream_time() localVariable
232 assert_eq!(self.get_format(), stream_time.get_format()); in position_from_stream_time()
241 stream_time.to_raw_value() as u64, in position_from_stream_time()
247 pub fn position_from_stream_time_full<V: Into<T>>(&self, stream_time: V) -> (i32, T) { in position_from_stream_time_full()
248 let stream_time = stream_time.into(); in position_from_stream_time_full() localVariable
251 assert_eq!(self.get_format(), stream_time.get_format()); in position_from_stream_time_full()
259 stream_time.to_raw_value() as u64, in position_from_stream_time_full()
356 let mut stream_time = mem::MaybeUninit::uninit(); in to_stream_time_full() localVariable
361 stream_time.as_mut_ptr(), in to_stream_time_full()
[all …]
/dports/x11-toolkits/gtk40/gtk-4.4.1/tests/
H A Dvideo-timer.c8 gint64 stream_time; member
112 frame_data->stream_time = (G_GINT64_CONSTANT (1000000) * frame_count) / fps; in create_frames_thread()
146 stream_time_to_clock_time (gint64 stream_time) in stream_time_to_clock_time() argument
148 return clock_time_base + (stream_time - stream_time_base) * time_factor; in stream_time_to_clock_time()
322 if (stream_time_to_clock_time (pending_frame->stream_time) in on_update()
329 stream_time_to_clock_time (next_frame->stream_time) in on_update()
347 displayed_frame->clock_time = stream_time_to_clock_time (displayed_frame->stream_time); in on_update()
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/host/examples/
H A Dtest_timed_commands.cpp123 const uhd::time_spec_t stream_time = usrp->get_time_now() + uhd::time_spec_t(0.1); in UHD_SAFE_MAIN() local
124 stream_cmd.time_spec = stream_time; in UHD_SAFE_MAIN()
142 % stream_time.get_full_secs() % stream_time.get_frac_secs() in UHD_SAFE_MAIN()
145 % ((md.time_spec - stream_time).get_real_secs() * 1e6) in UHD_SAFE_MAIN()

12345678910>>...86