/third_party/ffmpeg/libavfilter/ |
H A D | vf_mix.c | 234 out->pts = av_rescale_q(s->fs.pts, s->fs.time_base, outlink->time_base); in process_frame() 241 out->pts = av_rescale_q(s->fs.pts, s->fs.time_base, outlink->time_base); in process_frame() 440 out->pts = s->frames[s->nb_frames - 1]->pts; in tmix_filter_frame()
|
H A D | vsrc_gradients.c | 40 int64_t pts; member 380 av_rescale_q(s->pts, outlink->time_base, AV_TIME_BASE_Q) >= s->duration) { in activate() 381 ff_outlink_set_status(outlink, AVERROR_EOF, s->pts); in activate() 387 float angle = fmodf(s->pts * s->speed, 2.f * M_PI); in activate() 404 frame->pts = s->pts++; in activate()
|
H A D | vf_vpp_qsv.c | 529 int64_t pts = AV_NOPTS_VALUE; in activate() local 538 if (ff_inlink_acknowledge_status(inlink, &status, &pts)) { in activate() 565 if (in->pts != AV_NOPTS_VALUE) in activate() 566 in->pts = av_rescale_q(in->pts, inlink->time_base, outlink->time_base); in activate() 588 ff_outlink_set_status(outlink, status, pts); in activate()
|
H A D | avfilter.c | 49 "ref[%p buf:%p data:%p linesize[%d, %d, %d, %d] pts:%"PRId64" pos:%"PRId64, in tlog_ref() 52 ref->pts, ref->pkt_pos); in tlog_ref() 209 void ff_avfilter_link_set_in_status(AVFilterLink *link, int status, int64_t pts) in ff_avfilter_link_set_in_status() argument 215 link->status_in_pts = pts; in ff_avfilter_link_set_in_status() 222 void ff_avfilter_link_set_out_status(AVFilterLink *link, int status, int64_t pts) in ff_avfilter_link_set_out_status() argument 227 if (pts != AV_NOPTS_VALUE) in ff_avfilter_link_set_out_status() 228 ff_update_link_current_pts(link, pts); in ff_avfilter_link_set_out_status() 521 void ff_update_link_current_pts(AVFilterLink *link, int64_t pts) in ff_update_link_current_pts() argument 523 if (pts == AV_NOPTS_VALUE) in ff_update_link_current_pts() 525 link->current_pts = pts; in ff_update_link_current_pts() 1496 int64_t pts = frame->pts; ff_inlink_evaluate_timeline_at_frame() local [all...] |
H A D | af_loudnorm.c | 88 int64_t pts; member 434 if (s->pts == AV_NOPTS_VALUE) in filter_frame() 435 s->pts = in->pts; in filter_frame() 437 out->pts = s->pts; in filter_frame() 504 s->pts += in filter_frame() 571 s->pts += in->nb_samples; in filter_frame() 629 s->pts += in->nb_samples; in filter_frame() 757 s->pts in config_input() [all...] |
H A D | vf_minterpolate.c | 1076 int64_t pts; in interpolate() local 1078 pts = av_rescale(avf_out->pts, (int64_t) ALPHA_MAX * outlink->time_base.num * inlink->time_base.den, in interpolate() 1081 alpha = (pts - mi_ctx->frames[1].avf->pts * ALPHA_MAX) / (mi_ctx->frames[2].avf->pts - mi_ctx->frames[1].avf->pts); in interpolate() 1090 av_log(ctx, AV_LOG_DEBUG, "scene changed, input pts %"PRId64"\n", mi_ctx->frames[1].avf->pts); in interpolate() 1159 if (avf_in->pts in filter_frame() [all...] |
/third_party/skia/src/gpu/geometry/ |
H A D | GrTriangulator.cpp | 464 static SkScalar quad_error_at(const SkPoint pts[3], SkScalar t, SkScalar u) { in quad_error_at() argument 465 SkQuadCoeff quad(pts); in quad_error_at() 475 void GrTriangulator::appendQuadraticToContour(const SkPoint pts[3], SkScalar toleranceSqd, in appendQuadraticToContour() argument 477 SkQuadCoeff quad(pts); in appendQuadraticToContour() 488 if (quad_error_at(pts, t, u) < toleranceSqd) { in appendQuadraticToContour() 528 SkPoint pts[4]; in pathToContours() local 542 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) { in pathToContours() 547 this->appendPointToContour(pts[2], contour); in pathToContours() 551 const SkPoint* quadPts = converter.computeQuads(pts, weight, toleranceSqd); in pathToContours() 562 this->appendPointToContour(pts[ in pathToContours() 1543 SkPoint pts[4]; get_contour_count() local [all...] |
/foundation/multimedia/av_codec/test/moduletest/muxer/NativeAPI/ |
H A D | NativeAVMuxerParamCheckTest.cpp | 554 info.pts = 0; in HWTEST_F() 575 * @tc.name : OH_AVMuxer_WriteSampleBuffer - info.pts check 608 info.pts = 0; in HWTEST_F() 616 info.pts = -1; in HWTEST_F() 662 info.pts = 0; in HWTEST_F() 716 info.pts = 0; in HWTEST_F() 770 info.pts = 0; in HWTEST_F() 824 info.pts = 0; in HWTEST_F() 931 info.pts = 0; in HWTEST_F() 952 * @tc.name : OH_AVMuxer_WriteSampleBuffer - info.pts chec [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | decode.c | 240 * @param pts the pts field of the decoded AVPacket, as passed through 241 * AVFrame.pts 248 int64_t pts = AV_NOPTS_VALUE; in guess_correct_pts() local 264 pts = reordered_pts; in guess_correct_pts() 266 pts = dts; in guess_correct_pts() 268 return pts; in guess_correct_pts() 393 if(frame->pts!=AV_NOPTS_VALUE) in decode_simple_internal() 394 frame->pts += diff_ts; in decode_simple_internal() 492 pkt->pts in decode_simple_internal() [all...] |
H A D | cuviddec.c | 422 if (avpkt->pts != AV_NOPTS_VALUE) { in cuvid_decode_packet() 425 cupkt.timestamp = av_rescale_q(avpkt->pts, avctx->pkt_timebase, (AVRational){1, 10000000}); in cuvid_decode_packet() 427 cupkt.timestamp = avpkt->pts; in cuvid_decode_packet() 608 frame->pts = av_rescale_q(parsed_frame.dispinfo.timestamp, (AVRational){1, 10000000}, avctx->pkt_timebase); in cuvid_output_frame() 610 frame->pts = parsed_frame.dispinfo.timestamp; in cuvid_output_frame() 614 ctx->prev_pts = frame->pts; in cuvid_output_frame() 615 frame->pts += (avctx->pkt_timebase.den * avctx->framerate.den) / (avctx->pkt_timebase.num * avctx->framerate.num); in cuvid_output_frame() 617 int pts_diff = (frame->pts - ctx->prev_pts) / 2; in cuvid_output_frame() 618 ctx->prev_pts = frame->pts; in cuvid_output_frame() 619 frame->pts in cuvid_output_frame() [all...] |
H A D | av1_frame_merge_bsf.c | 111 in->pts != AV_NOPTS_VALUE && buffer_pkt->pts == AV_NOPTS_VALUE) { in av1_frame_merge_filter()
|
/kernel/linux/linux-5.10/drivers/media/pci/ivtv/ |
H A D | ivtv-controls.h | 14 int ivtv_g_pts_frame(struct ivtv *itv, s64 *pts, s64 *frame);
|
/kernel/linux/linux-6.6/drivers/media/pci/ivtv/ |
H A D | ivtv-controls.h | 14 int ivtv_g_pts_frame(struct ivtv *itv, s64 *pts, s64 *frame);
|
/third_party/skia/third_party/externals/freetype/src/truetype/ |
H A D | ttinterp.c | 429 exec->pts.n_points = 0; in FT_LOCAL_DEF() 430 exec->pts.n_contours = 0; in FT_LOCAL_DEF() 432 exec->zp1 = exec->pts; in FT_LOCAL_DEF() 433 exec->zp2 = exec->pts; in FT_LOCAL_DEF() 434 exec->zp0 = exec->pts; in FT_LOCAL_DEF() 502 exec->zp0 = exec->pts; in FT_LOCAL_DEF() 503 exec->zp1 = exec->pts; in FT_LOCAL_DEF() 504 exec->zp2 = exec->pts; in FT_LOCAL_DEF() 5116 exc->zp0 = exc->pts; in Ins_SZP0() 5146 exc->zp1 = exc->pts; in Ins_SZP1() [all...] |
/third_party/skia/src/core/ |
H A D | SkPathMeasurePriv.h | 26 void SkPathMeasure_segTo(const SkPoint pts[], unsigned segType,
|
H A D | SkCubicClipper.h | 29 static bool SK_WARN_UNUSED_RESULT ChopMonoAtY(const SkPoint pts[4], SkScalar y, SkScalar* t);
|
H A D | SkLineClipper.h | 20 /* Clip the line pts[0]...pts[1] against clip, ignoring segments that 31 static int ClipLine(const SkPoint pts[2], const SkRect& clip,
|
/third_party/ffmpeg/libavformat/ |
H A D | wtvdec.c | 327 int64_t pts; /**< pts for next data chunk */ member 328 int64_t last_valid_pts; /**< latest valid pts, used for interactive seeking */ 766 wtv->pts = wtv->index_entries[i].timestamp; in recover() 900 wtv->pts = avio_rl64(pb); in parse_chunks() 902 if (wtv->pts == -1) in parse_chunks() 903 wtv->pts = AV_NOPTS_VALUE; in parse_chunks() 905 wtv->last_valid_pts = wtv->pts; in parse_chunks() 906 if (wtv->epoch == AV_NOPTS_VALUE || wtv->pts < wtv->epoch) in parse_chunks() 907 wtv->epoch = wtv->pts; in parse_chunks() [all...] |
/foundation/multimedia/media_foundation/interface/kits/c/ |
H A D | native_avbuffer_info.h | 59 int64_t pts; member
|
/foundation/arkui/ace_engine/frameworks/core/components/swiper/ |
H A D | rosen_render_swiper.cpp | 309 std::vector<RSPoint> pts = { RSPoint(0.0f, 0.0f), RSPoint(0.0f, 0.0f) }; in PaintMask() local 311 pts.at(0) = RSPoint(static_cast<RSScalar>(offset.GetX()), in PaintMask() 313 pts.at(1) = RSPoint(static_cast<RSScalar>(offset.GetX()), in PaintMask() 316 pts.at(0) = RSPoint(static_cast<RSScalar>(offset.GetX() + indicatorPosition_.GetX() - NormalizeToPx(9.0_vp)), in PaintMask() 318 pts.at(1) = RSPoint(static_cast<RSScalar>(offset.GetX() + indicatorPosition_.GetX() + NormalizeToPx(15.0_vp)), in PaintMask() 328 pen.SetShaderEffect(RSShaderEffect::CreateLinearGradient(pts.at(0), pts.at(1), colors, pos, RSTileMode::CLAMP)); in PaintMask()
|
/third_party/ffmpeg/tests/fate/ |
H A D | matroska.mak | 95 # whereas an audio packet to be muxed later has the overall lowest pts 98 # yet there is an audio packet with the overall lowest pts. output_ts_offset 99 # makes the pts of the audio packet, but not the leading video packet negative 170 # except the last from the next packet's pts. 172 fate-matroska-pgs-remux-durations: CMD = transcode sup $(TARGET_SAMPLES)/sub/pgs_sub.sup matroska "-copyts -c:s copy -bsf pgs_frame_merge,setts=duration=if(gt(DURATION\,0)\,DURATION\,if(eq(PTS\,NOPTS)\,0\,if(eq(NEXT_PTS\,NOPTS)\,0\,NEXT_PTS-PTS))):pts=PTS" "-copyts -c:s copy" 182 fate-matroska-dvbsub-remux: CMD = transcode mpegts $(TARGET_SAMPLES)/sub/dvbsubtest_filter.ts matroska "-map 0:s -map 0:s -t 20 -c copy -bsf:0 setts=duration=if(gt(DURATION\,0)\,DURATION\,if(eq(PTS\,NOPTS)\,0\,if(eq(NEXT_PTS\,NOPTS)\,0\,NEXT_PTS-PTS))):pts=PTS" "-map 0 -c copy" 193 fate-webm-webvtt-remux: CMD = transcode webvtt $(TARGET_SAMPLES)/sub/WebVTT_capability_tester.vtt webm "-map 0 -map 0 -map 0 -map 0 -c:s copy -disposition:0 original+descriptions+hearing_impaired -disposition:1 lyrics+default+metadata -disposition:2 comment+forced -disposition:3 karaoke+captions+dub" "-map 0:0 -map 0:1 -c copy" "-show_entries stream_disposition:stream=index,codec_name:packet=stream_index,pts:packet_side_data_list -show_data_hash CRC32"
|
/third_party/skia/tests/ |
H A D | CanvasTest.cpp | 391 SkPoint pts[4]; 392 pts[0].set(0, 0); 393 pts[1].set(SkIntToScalar(kWidth), 0); 394 pts[2].set(SkIntToScalar(kWidth), SkIntToScalar(kHeight)); 395 pts[3].set(0, SkIntToScalar(kHeight)); 400 SkVertices::MakeCopy(SkVertices::kTriangleFan_VertexMode, 4, pts, pts, nullptr),
|
/foundation/multimedia/av_codec/test/unittest/video_test/video_test/sample/decoder/ |
H A D | video_decoder_sample.cpp | 77 AVCODEC_LOGV("In buffer count: %{public}u, size: %{public}d, flag: %{public}u, pts: %{public}" PRId64, in InputThread() 79 bufferInfo.attr.size, bufferInfo.attr.flags, bufferInfo.attr.pts); in InputThread() 97 AVCODEC_LOGV("Out buffer count: %{public}u, size: %{public}d, flag: %{public}u, pts: %{public}" PRId64, in OutputThread() 99 bufferInfo.attr.size, bufferInfo.attr.flags, bufferInfo.attr.pts); in OutputThread()
|
/kernel/linux/linux-5.10/drivers/media/pci/ttpci/ |
H A D | dvb_filter.h | 140 u8 pts[5]; member 202 u32 pts[2]; /* [0] 1st field, [1] 2nd field */ member
|
/kernel/linux/linux-6.6/drivers/staging/media/av7110/ |
H A D | dvb_filter.h | 140 u8 pts[5]; member 202 u32 pts[2]; /* [0] 1st field, [1] 2nd field */ member
|