Home
last modified time | relevance | path

Searched refs:pts (Results 1 – 25 of 1819) sorted by relevance

12345678910>>...73

/third_party/flutter/skia/samplecode/
DSampleHairCurves.cpp33 SkScalar pts[] = { in onDrawContent() local
39 curves.moveTo(pts[0], pts[1]); in onDrawContent()
40 curves.cubicTo(pts[2], pts[3], in onDrawContent()
41 pts[4], pts[5], in onDrawContent()
42 pts[6], pts[7]); in onDrawContent()
44 hulls.moveTo(pts[0], pts[1]); in onDrawContent()
45 hulls.lineTo(pts[2], pts[3]); in onDrawContent()
46 hulls.lineTo(pts[4], pts[5]); in onDrawContent()
47 hulls.lineTo(pts[6], pts[7]); in onDrawContent()
49 ctrlPts.addCircle(pts[0], pts[1], SK_Scalar1 / 200); in onDrawContent()
[all …]
/third_party/skia/samplecode/
DSampleHairCurves.cpp33 SkScalar pts[] = { in onDrawContent() local
39 curves.moveTo(pts[0], pts[1]); in onDrawContent()
40 curves.cubicTo(pts[2], pts[3], in onDrawContent()
41 pts[4], pts[5], in onDrawContent()
42 pts[6], pts[7]); in onDrawContent()
44 hulls.moveTo(pts[0], pts[1]); in onDrawContent()
45 hulls.lineTo(pts[2], pts[3]); in onDrawContent()
46 hulls.lineTo(pts[4], pts[5]); in onDrawContent()
47 hulls.lineTo(pts[6], pts[7]); in onDrawContent()
49 ctrlPts.addCircle(pts[0], pts[1], SK_Scalar1 / 200); in onDrawContent()
[all …]
/third_party/skia/gm/
Dgradients_2pt_conical.cpp53 static sk_sp<SkShader> Make2ConicalOutside(const SkPoint pts[2], const GradData& data, in Make2ConicalOutside()
56 SkScalar radius0 = (pts[1].fX - pts[0].fX) / 10; in Make2ConicalOutside()
57 SkScalar radius1 = (pts[1].fX - pts[0].fX) / 3; in Make2ConicalOutside()
58 center0.set(pts[0].fX + radius0, pts[0].fY + radius0); in Make2ConicalOutside()
59 center1.set(pts[1].fX - radius1, pts[1].fY - radius1); in Make2ConicalOutside()
64 static sk_sp<SkShader> Make2ConicalOutsideStrip(const SkPoint pts[2], const GradData& data, in Make2ConicalOutsideStrip()
67 SkScalar radius = (pts[1].fX - pts[0].fX) / 3; in Make2ConicalOutsideStrip()
68 center0.set(pts[0].fX, pts[0].fY); in Make2ConicalOutsideStrip()
69 center1.set(pts[1].fX, pts[1].fY); in Make2ConicalOutsideStrip()
74 static sk_sp<SkShader> Make2ConicalOutsideFlip(const SkPoint pts[2], const GradData& data, in Make2ConicalOutsideFlip()
[all …]
/third_party/flutter/skia/gm/
Dgradients_2pt_conical.cpp53 static sk_sp<SkShader> Make2ConicalOutside(const SkPoint pts[2], const GradData& data, in Make2ConicalOutside()
56 SkScalar radius0 = (pts[1].fX - pts[0].fX) / 10; in Make2ConicalOutside()
57 SkScalar radius1 = (pts[1].fX - pts[0].fX) / 3; in Make2ConicalOutside()
58 center0.set(pts[0].fX + radius0, pts[0].fY + radius0); in Make2ConicalOutside()
59 center1.set(pts[1].fX - radius1, pts[1].fY - radius1); in Make2ConicalOutside()
64 static sk_sp<SkShader> Make2ConicalOutsideStrip(const SkPoint pts[2], const GradData& data, in Make2ConicalOutsideStrip()
67 SkScalar radius = (pts[1].fX - pts[0].fX) / 3; in Make2ConicalOutsideStrip()
68 center0.set(pts[0].fX, pts[0].fY); in Make2ConicalOutsideStrip()
69 center1.set(pts[1].fX, pts[1].fY); in Make2ConicalOutsideStrip()
74 static sk_sp<SkShader> Make2ConicalOutsideFlip(const SkPoint pts[2], const GradData& data, in Make2ConicalOutsideFlip()
[all …]
/third_party/flutter/skia/src/pathops/
DSkAddIntersections.cpp15 static void debugShowLineIntersection(int pts, const SkIntersectionHelper& wt, in debugShowLineIntersection() argument
17 SkASSERT(i.used() == pts); in debugShowLineIntersection()
18 if (!pts) { in debugShowLineIntersection()
20 __FUNCTION__, LINE_DEBUG_DATA(wt.pts()), LINE_DEBUG_DATA(wn.pts())); in debugShowLineIntersection()
24 i[0][0], LINE_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowLineIntersection()
25 if (pts == 2) { in debugShowLineIntersection()
28 SkDebugf(" wnTs[0]=%g " LINE_DEBUG_STR, i[1][0], LINE_DEBUG_DATA(wn.pts())); in debugShowLineIntersection()
29 if (pts == 2) { in debugShowLineIntersection()
35 static void debugShowQuadLineIntersection(int pts, const SkIntersectionHelper& wt, in debugShowQuadLineIntersection() argument
38 SkASSERT(i.used() == pts); in debugShowQuadLineIntersection()
[all …]
DSkLineParameters.h31 bool cubicEndPoints(const SkDCubic& pts) { in cubicEndPoints() argument
33 cubicEndPoints(pts, 0, endIndex); in cubicEndPoints()
38 cubicEndPoints(pts, 0, ++endIndex); in cubicEndPoints()
44 cubicEndPoints(pts, 0, ++endIndex); // line in cubicEndPoints()
55 if (NotAlmostEqualUlps(pts[0].fY, pts[++endIndex].fY)) { in cubicEndPoints()
56 if (pts[0].fY > pts[endIndex].fY) { in cubicEndPoints()
65 if (pts[0].fY > pts[3].fY) { in cubicEndPoints()
71 void cubicEndPoints(const SkDCubic& pts, int s, int e) { in cubicEndPoints() argument
72 fA = pts[s].fY - pts[e].fY; in cubicEndPoints()
73 fB = pts[e].fX - pts[s].fX; in cubicEndPoints()
[all …]
/third_party/skia/src/pathops/
DSkAddIntersections.cpp15 static void debugShowLineIntersection(int pts, const SkIntersectionHelper& wt, in debugShowLineIntersection() argument
17 SkASSERT(i.used() == pts); in debugShowLineIntersection()
18 if (!pts) { in debugShowLineIntersection()
20 __FUNCTION__, LINE_DEBUG_DATA(wt.pts()), LINE_DEBUG_DATA(wn.pts())); in debugShowLineIntersection()
24 i[0][0], LINE_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowLineIntersection()
25 if (pts == 2) { in debugShowLineIntersection()
28 SkDebugf(" wnTs[0]=%g " LINE_DEBUG_STR, i[1][0], LINE_DEBUG_DATA(wn.pts())); in debugShowLineIntersection()
29 if (pts == 2) { in debugShowLineIntersection()
35 static void debugShowQuadLineIntersection(int pts, const SkIntersectionHelper& wt, in debugShowQuadLineIntersection() argument
38 SkASSERT(i.used() == pts); in debugShowQuadLineIntersection()
[all …]
DSkLineParameters.h31 bool cubicEndPoints(const SkDCubic& pts) { in cubicEndPoints() argument
33 cubicEndPoints(pts, 0, endIndex); in cubicEndPoints()
38 cubicEndPoints(pts, 0, ++endIndex); in cubicEndPoints()
44 cubicEndPoints(pts, 0, ++endIndex); // line in cubicEndPoints()
55 if (NotAlmostEqualUlps(pts[0].fY, pts[++endIndex].fY)) { in cubicEndPoints()
56 if (pts[0].fY > pts[endIndex].fY) { in cubicEndPoints()
65 if (pts[0].fY > pts[3].fY) { in cubicEndPoints()
71 void cubicEndPoints(const SkDCubic& pts, int s, int e) { in cubicEndPoints() argument
72 fA = pts[s].fY - pts[e].fY; in cubicEndPoints()
73 fB = pts[e].fX - pts[s].fX; in cubicEndPoints()
[all …]
/third_party/gstreamer/gstplugins_base/tests/validate/videorate/reverse.10_to_1fps/flow-expectations/
Dlog-videorate-sink-expected4 buffer: checksum=5074004a070c85d97cc9f58fab273813c95b748c, pts=0:00:00.000000000, dur=0:00:00.10000…
5 buffer: checksum=d13b763048b4e8a132923ccec0cb0989a33ef44b, pts=0:00:00.100000000, dur=0:00:00.10000…
9 buffer: checksum=bff0c69020b2ffb3f3ceda63353620854cdd6b73, pts=0:00:05.000000000, dur=0:00:00.10000…
10 buffer: checksum=1d2741e8fc312f50417c99f6deecb6220c75efaa, pts=0:00:04.900000000, dur=0:00:00.10000…
11 buffer: checksum=6f2d5d8f9551083a65889a7d7b87e25348612604, pts=0:00:04.800000000, dur=0:00:00.10000…
12 buffer: checksum=87c6573e1f3cc6a14bca871f675ff66822e2863e, pts=0:00:04.700000000, dur=0:00:00.10000…
13 buffer: checksum=302581fc1fdd332a6702cc3b4d6a3f3f87d0c78f, pts=0:00:04.600000000, dur=0:00:00.10000…
14 buffer: checksum=e085fff613289df868f63ca7142ce0d342ab3d4c, pts=0:00:04.500000000, dur=0:00:00.10000…
15 buffer: checksum=ea498a2e840c9528f90f1154f72d4b204739b947, pts=0:00:04.400000000, dur=0:00:00.10000…
16 buffer: checksum=f05561e3039ed26e3082bd7b049bad9356545149, pts=0:00:04.300000000, dur=0:00:00.10000…
[all …]
/third_party/ffmpeg/tests/ref/seek/
Dextra-mp41 ret: 0 st: 0 flags:1 dts:-0.033333 pts: 0.000000 pos: 1287 size: 183
2 ret: 0 st: 0 flags:0 dts: 0.000000 pts: 0.033333 pos: 1470 size: 24
3 ret: 0 st: 0 flags:0 dts: 0.033333 pts: 0.066667 pos: 1494 size: 6779
4 ret: 0 st: 0 flags:0 dts: 0.066667 pts: 0.100000 pos: 8273 size: 11041
6 ret: 0 st: 0 flags:1 dts:-0.033333 pts: 0.000000 pos: 1287 size: 183
7 ret: 0 st: 0 flags:0 dts: 0.000000 pts: 0.033333 pos: 1470 size: 24
8 ret: 0 st: 0 flags:0 dts: 0.033333 pts: 0.066667 pos: 1494 size: 6779
9 ret: 0 st: 0 flags:0 dts: 0.066667 pts: 0.100000 pos: 8273 size: 11041
11 ret: 0 st: 0 flags:1 dts: 101.300000 pts: 101.333333 pos:10982311 size: 67237
12 ret: 0 st: 0 flags:0 dts: 101.333333 pts: 101.433333 pos:11049548 size: 3524
[all …]
Dempty-edit-mp41 ret: 0 st: 0 flags:1 dts: 5.000000 pts: 5.000000 pos: 48 size: 2917
2 ret: 0 st: 0 flags:0 dts: 5.100000 pts: 5.100000 pos: 2965 size: 672
3 ret: 0 st: 0 flags:0 dts: 5.200000 pts: 5.200000 pos: 3637 size: 464
4 ret: 0 st: 0 flags:0 dts: 5.300000 pts: 5.300000 pos: 4101 size: 454
6 ret: 0 st: 0 flags:1 dts: 5.000000 pts: 5.000000 pos: 48 size: 2917
7 ret: 0 st: 0 flags:0 dts: 5.100000 pts: 5.100000 pos: 2965 size: 672
8 ret: 0 st: 0 flags:0 dts: 5.200000 pts: 5.200000 pos: 3637 size: 464
9 ret: 0 st: 0 flags:0 dts: 5.300000 pts: 5.300000 pos: 4101 size: 454
11 ret: 0 st: 0 flags:1 dts: 11.000000 pts: 11.000000 pos: 40515 size: 3214
12 ret: 0 st: 0 flags:0 dts: 11.100000 pts: 11.100000 pos: 43729 size: 581
[all …]
Dtest-iibbibb-mp41 ret: 0 st: 0 flags:1 dts:-2.000000 pts: 0.000000 pos: 48 size: 7804
2 ret: 0 st: 0 flags:1 dts:-1.000000 pts: 3.000000 pos: 7852 size: 7808
3 ret: 0 st: 0 flags:0 dts: 0.000000 pts: 2.000000 pos: 15660 size: 1301
4 ret: 0 st: 0 flags:0 dts: 1.000000 pts: 1.000000 pos: 16961 size: 1114
6 ret: 0 st: 0 flags:1 dts:-2.000000 pts: 0.000000 pos: 48 size: 7804
7 ret: 0 st: 0 flags:1 dts:-1.000000 pts: 3.000000 pos: 7852 size: 7808
8 ret: 0 st: 0 flags:0 dts: 0.000000 pts: 2.000000 pos: 15660 size: 1301
9 ret: 0 st: 0 flags:0 dts: 1.000000 pts: 1.000000 pos: 16961 size: 1114
11 ret: 0 st: 0 flags:1 dts: 2.000000 pts: 6.000000 pos: 18075 size: 7730
12 ret: 0 st: 0 flags:0 dts: 3.000000 pts: 5.000000 pos: 25805 size: 1247
[all …]
Dtest-iibbibb-neg-ctts-mp41 ret: 0 st: 0 flags:1 dts:-2.000000 pts: 0.000000 pos: 48 size: 7804
2 ret: 0 st: 0 flags:1 dts:-1.000000 pts: 3.000000 pos: 7852 size: 7808
3 ret: 0 st: 0 flags:0 dts: 0.000000 pts: 2.000000 pos: 15660 size: 1301
4 ret: 0 st: 0 flags:0 dts: 1.000000 pts: 1.000000 pos: 16961 size: 1114
6 ret: 0 st: 0 flags:1 dts:-2.000000 pts: 0.000000 pos: 48 size: 7804
7 ret: 0 st: 0 flags:1 dts:-1.000000 pts: 3.000000 pos: 7852 size: 7808
8 ret: 0 st: 0 flags:0 dts: 0.000000 pts: 2.000000 pos: 15660 size: 1301
9 ret: 0 st: 0 flags:0 dts: 1.000000 pts: 1.000000 pos: 16961 size: 1114
11 ret: 0 st: 0 flags:1 dts: 2.000000 pts: 6.000000 pos: 18075 size: 7730
12 ret: 0 st: 0 flags:0 dts: 3.000000 pts: 5.000000 pos: 25805 size: 1247
[all …]
/third_party/gstreamer/gstplugins_base/tests/validate/videorate/change_rate_while_playing/flow-expectations/
Dlog-videorate-sink-expected4 buffer: content-id=0, pts=0:00:00.000000000, dur=0:00:00.100000000, flags=discont
5 buffer: content-id=1, pts=0:00:00.100000000, dur=0:00:00.100000000
6 buffer: content-id=2, pts=0:00:00.200000000, dur=0:00:00.100000000
7 buffer: content-id=3, pts=0:00:00.300000000, dur=0:00:00.100000000
8 buffer: content-id=4, pts=0:00:00.400000000, dur=0:00:00.100000000
9 buffer: content-id=5, pts=0:00:00.500000000, dur=0:00:00.100000000
10 buffer: content-id=6, pts=0:00:00.600000000, dur=0:00:00.100000000
11 buffer: content-id=7, pts=0:00:00.700000000, dur=0:00:00.100000000
15 buffer: content-id=8, pts=0:00:00.800000000, dur=0:00:00.100000000
16 buffer: content-id=9, pts=0:00:00.900000000, dur=0:00:00.100000000
[all …]
Dlog-videorate-src-expected4 buffer: content-id=0, pts=0:00:00.000000000, dur=0:00:00.100000000, flags=discont
5 buffer: content-id=1, pts=0:00:00.100000000, dur=0:00:00.100000000
6 buffer: content-id=2, pts=0:00:00.200000000, dur=0:00:00.100000000
7 buffer: content-id=3, pts=0:00:00.300000000, dur=0:00:00.100000000
8 buffer: content-id=4, pts=0:00:00.400000000, dur=0:00:00.100000000
9 buffer: content-id=5, pts=0:00:00.500000000, dur=0:00:00.100000000
10 buffer: content-id=6, pts=0:00:00.600000000, dur=0:00:00.100000000
14 buffer: content-id=6, pts=0:00:00.700000000, dur=0:00:00.100000000
15 buffer: content-id=8, pts=0:00:00.800000000, dur=0:00:00.100000000
16 buffer: content-id=8, pts=0:00:00.900000000, dur=0:00:00.100000000, flags=gap
[all …]
/third_party/gstreamer/gstplugins_base/tests/validate/videorate/10_to_1fps/flow-expectations/
Dlog-videorate-sink-expected4 buffer: checksum=5074004a070c85d97cc9f58fab273813c95b748c, pts=0:00:00.000000000, dur=0:00:00.10000…
5 buffer: checksum=d13b763048b4e8a132923ccec0cb0989a33ef44b, pts=0:00:00.100000000, dur=0:00:00.10000…
9 buffer: checksum=5074004a070c85d97cc9f58fab273813c95b748c, pts=0:00:00.000000000, dur=0:00:00.10000…
10 buffer: checksum=d13b763048b4e8a132923ccec0cb0989a33ef44b, pts=0:00:00.100000000, dur=0:00:00.10000…
11 buffer: checksum=61f960fb1f82031de8557270b198f528cc319bb5, pts=0:00:00.200000000, dur=0:00:00.10000…
12 buffer: checksum=1f55031a355611378b894de9e91f15b7aadb9762, pts=0:00:00.300000000, dur=0:00:00.10000…
13 buffer: checksum=f5dd66e2339c5ff8db32b3dc717ff867912aceff, pts=0:00:00.400000000, dur=0:00:00.10000…
14 buffer: checksum=faa402360b8808220fa8ba7f29246edc52826335, pts=0:00:00.500000000, dur=0:00:00.10000…
15 buffer: checksum=9667d1b1eb52d9463353a8cb854546b9e9c5fc32, pts=0:00:00.600000000, dur=0:00:00.10000…
16 buffer: checksum=cf699c4e8340bdae7e5ca8fe155ca1ecd1d565cd, pts=0:00:00.700000000, dur=0:00:00.10000…
[all …]
/third_party/flutter/skia/src/core/
DSkEdgeClipper.cpp53 const SkPoint pts[] = { p0, p1 }; in clipLine() local
54 int lineCount = SkLineClipper::ClipLine(pts, clip, lines, fCanCullToTheRight); in clipLine()
86 static bool chopMonoQuadAtY(SkPoint pts[3], SkScalar y, SkScalar* t) { in chopMonoQuadAtY()
87 return chopMonoQuadAt(pts[0].fY, pts[1].fY, pts[2].fY, y, t); in chopMonoQuadAtY()
90 static bool chopMonoQuadAtX(SkPoint pts[3], SkScalar x, SkScalar* t) { in chopMonoQuadAtX()
91 return chopMonoQuadAt(pts[0].fX, pts[1].fX, pts[2].fX, x, t); in chopMonoQuadAtX()
95 static void chop_quad_in_Y(SkPoint pts[3], const SkRect& clip) { in chop_quad_in_Y()
100 if (pts[0].fY < clip.fTop) { in chop_quad_in_Y()
101 if (chopMonoQuadAtY(pts, clip.fTop, &t)) { in chop_quad_in_Y()
103 SkChopQuadAt(pts, tmp, t); in chop_quad_in_Y()
[all …]
/third_party/skia/src/core/
DSkEdgeClipper.cpp53 const SkPoint pts[] = { p0, p1 }; in clipLine() local
54 int lineCount = SkLineClipper::ClipLine(pts, clip, lines, fCanCullToTheRight); in clipLine()
86 static bool chopMonoQuadAtY(SkPoint pts[3], SkScalar y, SkScalar* t) { in chopMonoQuadAtY()
87 return chopMonoQuadAt(pts[0].fY, pts[1].fY, pts[2].fY, y, t); in chopMonoQuadAtY()
90 static bool chopMonoQuadAtX(SkPoint pts[3], SkScalar x, SkScalar* t) { in chopMonoQuadAtX()
91 return chopMonoQuadAt(pts[0].fX, pts[1].fX, pts[2].fX, x, t); in chopMonoQuadAtX()
95 static void chop_quad_in_Y(SkPoint pts[3], const SkRect& clip) { in chop_quad_in_Y()
100 if (pts[0].fY < clip.fTop) { in chop_quad_in_Y()
101 if (chopMonoQuadAtY(pts, clip.fTop, &t)) { in chop_quad_in_Y()
103 SkChopQuadAt(pts, tmp, t); in chop_quad_in_Y()
[all …]
/third_party/gstreamer/gstplugins_base/tests/validate/videorate/reverse.variable_to_10fps/flow-expectations/
Dlog-videorate-sink-expected4 buffer: checksum=5074004a070c85d97cc9f58fab273813c95b748c, pts=0:00:00.000000000, dur=0:00:00.03333…
5 buffer: checksum=d13b763048b4e8a132923ccec0cb0989a33ef44b, pts=0:00:00.033333333, dur=0:00:00.03333…
9 buffer: checksum=0d65174db0fc96dbeaaa2488d013b8935f363330, pts=0:00:01.000000000, dur=0:00:00.03333…
10 buffer: checksum=012c04214b70c28c823991e5502c0dde653e576e, pts=0:00:00.966666666, dur=0:00:00.03333…
11 buffer: checksum=3d9ed200fc9ae13a398482ada9957fe5429f4808, pts=0:00:00.933333333, dur=0:00:00.03333…
12 buffer: checksum=31aabb7c75b036bbbd9495a84647959b336d484b, pts=0:00:00.900000000, dur=0:00:00.03333…
13 buffer: checksum=4838df67beb6ceadbde9fa4ae633b343962eb4cc, pts=0:00:00.866666666, dur=0:00:00.03333…
14 buffer: checksum=8969ea732a2692c1e437b901c12dc083c1ba137b, pts=0:00:00.833333333, dur=0:00:00.03333…
15 buffer: checksum=58936846a7314b141f0bc1d1ff1e9d46db961633, pts=0:00:00.800000000, dur=0:00:00.03333…
16 buffer: checksum=4c87c8b594e77448cffb8da079544060fa513829, pts=0:00:00.766666666, dur=0:00:00.03333…
[all …]
/third_party/gstreamer/gstplugins_bad/tests/validate/opencv/cvtracker/flow-expectations/
Dlog-tracker-src-expected4 buffer: pts=0:00:00.000000000, dur=0:00:00.033333333, flags=discont, meta=GstVideoMeta
5 buffer: pts=0:00:00.033333333, dur=0:00:00.033333333, meta=GstVideoMeta, GstVideoRegionOfInterestMe…
6 buffer: pts=0:00:00.066666666, dur=0:00:00.033333334, meta=GstVideoMeta, GstVideoRegionOfInterestMe…
7 buffer: pts=0:00:00.100000000, dur=0:00:00.033333333, meta=GstVideoMeta, GstVideoRegionOfInterestMe…
8 buffer: pts=0:00:00.133333333, dur=0:00:00.033333333, meta=GstVideoMeta, GstVideoRegionOfInterestMe…
9 buffer: pts=0:00:00.166666666, dur=0:00:00.033333334, meta=GstVideoMeta, GstVideoRegionOfInterestMe…
10 buffer: pts=0:00:00.200000000, dur=0:00:00.033333333, meta=GstVideoMeta, GstVideoRegionOfInterestMe…
11 buffer: pts=0:00:00.233333333, dur=0:00:00.033333333, meta=GstVideoMeta, GstVideoRegionOfInterestMe…
12 buffer: pts=0:00:00.266666666, dur=0:00:00.033333334, meta=GstVideoMeta, GstVideoRegionOfInterestMe…
13 buffer: pts=0:00:00.300000000, dur=0:00:00.033333333, meta=GstVideoMeta, GstVideoRegionOfInterestMe…
[all …]
/third_party/gstreamer/gstplugins_base/tests/validate/videorate/change_rate_reverse_playback/flow-expectations/
Dlog-videorate-src-expected4 buffer: content-id=0, pts=0:00:00.000000000, dur=0:00:00.100000000, flags=discont
8 buffer: content-id=3, pts=0:00:04.900000000, dur=0:00:00.100000000, flags=discont
9 buffer: content-id=4, pts=0:00:04.800000000, dur=0:00:00.100000000
10 buffer: content-id=5, pts=0:00:04.700000000, dur=0:00:00.100000000
11 buffer: content-id=6, pts=0:00:04.600000000, dur=0:00:00.100000000
12 buffer: content-id=7, pts=0:00:04.500000000, dur=0:00:00.100000000
13 buffer: content-id=8, pts=0:00:04.400000000, dur=0:00:00.100000000
14 buffer: content-id=9, pts=0:00:04.300000000, dur=0:00:00.100000000
18 buffer: content-id=9, pts=0:00:04.200000000, dur=0:00:00.100000000
19 buffer: content-id=11, pts=0:00:04.100000000, dur=0:00:00.100000000
[all …]
Dlog-videorate-sink-expected4 buffer: content-id=0, pts=0:00:00.000000000, dur=0:00:00.100000000, flags=discont
5 buffer: content-id=1, pts=0:00:00.100000000, dur=0:00:00.100000000
9 buffer: content-id=2, pts=0:00:05.000000000, dur=0:00:00.100000000, flags=discont
10 buffer: content-id=3, pts=0:00:04.900000000, dur=0:00:00.100000000, flags=discont
11 buffer: content-id=4, pts=0:00:04.800000000, dur=0:00:00.100000000, flags=discont
12 buffer: content-id=5, pts=0:00:04.700000000, dur=0:00:00.100000000, flags=discont
13 buffer: content-id=6, pts=0:00:04.600000000, dur=0:00:00.100000000, flags=discont
14 buffer: content-id=7, pts=0:00:04.500000000, dur=0:00:00.100000000, flags=discont
15 buffer: content-id=8, pts=0:00:04.400000000, dur=0:00:00.100000000, flags=discont
16 buffer: content-id=9, pts=0:00:04.300000000, dur=0:00:00.100000000, flags=discont
[all …]
/third_party/ffmpeg/tests/ref/fate/
Dmov-aac-2048-priming1 packet|codec_type=audio|stream_index=0|pts=-2048|pts_time=-0.046440|dts=-2048|dts_time=-0.046440|du…
3 packet|codec_type=audio|stream_index=0|pts=-1024|pts_time=-0.023220|dts=-1024|dts_time=-0.023220|du…
4 packet|codec_type=audio|stream_index=0|pts=0|pts_time=0.000000|dts=0|dts_time=0.000000|duration=102…
5 packet|codec_type=audio|stream_index=0|pts=1024|pts_time=0.023220|dts=1024|dts_time=0.023220|durati…
6 packet|codec_type=audio|stream_index=0|pts=2048|pts_time=0.046440|dts=2048|dts_time=0.046440|durati…
7 packet|codec_type=audio|stream_index=0|pts=3072|pts_time=0.069660|dts=3072|dts_time=0.069660|durati…
8 packet|codec_type=audio|stream_index=0|pts=4096|pts_time=0.092880|dts=4096|dts_time=0.092880|durati…
9 packet|codec_type=audio|stream_index=0|pts=5120|pts_time=0.116100|dts=5120|dts_time=0.116100|durati…
10 packet|codec_type=audio|stream_index=0|pts=6144|pts_time=0.139320|dts=6144|dts_time=0.139320|durati…
11 packet|codec_type=audio|stream_index=0|pts=7168|pts_time=0.162540|dts=7168|dts_time=0.162540|durati…
[all …]
Dmov-init-nonkeyframe1 packet|codec_type=video|stream_index=0|pts=0|pts_time=0.000000|dts=0|dts_time=0.000000|duration=100…
2 packet|codec_type=video|stream_index=0|pts=2002|pts_time=0.066733|dts=1001|dts_time=0.033367|durati…
3 packet|codec_type=video|stream_index=0|pts=7007|pts_time=0.233567|dts=2002|dts_time=0.066733|durati…
4 packet|codec_type=video|stream_index=0|pts=5005|pts_time=0.166833|dts=3003|dts_time=0.100100|durati…
5 packet|codec_type=video|stream_index=0|pts=4004|pts_time=0.133467|dts=4004|dts_time=0.133467|durati…
6 packet|codec_type=video|stream_index=0|pts=6006|pts_time=0.200200|dts=5005|dts_time=0.166833|durati…
7 packet|codec_type=video|stream_index=0|pts=11011|pts_time=0.367033|dts=6006|dts_time=0.200200|durat…
8 packet|codec_type=video|stream_index=0|pts=9009|pts_time=0.300300|dts=7007|dts_time=0.233567|durati…
9 packet|codec_type=video|stream_index=0|pts=8008|pts_time=0.266933|dts=8008|dts_time=0.266933|durati…
10 packet|codec_type=video|stream_index=0|pts=10010|pts_time=0.333667|dts=9009|dts_time=0.300300|durat…
[all …]
/third_party/skia/tests/
DWangsFormulaTest.cpp108 SkPoint pts[4]; in for_random_beziers() local
111 pts[j].set(std::ldexp(1 + rand->nextF(), i), std::ldexp(1 + rand->nextF(), i)); in for_random_beziers()
113 f(pts); in for_random_beziers()
123 auto setupCubicLengthTerm = [](int seed, SkPoint pts[], float term) { in DEF_TEST() argument
124 memset(pts, 0, sizeof(SkPoint) * 4); in DEF_TEST()
142 pts[0] = term2d; in DEF_TEST()
143 pts[3] = term2d * .75f; in DEF_TEST()
146 pts[1] = term2d * -.5f; in DEF_TEST()
149 pts[1] = term2d * -.5f; in DEF_TEST()
152 pts[3] = term2d; in DEF_TEST()
[all …]

12345678910>>...73