Searched refs:framecount (Results 1 – 13 of 13) sorted by relevance
/third_party/gstreamer/gstplugins_base/tests/check/pipelines/ |
D | theoraenc.c | 70 int framecount; in check_buffer_granulepos() local 88 framecount = GST_BUFFER_OFFSET_END (buffer); in check_buffer_granulepos() 89 framecount = granulepos >> GRANULEPOS_SHIFT; in check_buffer_granulepos() 90 framecount += granulepos & ((1 << GRANULEPOS_SHIFT) - 1); in check_buffer_granulepos() 91 clocktime = gst_util_uint64_scale (framecount, GST_SECOND, FRAMERATE); in check_buffer_granulepos() 109 gint64 granulepos, expected, framecount; in check_buffer_granulepos_from_starttime() local 121 framecount = granulepos >> GRANULEPOS_SHIFT; in check_buffer_granulepos_from_starttime() 122 framecount += granulepos & ((1 << GRANULEPOS_SHIFT) - 1); in check_buffer_granulepos_from_starttime() 125 fail_unless (framecount == expected || framecount == expected + 1, in check_buffer_granulepos_from_starttime() 129 expected, expected + 1, framecount); in check_buffer_granulepos_from_starttime()
|
/third_party/skia/tools/android/ |
D | measure_fps.py | 23 framecount = re.search("Result: Parcel\(([a-f0-9]+) ", parcel) 24 if not framecount: 27 return int(framecount.group(1), 16)
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/ |
D | gstvideotimecode.c | 403 guint64 framecount; in gst_video_time_code_add_frames() local 444 framecount = in gst_video_time_code_add_frames() 449 h_notmod24 = gst_util_uint64_scale_int (framecount, 1, ff_hours); in gst_video_time_code_add_frames() 452 min_new_tmp1 = (framecount - (h_notmod24 * ff_hours)) / min_new_denom; in gst_video_time_code_add_frames() 453 min_new_tmp2 = framecount + dropframe_multiplier * min_new_tmp1; in gst_video_time_code_add_frames() 455 (framecount - (h_notmod24 * ff_hours)) / (sixty * 10 * ff_nom); in gst_video_time_code_add_frames() 463 (guint64) ((framecount - (ff_minutes * min_new) - in gst_video_time_code_add_frames() 468 framecount - (ff_nom * sec_new) - (ff_minutes * min_new) - in gst_video_time_code_add_frames() 472 framecount = in gst_video_time_code_add_frames() 476 gst_util_uint64_scale_int (framecount, 1, ff_nom * sixty * sixty); in gst_video_time_code_add_frames() [all …]
|
/third_party/ffmpeg/libavformat/ |
D | c93.c | 66 int framecount = 0; in read_header() local 76 framecount += c93->block_records[i].frames; in read_header() 93 video->nb_frames = framecount; in read_header() 94 video->duration = framecount; in read_header()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtp/ |
D | gstrtpbaseaudiopayload.c | 756 guint64 framecount; in gst_rtp_base_audio_payload_frame_bytes_to_time() local 758 framecount = bytes / payload->frame_size; in gst_rtp_base_audio_payload_frame_bytes_to_time() 760 framecount++; in gst_rtp_base_audio_payload_frame_bytes_to_time() 762 return framecount * payload->priv->frame_duration_ns; in gst_rtp_base_audio_payload_frame_bytes_to_time() 769 guint64 framecount; in gst_rtp_base_audio_payload_frame_bytes_to_rtptime() local 772 framecount = bytes / payload->frame_size; in gst_rtp_base_audio_payload_frame_bytes_to_rtptime() 774 framecount++; in gst_rtp_base_audio_payload_frame_bytes_to_rtptime() 776 time = framecount * payload->priv->frame_duration_ns; in gst_rtp_base_audio_payload_frame_bytes_to_rtptime()
|
/third_party/gstreamer/gstplugins_bad/ext/opencv/ |
D | gstsegmentation.cpp | 248 filter->framecount = 0; in gst_segmentation_init() 361 filter->framecount++; in gst_segmentation_transform_ip() 380 if (filter->framecount < 30) { in gst_segmentation_transform_ip() 388 if (filter->framecount % filter->learning_interval == 0) { in gst_segmentation_transform_ip() 394 if (filter->framecount % 60 == 0) { in gst_segmentation_transform_ip()
|
D | gstsegmentation.h | 101 int framecount; member
|
/third_party/gstreamer/gstreamer/libs/gst/base/ |
D | gstbaseparse.c | 256 guint64 framecount; member 844 parse->priv->framecount = 0; in gst_base_parse_reset() 976 if (parse->priv->framecount >= MIN_FRAMES_TO_POST_BITRATE) { in gst_base_parse_queue_tag_event_update() 1435 if (parse->priv->framecount == 0 && !parse->priv->saw_gaps && in gst_base_parse_sink_event_default() 1442 && parse->priv->framecount < MIN_FRAMES_TO_POST_BITRATE) { in gst_base_parse_sink_event_default() 1799 if (!parse->priv->framecount) in gst_base_parse_convert_default() 1960 if (parse->priv->framecount < MIN_FRAMES_TO_POST_BITRATE) in gst_base_parse_update_bitrates() 1963 if (parse->priv->framecount == MIN_FRAMES_TO_POST_BITRATE && in gst_base_parse_update_bitrates() 1968 if (G_LIKELY (parse->priv->framecount >= MIN_FRAMES_TO_POST_BITRATE)) { in gst_base_parse_update_bitrates() 2506 parse->priv->framecount++; in gst_base_parse_push_frame() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | utils.c | 653 int framecount = (ba > 0 && frame_bytes / ba > 0) ? frame_bytes / ba : 1; in get_audio_frame_duration() local 676 if (framecount > INT_MAX/1024) in get_audio_frame_duration() 678 return 1024 * framecount; in get_audio_frame_duration()
|
/third_party/ffmpeg/doc/ |
D | ffmpeg.texi | 729 @item -frames[:@var{stream_specifier}] @var{framecount} (@emph{output,per-stream}) 730 Stop writing to the stream after @var{framecount} frames.
|
/third_party/gstreamer/gstreamer/ |
D | ChangeLog | 47746 (and framecount is > 0). This then makes us report that we
|
/third_party/gstreamer/gstplugins_good/ |
D | ChangeLog | 39818 Remove unused variable 'framecount' from dvdemux
|
/third_party/gstreamer/gstplugins_base/ |
D | ChangeLog | 126300 returned a negative framecount or not, resulting in bogus timestamps.
|