/third_party/ffmpeg/libavcodec/ |
H A D | mpeg4video_parser.c | 118 av_assert1(s1->pts == AV_NOPTS_VALUE); in mpeg4_decode_header() 121 s1->pts = av_rescale_q(s->time, (AVRational){1, s->avctx->time_base.den}, (AVRational){1, 1200000}); in mpeg4_decode_header()
|
H A D | libopenh264dec.c | 111 info.uiInBsTimeStamp = avpkt->pts; in svc_decode_frame() 146 avframe->pts = info.uiOutYuvTimeStamp; in svc_decode_frame()
|
H A D | pcm-dvdenc.c | 170 avpkt->pts = frame->pts; in pcm_dvd_encode_frame()
|
H A D | xsubdec.c | 74 if (avpkt->pts != AV_NOPTS_VALUE) in decode_frame() 75 packet_time = av_rescale_q(avpkt->pts, AV_TIME_BASE_Q, (AVRational){1, 1000}); in decode_frame()
|
/third_party/ffmpeg/doc/examples/ |
H A D | remuxing.c | 38 printf("%s: pts:%s pts_time:%s dts:%s dts_time:%s duration:%s duration_time:%s stream_index:%d\n", in log_packet() 40 av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, time_base), in log_packet()
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_apad.c | 86 s->next_pts = frame->pts + av_rescale_q(frame->nb_samples, (AVRational){1, inlink->sample_rate}, inlink->time_base); in filter_frame() 127 outsamplesref->pts = s->next_pts; in request_frame()
|
H A D | af_virtualbass.c | 152 out->pts = in->pts; in filter_frame()
|
H A D | framequeue.c | 141 if (b->frame->pts != AV_NOPTS_VALUE) in ff_framequeue_skip_samples() 142 b->frame->pts += av_rescale_q(samples, av_make_q(1, b->frame->sample_rate), time_base); in ff_framequeue_skip_samples()
|
/third_party/ffmpeg/libavformat/ |
H A D | smjpegdec.c | 159 pkt->pts = timestamp; in smjpeg_read_packet() 169 pkt->pts = timestamp; in smjpeg_read_packet()
|
H A D | smjpegenc.c | 110 avio_wb32(pb, pkt->pts); in smjpeg_write_packet() 114 smc->duration = FFMAX(smc->duration, pkt->pts + pkt->duration); in smjpeg_write_packet()
|
H A D | ttmlenc.c | 178 ttml_write_time(pb, " begin", pkt->pts); in ttml_write_packet() 180 ttml_write_time(pb, " end", pkt->pts + pkt->duration); in ttml_write_packet()
|
H A D | kvag.c | 112 int64_t pts, int flags) in kvag_seek() 114 if (pts != 0) in kvag_seek() 111 kvag_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags) kvag_seek() argument
|
H A D | mm.c | 171 pkt->pts = mm->video_pts; in read_packet() 182 pkt->pts = mm->audio_pts++; in read_packet()
|
H A D | bfi.c | 155 pkt->pts = bfi->audio_frame; in bfi_read_packet() 164 pkt->pts = bfi->video_frame; in bfi_read_packet()
|
/third_party/skia/src/core/ |
H A D | SkScan.h | 35 * line(pts[0], pts[1]) 36 * line(pts[1], pts[2]) 37 * line(......, pts[count - 1]) 63 static void FillTriangle(const SkPoint pts[], const SkRasterClip&, SkBlitter*); 88 static void FillTriangle(const SkPoint pts[], const SkRegion*, SkBlitter*);
|
/third_party/skia/src/c/ |
H A D | sk_effects.cpp | 49 sk_shader_t* sk_shader_new_linear_gradient(const sk_point_t pts[2], in sk_shader_new_linear_gradient() argument 65 return (sk_shader_t*)SkGradientShader::MakeLinear(reinterpret_cast<const SkPoint*>(pts), in sk_shader_new_linear_gradient()
|
/third_party/skia/tests/ |
H A D | PointTest.cpp | 43 const SkPoint pts[] = { { 0, v }, { v, 0 }, { 1, v }, { v, 1 }, { v, v } }; in test_normalize_cannormalize_consistent() local 45 for (SkPoint p : pts) { in test_normalize_cannormalize_consistent()
|
/third_party/skia/gm/ |
H A D | srcmode.cpp | 41 const SkPoint pts[] = { { 0, 0 }, { W, H } }; in gradient_paintproc() local 42 paint->setShader(SkGradientShader::MakeLinear(pts, colors, nullptr, SK_ARRAY_COUNT(colors), in gradient_paintproc()
|
H A D | lcdblendmodes.cpp | 37 const SkPoint pts[] = { in make_shader() local 44 return SkGradientShader::MakeLinear(pts, colors, nullptr, SK_ARRAY_COUNT(colors), in make_shader()
|
H A D | matrixconvolution.cpp | 58 SkPoint pts[2] = { {0, 0}, in makeBitmap() local 62 pts, fColors, pos, 2, SkTileMode::kClamp)); in makeBitmap()
|
H A D | aarectmodes.cpp | 29 SkPoint pts[] = { in test4() local 49 SkPoint* ptPtr = pts; in test4()
|
H A D | gradients_degenerate.cpp | 93 SkPoint pts[2] = {CENTER, CENTER}; in make_linear() local 94 return SkGradientShader::MakeLinear(pts, COLORS, POS, COLOR_CT, mode); in make_linear()
|
/third_party/skia/bench/ |
H A D | RotatedRectBench.cpp | 99 SkPoint pts[2] = { {0.0f, 0.0f}, {kRectW, kRectH} }; variable 101 paint.setShader(SkGradientShader::MakeLinear(pts, colors, nullptr, 2,
|
/third_party/skia/src/pathops/ |
H A D | SkPathOpsDebug.cpp | 576 memcpy(&fDebugWorstPts[index * 2 * 4], wt.pts(), in debugAddLoopCount() 578 memcpy(&fDebugWorstPts[(index * 2 + 1) * 4], wn.pts(), in debugAddLoopCount() 602 static void dump_curve(SkPath::Verb verb, const SkPoint& pts, float weight) { in dump_curve() argument 610 SkDPoint::Dump((&pts)[index]); in dump_curve() 700 void SkDQuad::debugSet(const SkDPoint* pts) { in debugSet() argument 701 memcpy(fPts, pts, sizeof(fPts)); in debugSet() 705 void SkDCubic::debugSet(const SkDPoint* pts) { in debugSet() argument 706 memcpy(fPts, pts, sizeof(fPts)); in debugSet() 710 void SkDConic::debugSet(const SkDPoint* pts, SkScalar weight) { in debugSet() argument 711 fPts.debugSet(pts); in debugSet() 1139 const SkDPoint* pts = curvePart.fCubic.fPts; debugShowActiveSpans() local 2830 output_points(const SkPoint* pts, int count) output_points() argument [all...] |
/foundation/ai/ai_engine/interfaces/kits/cv/ |
H A D | ai_image.h | 59 unsigned long long pts; member
|