/third_party/ffmpeg/libavfilter/ |
H A D | vf_estdif.c | 51 int64_t pts; member 448 out->pts = s->pts; in filter() 506 s->prev->pts *= 2; in filter_frame() 512 s->pts = s->prev->pts * 2; in filter_frame() 520 s->pts = s->prev->pts + in->pts; in filter_frame() 544 next->pts in request_frame() [all...] |
H A D | avf_showfreqs.c | 73 int64_t pts; member 377 static int plot_freqs(AVFilterLink *inlink, int64_t pts) in plot_freqs() argument 409 s->pts = av_rescale_q(pts, inlink->time_base, outlink->time_base); in plot_freqs() 410 if (s->old_pts >= s->pts) in plot_freqs() 412 s->old_pts = s->pts; in plot_freqs() 471 out->pts = s->pts; in plot_freqs() 481 int64_t pts = in->pts; in filter_frame() local [all...] |
H A D | asrc_sinc.c | 42 int64_t pts; member 59 nb_samples = FFMIN(s->nb_samples, s->n - s->pts); in activate() 61 ff_outlink_set_status(outlink, AVERROR_EOF, s->pts); in activate() 68 memcpy(frame->data[0], coeffs + s->pts, nb_samples * sizeof(float)); in activate() 70 frame->pts = s->pts; in activate() 71 s->pts += nb_samples; in activate() 346 s->pts = 0; in config_output()
|
H A D | vsrc_mandelbrot.c | 64 uint64_t pts; member 99 {"end_pts", "set the terminal pts value", OFFSET(end_pts), AV_OPT_TYPE_DOUBLE, {.dbl=400}, 0, INT64_MAX, FLAGS }, 240 static void draw_mandelbrot(AVFilterContext *ctx, uint32_t *color, int linesize, int64_t pts) in draw_mandelbrot() argument 244 double scale= s->start_scale*pow(s->end_scale/s->start_scale, pts/s->end_pts); in draw_mandelbrot() 279 zr += cos(pts * s->morphxf) * s->morphamp; in draw_mandelbrot() 280 zi += sin(pts * s->morphyf) * s->morphamp; in draw_mandelbrot() 397 picref->pts = s->pts++; in request_frame() 399 draw_mandelbrot(link->src, (uint32_t*)picref->data[0], picref->linesize[0]/4, picref->pts); in request_frame()
|
H A D | internal.h | 242 void ff_update_link_current_pts(AVFilterLink *link, int64_t pts); 246 * The pts should reflect the timestamp of the status change, 251 void ff_avfilter_link_set_in_status(AVFilterLink *link, int status, int64_t pts); 255 * The pts should probably be left unset (AV_NOPTS_VALUE). 257 void ff_avfilter_link_set_out_status(AVFilterLink *link, int status, int64_t pts);
|
H A D | vf_dejudder.c | 126 int64_t next_pts = frame->pts; in filter_frame() 151 frame->pts = s->new_pts; in filter_frame() 155 av_log(ctx, AV_LOG_DEBUG, "next=%"PRId64", new=%"PRId64"\n", next_pts, frame->pts); in filter_frame()
|
H A D | vf_curves.c | 393 char **pts = &curves->comp_points_str[comp_ids[i]]; in parse_psfile() local 394 if (!*pts) { in parse_psfile() 395 *pts = av_strdup(ptstr.str); in parse_psfile() 397 i, comp_ids[i], nb_points, *pts); in parse_psfile() 398 if (!*pts) { in parse_psfile() 476 char **pts = curves->comp_points_str; in curves_init() local 484 if (!pts[i]) in curves_init() 485 pts[i] = av_strdup(allp); in curves_init() 486 if (!pts[i]) in curves_init() 500 if (!pts[ in curves_init() 636 char **pts = curves->comp_points_str; config_input() local [all...] |
/third_party/ffmpeg/fftools/ |
H A D | ffplay.c | 144 double pts; /* clock base */ member 158 double pts; /* presentation timestamp for the frame */ member 591 frame->pts = frame->best_effort_timestamp; in decoder_decode_frame() 593 frame->pts = frame->pkt_dts; in decoder_decode_frame() 601 if (frame->pts != AV_NOPTS_VALUE) in decoder_decode_frame() 602 frame->pts = av_rescale_q(frame->pts, d->avctx->pkt_timebase, tb); in decoder_decode_frame() 604 frame->pts = av_rescale_q(d->next_pts, d->next_pts_tb, tb); in decoder_decode_frame() 605 if (frame->pts != AV_NOPTS_VALUE) { in decoder_decode_frame() 606 d->next_pts = frame->pts in decoder_decode_frame() 1375 set_clock_at(Clock *c, double pts, int serial, double time) set_clock_at() argument 1383 set_clock(Clock *c, double pts, int serial) set_clock() argument 1556 update_video_pts(VideoState *is, double pts, int64_t pos, int serial) update_video_pts() argument 1732 queue_picture(VideoState *is, AVFrame *src_frame, double pts, double duration, int64_t pos, int serial) queue_picture() argument 2120 double pts; video_thread() local 2228 double pts; subtitle_thread() local [all...] |
/kernel/linux/linux-5.10/drivers/media/test-drivers/vidtv/ |
H A D | vidtv_pes.h | 82 * @pts: PTS value to send. 98 u64 pts; member 145 * @pts: PTS value to send. 168 u64 pts; member
|
/kernel/linux/linux-6.6/drivers/media/test-drivers/vidtv/ |
H A D | vidtv_pes.h | 82 * @pts: PTS value to send. 98 u64 pts; member 145 * @pts: PTS value to send. 168 u64 pts; member
|
/third_party/ffmpeg/libavformat/ |
H A D | microdvdenc.c | 48 avio_printf(avf->pb, "{%"PRId64"}", pkt->pts); in microdvd_write_packet() 52 avio_printf(avf->pb, "{%"PRId64"}", pkt->pts + pkt->duration); in microdvd_write_packet()
|
H A D | oggparsevp8.c | 86 // If page granule is that of an invisible vp8 frame, its pts will be in vp8_gptopts() 88 // to prevent messing up pts calculations. in vp8_gptopts() 89 uint64_t pts = (granule >> 32) - invcnt; in vp8_gptopts() local 96 *dts = pts; in vp8_gptopts() 98 return pts; in vp8_gptopts()
|
/third_party/skia/docs/examples/ |
H A D | count_verbs.cpp | 20 SkPoint pts[4]; in REG_FIDDLE() local 21 SkPath::Verb verb = it.next(pts); in REG_FIDDLE()
|
H A D | SKIA_LOGO_svg.cpp | 54 const SkPoint pts[2] = {{160, 290}, {341, 290}}; in REG_FIDDLE() local 56 pts, lineColors, NULL, 2, SkTileMode::kClamp)); in REG_FIDDLE()
|
H A D | GradientShader_MakeLinear.cpp | 24 SkPoint pts[] = { {blockX, blockY}, {blockX + 50, blockY + 100} }; in REG_FIDDLE() local 39 pts, colors, positions, 3, SkTileMode::kMirror, in REG_FIDDLE()
|
/third_party/skia/modules/svg/src/ |
H A D | SkSVGLinearGradient.cpp | 37 const SkPoint pts[2] = { {x1, y1}, {x2, y2}}; in onMakeShader() local 39 return SkGradientShader::MakeLinear(pts, colors, nullptr, pos, count, tm, 0, &localMatrix); in onMakeShader()
|
/third_party/skia/gm/ |
H A D | crbug_1174186.cpp | 23 SkPoint pts[] = {{SkBits2Float(0x3f7ffff2), SkBits2Float(0x43483d60)}, in DEF_SIMPLE_GM() local 34 canvas->experimental_DrawEdgeAAQuad(SkRect::MakeWH(1000, 1000), pts, aaFlags, color, in DEF_SIMPLE_GM()
|
H A D | pixelsnap.cpp | 178 const SkPoint pts[] = { 182 canvas->drawPoints(SkCanvas::kPoints_PointMode, SK_ARRAY_COUNT(pts), pts, paint);
|
/third_party/ffmpeg/libavcodec/ |
H A D | v4l2_buffers.c | 60 static inline void v4l2_set_pts(V4L2Buffer *out, int64_t pts) in v4l2_set_pts() argument 64 if (pts == AV_NOPTS_VALUE) in v4l2_set_pts() 65 pts = 0; in v4l2_set_pts() 67 /* convert pts to v4l2 timebase */ in v4l2_set_pts() 68 v4l2_pts = av_rescale_q(pts, v4l2_get_timebase(out), v4l2_timebase); in v4l2_set_pts() 77 /* convert pts back to encoder timebase */ in v4l2_get_pts() 413 v4l2_set_pts(out, frame->pts); in ff_v4l2_buffer_avframe_to_buf() 435 frame->pts = v4l2_get_pts(avbuf); in ff_v4l2_buffer_buf_to_avframe() 472 pkt->dts = pkt->pts = v4l2_get_pts(avbuf); in ff_v4l2_buffer_buf_to_avpkt() 485 v4l2_set_pts(out, pkt->pts); in ff_v4l2_buffer_avpkt_to_buf() [all...] |
H A D | roqaudioenc.c | 141 context->first_pts = frame->pts; in roq_dpcm_encode_frame() 179 avpkt->pts = context->input_frames <= 7 ? context->first_pts : frame->pts; in roq_dpcm_encode_frame()
|
/third_party/ffmpeg/doc/examples/ |
H A D | encode_video.c | 46 printf("Send frame %3"PRId64"\n", frame->pts); in encode() 63 printf("Write packet %3"PRId64" (size=%5d)\n", pkt->pts, pkt->size); in encode() 192 frame->pts = i; in main()
|
/third_party/ffmpeg/tests/api/ |
H A D | api-h264-test.c | 125 if (pkt->pts == AV_NOPTS_VALUE) in video_decode_example() 126 pkt->pts = pkt->dts = i; in video_decode_example() 157 av_ts2str(fr->pts), av_ts2str(fr->pkt_dts), fr->pkt_duration, in video_decode_example()
|
/third_party/skia/src/gpu/tessellate/ |
H A D | MiddleOutPolygonTriangulator.h | 217 switch (auto [verb, pts, w] = *fPathIter++; verb) { in nextStack() 220 return fMiddleOut.closeAndMove(pts[0]); in nextStack() 225 pt = pts[SkPathPriv::PtsInIter((unsigned)verb) - 1]; in nextStack()
|
/kernel/linux/linux-5.10/drivers/iommu/ |
H A D | tegra-smmu.c | 57 struct page **pts; member 312 as->pts = kcalloc(SMMU_NUM_PDE, sizeof(*as->pts), GFP_KERNEL); in tegra_smmu_domain_alloc() 313 if (!as->pts) { in tegra_smmu_domain_alloc() 338 kfree(as->pts); in tegra_smmu_domain_free() 572 pt_page = as->pts[pd_index]; in tegra_smmu_pte_lookup() 588 if (!as->pts[pde]) { in as_get_pte() 605 as->pts[pde] = page; in as_get_pte() 617 return tegra_smmu_pte_offset(as->pts[pde], iova); in as_get_pte() 630 struct page *page = as->pts[pd in tegra_smmu_pte_put_use() [all...] |
/kernel/linux/linux-6.6/drivers/iommu/ |
H A D | tegra-smmu.c | 58 struct page **pts; member 301 as->pts = kcalloc(SMMU_NUM_PDE, sizeof(*as->pts), GFP_KERNEL); in tegra_smmu_domain_alloc() 302 if (!as->pts) { in tegra_smmu_domain_alloc() 327 kfree(as->pts); in tegra_smmu_domain_free() 567 pt_page = as->pts[pd_index]; in tegra_smmu_pte_lookup() 583 if (!as->pts[pde]) { in as_get_pte() 600 as->pts[pde] = page; in as_get_pte() 612 return tegra_smmu_pte_offset(as->pts[pde], iova); in as_get_pte() 625 struct page *page = as->pts[pd in tegra_smmu_pte_put_use() [all...] |