1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
media / renderers / paint_canvas_video_renderer.cc [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "media/renderers/paint_canvas_video_renderer.h"
#include <GLES3/gl3.h>
#include <array>
#include <limits>
#include <numeric>
#include "base/barrier_closure.h"
#include "base/compiler_specific.h"
#include "base/feature_list.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/memory/raw_ptr.h"
#include "base/numerics/checked_math.h"
#include "base/sequence_checker.h"
#include "base/synchronization/waitable_event.h"
#include "base/system/sys_info.h"
#include "base/task/thread_pool.h"
#include "base/threading/thread_restrictions.h"
#include "build/build_config.h"
#include "cc/paint/paint_canvas.h"
#include "cc/paint/paint_flags.h"
#include "cc/paint/paint_image_builder.h"
#include "components/viz/common/gpu/raster_context_provider.h"
#include "components/viz/common/resources/shared_image_format.h"
#include "gpu/GLES2/gl2extchromium.h"
#include "gpu/command_buffer/client/client_shared_image.h"
#include "gpu/command_buffer/client/context_support.h"
#include "gpu/command_buffer/client/gles2_interface.h"
#include "gpu/command_buffer/client/raster_interface.h"
#include "gpu/command_buffer/client/shared_image_interface.h"
#include "gpu/command_buffer/common/capabilities.h"
#include "gpu/command_buffer/common/mailbox_holder.h"
#include "gpu/command_buffer/common/shared_image_usage.h"
#include "media/base/data_buffer.h"
#include "media/base/video_frame.h"
#include "media/base/video_util.h"
#include "media/base/wait_and_replace_sync_token_client.h"
#include "media/renderers/video_frame_yuv_converter.h"
#include "third_party/libyuv/include/libyuv.h"
#include "third_party/skia/include/core/SkColorSpace.h"
#include "third_party/skia/include/core/SkImage.h"
#include "third_party/skia/include/core/SkImageGenerator.h"
#include "third_party/skia/include/core/SkImageInfo.h"
#include "third_party/skia/include/gpu/ganesh/GrBackendSurface.h"
#include "third_party/skia/include/gpu/ganesh/GrDirectContext.h"
#include "third_party/skia/include/gpu/ganesh/SkImageGanesh.h"
#include "third_party/skia/include/gpu/ganesh/gl/GrGLBackendSurface.h"
#include "third_party/skia/include/gpu/ganesh/gl/GrGLTypes.h"
#include "ui/gfx/geometry/rect_f.h"
#include "ui/gfx/geometry/skia_conversions.h"
// Skia internal format depends on a platform. On Android it is ABGR, on others
// it's ARGB. YUV_ORDER() conditionally remap YUV to YVU for ABGR.
#if SK_B32_SHIFT == 0 && SK_G32_SHIFT == 8 && SK_R32_SHIFT == 16 && \
SK_A32_SHIFT == 24
#define OUTPUT_ARGB 1
#define LIBYUV_ABGR_TO_ARGB libyuv::ABGRToARGB
#define YUV_ORDER(y, y_stride, u, u_stride, v, v_stride) \
(y), (y_stride), (u), (u_stride), (v), (v_stride)
#define GBR_TO_RGB_ORDER(y, y_stride, u, u_stride, v, v_stride) \
(v), (v_stride), (y), (y_stride), (u), (u_stride)
#define LIBYUV_NV12_TO_ARGB_MATRIX libyuv::NV12ToARGBMatrix
#define SHARED_IMAGE_FORMAT viz::SinglePlaneFormat::kBGRA_8888
#elif SK_R32_SHIFT == 0 && SK_G32_SHIFT == 8 && SK_B32_SHIFT == 16 && \
SK_A32_SHIFT == 24
#define OUTPUT_ARGB 0
#define LIBYUV_ABGR_TO_ARGB libyuv::ARGBToABGR
#define YUV_ORDER(y, y_stride, u, u_stride, v, v_stride) \
(y), (y_stride), (v), (v_stride), (u), (u_stride)
#define GBR_TO_RGB_ORDER(y, y_stride, u, u_stride, v, v_stride) \
(u), (u_stride), (y), (y_stride), (v), (v_stride)
#define LIBYUV_NV12_TO_ARGB_MATRIX libyuv::NV21ToARGBMatrix
#define SHARED_IMAGE_FORMAT viz::SinglePlaneFormat::kRGBA_8888
#else
#error Unexpected Skia ARGB_8888 layout!
#endif
namespace media {
namespace {
// This class keeps the last image drawn.
// We delete the temporary resource if it is not used for 3 seconds.
const int kTemporaryResourceDeletionDelay = 3; // Seconds;
// Helper class that begins/ends access to a mailbox within a scope. The mailbox
// must have been imported into |texture|.
class ScopedSharedImageAccess {
public:
// TODO(crbug.com/40106960): Remove this ctor once we're no longer relying on
// texture ids for Mailbox access as that is only supported on
// RasterImplementationGLES.
ScopedSharedImageAccess(
gpu::raster::RasterInterface* ri,
GLuint texture,
GLenum access = GL_SHARED_IMAGE_ACCESS_MODE_READ_CHROMIUM)
: ri(ri), texture(texture) {
ri->BeginSharedImageAccessDirectCHROMIUM(texture, access);
}
~ScopedSharedImageAccess() {
ri->EndSharedImageAccessDirectCHROMIUM(texture);
}
private:
raw_ptr<gpu::raster::RasterInterface> ri;
GLuint texture;
};
// Wraps a GL RGBA texture into a SkImage.
sk_sp<SkImage> WrapGLTexture(
GLuint texture_id,
const gfx::Size& size,
viz::RasterContextProvider* raster_context_provider) {
GrGLTextureInfo texture_info;
texture_info.fID = texture_id;
texture_info.fTarget = GL_TEXTURE_2D;
// TODO(bsalomon): GrGLTextureInfo::fFormat and SkColorType passed to
// SkImage factory should reflect video_frame->format(). Update once
// Skia supports GL_RGB. skbug.com/7533
texture_info.fFormat = GL_RGBA8_OES;
auto backend_texture = GrBackendTextures::MakeGL(
size.width(), size.height(), skgpu::Mipmapped::kNo, texture_info);
return SkImages::AdoptTextureFrom(
raster_context_provider->GrContext(), backend_texture,
kTopLeft_GrSurfaceOrigin, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
}
void BindAndTexImage2D(gpu::gles2::GLES2Interface* gl,
unsigned int target,
unsigned int texture,
unsigned int internal_format,
unsigned int format,
unsigned int type,
int level,
const gfx::Size& size) {
gl->BindTexture(target, texture);
gl->TexImage2D(target, level, internal_format, size.width(), size.height(), 0,
format, type, nullptr);
}
gpu::SyncToken CopySharedImageToTexture(
gpu::gles2::GLES2Interface* gl,
const gfx::Size& coded_size,
const gfx::Rect& visible_rect,
gpu::ClientSharedImage* source_shared_image,
const gpu::SyncToken& source_sync_token,
unsigned int target,
unsigned int texture,
unsigned int internal_format,
unsigned int format,
unsigned int type,
int level,
bool premultiply_alpha,
bool flip_y) {
auto si_texture = source_shared_image->CreateGLTexture(gl);
auto scoped_si_access =
si_texture->BeginAccess(source_sync_token, /*readonly=*/true);
// The video is stored in a unmultiplied format, so premultiply if
// necessary. Application itself needs to take care of setting the right
// |flip_y| value down to get the expected result. "flip_y == true" means to
// reverse the video orientation while "flip_y == false" means to keep the
// intrinsic orientation.
if (visible_rect != gfx::Rect(coded_size)) {
// Must reallocate the destination texture and copy only a sub-portion.
// There should always be enough data in the source texture to
// cover this copy.
DCHECK_LE(visible_rect.width(), coded_size.width());
DCHECK_LE(visible_rect.height(), coded_size.height());
BindAndTexImage2D(gl, target, texture, internal_format, format, type, level,
visible_rect.size());
gl->CopySubTextureCHROMIUM(
scoped_si_access->texture_id(), 0, target, texture, level, 0, 0,
visible_rect.x(), visible_rect.y(), visible_rect.width(),
visible_rect.height(), flip_y, premultiply_alpha, false);
} else {
gl->CopyTextureCHROMIUM(scoped_si_access->texture_id(), 0, target, texture,
level, internal_format, type, flip_y,
premultiply_alpha, false);
}
return gpu::SharedImageTexture::ScopedAccess::EndAccess(
std::move(scoped_si_access));
}
// Update |video_frame|'s release sync token to reflect the work done in |ri|,
// and ensure that |video_frame| be kept remain alive until |ri|'s commands have
// been completed. This is implemented for both gpu::gles2::GLES2Interface and
// gpu::raster::RasterInterface. This function is critical to ensure that
// |video_frame|'s resources not be returned until they are no longer in use.
// https://crbug.com/819914 (software video decode frame corruption)
// https://crbug.com/1237100 (camera capture reuse corruption)
void SynchronizeVideoFrameRead(scoped_refptr<VideoFrame> video_frame,
gpu::raster::RasterInterface* ri,
gpu::ContextSupport* context_support) {
WaitAndReplaceSyncTokenClient client(ri);
video_frame->UpdateReleaseSyncToken(&client);
if (!video_frame->metadata().read_lock_fences_enabled)
return;
unsigned query_id = 0;
ri->GenQueriesEXT(1, &query_id);
DCHECK(query_id);
ri->BeginQueryEXT(GL_COMMANDS_COMPLETED_CHROMIUM, query_id);
ri->EndQueryEXT(GL_COMMANDS_COMPLETED_CHROMIUM);
// |on_query_done_cb| will keep |video_frame| alive.
auto on_query_done_cb = base::BindOnce(
[](scoped_refptr<VideoFrame> video_frame,
gpu::raster::RasterInterface* ri,
unsigned query_id) { ri->DeleteQueriesEXT(1, &query_id); },
video_frame, ri, query_id);
context_support->SignalQuery(query_id, std::move(on_query_done_cb));
}
void SynchronizeVideoFrameRead(scoped_refptr<VideoFrame> video_frame,
gpu::gles2::GLES2Interface* gl,
gpu::ContextSupport* context_support) {
WaitAndReplaceSyncTokenClient client(gl);
video_frame->UpdateReleaseSyncToken(&client);
if (!video_frame->metadata().read_lock_fences_enabled)
return;
unsigned query_id = 0;
gl->GenQueriesEXT(1, &query_id);
DCHECK(query_id);
gl->BeginQueryEXT(GL_COMMANDS_COMPLETED_CHROMIUM, query_id);
gl->EndQueryEXT(GL_COMMANDS_COMPLETED_CHROMIUM);
// |on_query_done_cb| will keep |video_frame| alive.
auto on_query_done_cb = base::DoNothingWithBoundArgs(video_frame);
context_support->SignalQuery(query_id, std::move(on_query_done_cb));
// Delete the query immediately. This will cause |on_query_done_cb| to be
// issued prematurely. The alternative, deleting |query_id| within
// |on_query_done_cb|, can cause a crash because |gl| may not still exist
// at the time of the callback. This is incorrect behavior.
// https://crbug.com/1243763
gl->DeleteQueriesEXT(1, &query_id);
}
libyuv::FilterMode ToLibyuvFilterMode(
PaintCanvasVideoRenderer::FilterMode filter) {
switch (filter) {
case PaintCanvasVideoRenderer::kFilterNone:
return libyuv::kFilterNone;
case PaintCanvasVideoRenderer::kFilterBilinear:
return libyuv::kFilterBilinear;
}
}
size_t NumConvertVideoFrameToRGBPixelsTasks(const VideoFrame* video_frame) {
constexpr size_t kTaskBytes = 1024 * 1024; // 1 MiB
const size_t frame_size = VideoFrame::AllocationSize(
video_frame->format(), video_frame->visible_rect().size());
const size_t n_tasks = std::max<size_t>(1, frame_size / kTaskBytes);
return std::min<size_t>(n_tasks, base::SysInfo::NumberOfProcessors());
}
void ConvertVideoFrameToRGBPixelsTask(const VideoFrame* video_frame,
void* rgb_pixels,
size_t row_bytes,
bool premultiply_alpha,
libyuv::FilterMode filter,
size_t task_index,
size_t n_tasks,
base::RepeatingClosure* done) {
const VideoPixelFormat format = video_frame->format();
const int width = video_frame->visible_rect().width();
const int height = video_frame->visible_rect().height();
size_t rows_per_chunk = 1;
for (size_t plane = 0; plane < VideoFrame::kMaxPlanes; ++plane) {
if (VideoFrame::IsValidPlane(format, plane)) {
rows_per_chunk = std::lcm(rows_per_chunk,
VideoFrame::SampleSize(format, plane).height());
}
}
base::CheckedNumeric<size_t> chunks = height / rows_per_chunk;
const size_t chunk_start = (chunks * task_index / n_tasks).ValueOrDie();
const size_t chunk_end = (chunks * (task_index + 1) / n_tasks).ValueOrDie();
// Indivisible heights must process any remaining rows in the last task.
size_t rows = (chunk_end - chunk_start) * rows_per_chunk;
if (task_index + 1 == n_tasks)
rows += height % rows_per_chunk;
struct PlaneMetaData {
size_t stride;
raw_ptr<const uint8_t> data;
};
std::array<PlaneMetaData, VideoFrame::kMaxPlanes> plane_meta;
for (size_t plane = 0; plane < VideoFrame::kMaxPlanes; ++plane) {
if (VideoFrame::IsValidPlane(format, plane)) {
plane_meta[plane] = {
// Note: Unlike |data|, stride does not need to be adjusted by the
// visible rect and sample size. Adding the full frame stride to a
// pixel on row N and column M will wrap to column M on row N + 1.
.stride = video_frame->stride(plane),
.data = video_frame->visible_data(plane) +
video_frame->stride(plane) * (chunk_start * rows_per_chunk) /
VideoFrame::SampleSize(format, plane).height()};
} else {
plane_meta[plane] = {.stride = 0, .data = nullptr};
}
}
uint8_t* pixels = static_cast<uint8_t*>(rgb_pixels) +
row_bytes * chunk_start * rows_per_chunk;
if (format == PIXEL_FORMAT_ARGB || format == PIXEL_FORMAT_XRGB ||
format == PIXEL_FORMAT_ABGR || format == PIXEL_FORMAT_XBGR) {
DCHECK_LE(width, static_cast<int>(row_bytes));
const uint8_t* data = plane_meta[VideoFrame::Plane::kARGB].data;
// Handle order swapping depending on the source and destination formats.
if ((OUTPUT_ARGB &&
(format == PIXEL_FORMAT_ARGB || format == PIXEL_FORMAT_XRGB)) ||
(!OUTPUT_ARGB &&
(format == PIXEL_FORMAT_ABGR || format == PIXEL_FORMAT_XBGR))) {
uint8_t* dest = pixels;
for (size_t i = 0; i < rows; i++) {
memcpy(dest, data, width * 4);
dest += row_bytes;
data += plane_meta[VideoFrame::Plane::kARGB].stride;
}
} else {
LIBYUV_ABGR_TO_ARGB(plane_meta[VideoFrame::Plane::kARGB].data,
plane_meta[VideoFrame::Plane::kARGB].stride, pixels,
row_bytes, width, rows);
}
// Handle `premultiply_alpha` if the source format has alpha. This could
// be more efficient if combined with order swapping (in the case that no
// swap is performed).
if (premultiply_alpha &&
(format == PIXEL_FORMAT_ARGB || format == PIXEL_FORMAT_ABGR)) {
libyuv::ARGBAttenuate(pixels, row_bytes, pixels, row_bytes, width, rows);
}
done->Run();
return;
}
// TODO(crbug.com/41380578): This should default to BT.709 color space.
auto yuv_cs = kRec601_SkYUVColorSpace;
video_frame->ColorSpace().ToSkYUVColorSpace(video_frame->BitDepth(), &yuv_cs);
const libyuv::YuvConstants* matrix =
GetYuvContantsForColorSpace(yuv_cs, OUTPUT_ARGB);
if (!video_frame->data(VideoFrame::Plane::kU) &&
!video_frame->data(VideoFrame::Plane::kV)) {
DCHECK_EQ(format, PIXEL_FORMAT_I420);
// For monochrome content ARGB and ABGR are interchangeable.
libyuv::I400ToARGBMatrix(plane_meta[VideoFrame::Plane::kY].data,
plane_meta[VideoFrame::Plane::kY].stride, pixels,
row_bytes, matrix, width, rows);
done->Run();
return;
}
auto convert_yuv = [&](const libyuv::YuvConstants* matrix, auto&& func) {
func(YUV_ORDER(plane_meta[VideoFrame::Plane::kY].data,
plane_meta[VideoFrame::Plane::kY].stride,
plane_meta[VideoFrame::Plane::kU].data,
plane_meta[VideoFrame::Plane::kU].stride,
plane_meta[VideoFrame::Plane::kV].data,
plane_meta[VideoFrame::Plane::kV].stride),
pixels, row_bytes, matrix, width, rows);
};
auto convert_yuv_with_filter = [&](const libyuv::YuvConstants* matrix,
auto&& func) {
func(YUV_ORDER(plane_meta[VideoFrame::Plane::kY].data,
plane_meta[VideoFrame::Plane::kY].stride,
plane_meta[VideoFrame::Plane::kU].data,
plane_meta[VideoFrame::Plane::kU].stride,
plane_meta[VideoFrame::Plane::kV].data,
plane_meta[VideoFrame::Plane::kV].stride),
pixels, row_bytes, matrix, width, rows, filter);
};
auto convert_yuva = [&](const libyuv::YuvConstants* matrix, auto&& func) {
func(YUV_ORDER(plane_meta[VideoFrame::Plane::kY].data,
plane_meta[VideoFrame::Plane::kY].stride,
plane_meta[VideoFrame::Plane::kU].data,
plane_meta[VideoFrame::Plane::kU].stride,
plane_meta[VideoFrame::Plane::kV].data,
plane_meta[VideoFrame::Plane::kV].stride),
plane_meta[VideoFrame::Plane::kA].data,
plane_meta[VideoFrame::Plane::kA].stride, pixels, row_bytes, matrix,
width, rows, premultiply_alpha);
};
auto convert_yuva_with_filter = [&](const libyuv::YuvConstants* matrix,
auto&& func) {
func(YUV_ORDER(plane_meta[VideoFrame::Plane::kY].data,
plane_meta[VideoFrame::Plane::kY].stride,
plane_meta[VideoFrame::Plane::kU].data,
plane_meta[VideoFrame::Plane::kU].stride,
plane_meta[VideoFrame::Plane::kV].data,
plane_meta[VideoFrame::Plane::kV].stride),
plane_meta[VideoFrame::Plane::kA].data,
plane_meta[VideoFrame::Plane::kA].stride, pixels, row_bytes, matrix,
width, rows, premultiply_alpha, filter);
};
auto convert_yuv16 = [&](const libyuv::YuvConstants* matrix, auto&& func) {
func(YUV_ORDER(reinterpret_cast<const uint16_t*>(
plane_meta[VideoFrame::Plane::kY].data.get()),
plane_meta[VideoFrame::Plane::kY].stride / 2,
reinterpret_cast<const uint16_t*>(
plane_meta[VideoFrame::Plane::kU].data.get()),
plane_meta[VideoFrame::Plane::kU].stride / 2,
reinterpret_cast<const uint16_t*>(
plane_meta[VideoFrame::Plane::kV].data.get()),
plane_meta[VideoFrame::Plane::kV].stride / 2),
pixels, row_bytes, matrix, width, rows);
};
auto convert_yuv16_with_filter = [&](const libyuv::YuvConstants* matrix,
auto&& func) {
func(YUV_ORDER(reinterpret_cast<const uint16_t*>(
plane_meta[VideoFrame::Plane::kY].data.get()),
plane_meta[VideoFrame::Plane::kY].stride / 2,
reinterpret_cast<const uint16_t*>(
plane_meta[VideoFrame::Plane::kU].data.get()),
plane_meta[VideoFrame::Plane::kU].stride / 2,
reinterpret_cast<const uint16_t*>(
plane_meta[VideoFrame::Plane::kV].data.get()),
plane_meta[VideoFrame::Plane::kV].stride / 2),
pixels, row_bytes, matrix, width, rows, filter);
};
auto convert_yuva16 = [&](const libyuv::YuvConstants* matrix, auto&& func) {
func(YUV_ORDER(reinterpret_cast<const uint16_t*>(
plane_meta[VideoFrame::Plane::kY].data.get()),
plane_meta[VideoFrame::Plane::kY].stride / 2,
reinterpret_cast<const uint16_t*>(
plane_meta[VideoFrame::Plane::kU].data.get()),
plane_meta[VideoFrame::Plane::kU].stride / 2,
reinterpret_cast<const uint16_t*>(
plane_meta[VideoFrame::Plane::kV].data.get()),
plane_meta[VideoFrame::Plane::kV].stride / 2),
reinterpret_cast<const uint16_t*>(
plane_meta[VideoFrame::Plane::kA].data.get()),
plane_meta[VideoFrame::Plane::kA].stride / 2, pixels, row_bytes,
matrix, width, rows, premultiply_alpha);
};
auto convert_yuva16_with_filter = [&](const libyuv::YuvConstants* matrix,
auto&& func) {
func(YUV_ORDER(reinterpret_cast<const uint16_t*>(
plane_meta[VideoFrame::Plane::kY].data.get()),
plane_meta[VideoFrame::Plane::kY].stride / 2,
reinterpret_cast<const uint16_t*>(
plane_meta[VideoFrame::Plane::kU].data.get()),
plane_meta[VideoFrame::Plane::kU].stride / 2,
reinterpret_cast<const uint16_t*>(
plane_meta[VideoFrame::Plane::kV].data.get()),
plane_meta[VideoFrame::Plane::kV].stride / 2),
reinterpret_cast<const uint16_t*>(
plane_meta[VideoFrame::Plane::kA].data.get()),
plane_meta[VideoFrame::Plane::kA].stride / 2, pixels, row_bytes,
matrix, width, rows, premultiply_alpha, filter);
};
switch (format) {
case PIXEL_FORMAT_YV12:
case PIXEL_FORMAT_I420:
convert_yuv_with_filter(matrix, libyuv::I420ToARGBMatrixFilter);
break;
case PIXEL_FORMAT_I422:
convert_yuv_with_filter(matrix, libyuv::I422ToARGBMatrixFilter);
break;
case PIXEL_FORMAT_I444:
// Special case for 4:4:4 RGB encoded videos.
if (video_frame->ColorSpace().GetMatrixID() ==
gfx::ColorSpace::MatrixID::GBR) {
libyuv::MergeARGBPlane(
GBR_TO_RGB_ORDER(plane_meta[VideoFrame::Plane::kY].data,
plane_meta[VideoFrame::Plane::kY].stride,
plane_meta[VideoFrame::Plane::kU].data,
plane_meta[VideoFrame::Plane::kU].stride,
plane_meta[VideoFrame::Plane::kV].data,
plane_meta[VideoFrame::Plane::kV].stride),
plane_meta[VideoFrame::Plane::kA].data,
plane_meta[VideoFrame::Plane::kA].stride, pixels, row_bytes, width,
rows);
} else {
convert_yuv(matrix, libyuv::I444ToARGBMatrix);
}
break;
case PIXEL_FORMAT_YUV420P10:
convert_yuv16_with_filter(matrix, libyuv::I010ToARGBMatrixFilter);
break;
case PIXEL_FORMAT_YUV422P10:
convert_yuv16_with_filter(matrix, libyuv::I210ToARGBMatrixFilter);
break;
case PIXEL_FORMAT_YUV444P10:
convert_yuv16(matrix, libyuv::I410ToARGBMatrix);
break;
case PIXEL_FORMAT_YUV420P12:
convert_yuv16(matrix, libyuv::I012ToARGBMatrix);
break;
case PIXEL_FORMAT_I420A:
convert_yuva_with_filter(matrix, libyuv::I420AlphaToARGBMatrixFilter);
break;
case PIXEL_FORMAT_I422A:
convert_yuva_with_filter(matrix, libyuv::I422AlphaToARGBMatrixFilter);
break;
case PIXEL_FORMAT_I444A:
convert_yuva(matrix, libyuv::I444AlphaToARGBMatrix);
break;
case PIXEL_FORMAT_YUV420AP10:
convert_yuva16_with_filter(matrix, libyuv::I010AlphaToARGBMatrixFilter);
break;
case PIXEL_FORMAT_YUV422AP10:
convert_yuva16_with_filter(matrix, libyuv::I210AlphaToARGBMatrixFilter);
break;
case PIXEL_FORMAT_YUV444AP10:
convert_yuva16(matrix, libyuv::I410AlphaToARGBMatrix);
break;
case PIXEL_FORMAT_NV12:
LIBYUV_NV12_TO_ARGB_MATRIX(plane_meta[VideoFrame::Plane::kY].data,
plane_meta[VideoFrame::Plane::kY].stride,
plane_meta[VideoFrame::Plane::kUV].data,
plane_meta[VideoFrame::Plane::kUV].stride,
pixels, row_bytes, matrix, width, rows);
break;
case PIXEL_FORMAT_P010LE:
libyuv::P010ToARGBMatrix(
reinterpret_cast<const uint16_t*>(
plane_meta[VideoFrame::Plane::kY].data.get()),
plane_meta[VideoFrame::Plane::kY].stride,
reinterpret_cast<const uint16_t*>(
plane_meta[VideoFrame::Plane::kUV].data.get()),
plane_meta[VideoFrame::Plane::kUV].stride, pixels, row_bytes, matrix,
width, rows);
if (!OUTPUT_ARGB)
libyuv::ARGBToABGR(pixels, row_bytes, pixels, row_bytes, width, rows);
break;
case PIXEL_FORMAT_YUV420P9:
case PIXEL_FORMAT_YUV422P9:
case PIXEL_FORMAT_YUV444P9:
case PIXEL_FORMAT_YUV422P12:
case PIXEL_FORMAT_YUV444P12:
case PIXEL_FORMAT_Y16:
NOTREACHED()
<< "These cases should be handled in ConvertVideoFrameToRGBPixels";
case PIXEL_FORMAT_UYVY:
case PIXEL_FORMAT_NV21:
case PIXEL_FORMAT_NV16:
case PIXEL_FORMAT_NV24:
case PIXEL_FORMAT_NV12A:
case PIXEL_FORMAT_P210LE:
case PIXEL_FORMAT_P410LE:
case PIXEL_FORMAT_YUY2:
case PIXEL_FORMAT_ARGB:
case PIXEL_FORMAT_BGRA:
case PIXEL_FORMAT_XRGB:
case PIXEL_FORMAT_RGB24:
case PIXEL_FORMAT_MJPEG:
case PIXEL_FORMAT_ABGR:
case PIXEL_FORMAT_XBGR:
case PIXEL_FORMAT_XR30:
case PIXEL_FORMAT_XB30:
case PIXEL_FORMAT_RGBAF16:
case PIXEL_FORMAT_UNKNOWN:
NOTREACHED() << "Only YUV formats and Y16 are supported, got: "
<< media::VideoPixelFormatToString(format);
}
done->Run();
}
#if !BUILDFLAG(IS_ANDROID)
// Valid gl texture internal format that can try to use direct uploading path.
bool ValidFormatForDirectUploading(
GrGLenum format,
unsigned int type) {
switch (format) {
case GL_RGBA:
return type == GL_UNSIGNED_BYTE || type == GL_UNSIGNED_SHORT_4_4_4_4;
case GL_RGB:
return type == GL_UNSIGNED_BYTE || type == GL_UNSIGNED_SHORT_5_6_5;
// WebGL2 supported sized formats
case GL_RGBA8:
case GL_RGB565:
case GL_RGBA16F:
case GL_RGB8:
case GL_RGB10_A2:
case GL_RGBA4:
// TODO(crbug.com/356649879): RasterContextProvider never has ES3 context.
// Use the correct WebGL major version here.
return false;
default:
return false;
}
}
// Controls whether the one-copy path when copying a VideoFrame to a GL texture
// is enabled or disabled. The one-copy path being enabled is the default
// production state, with this Feature being used to be able to disable this
// path for performance testing.
BASE_FEATURE(kOneCopyUploadOfVideoFrameToGLTexture,
"OneCopyUploadOfVideoFrameToGLTexture",
base::FEATURE_ENABLED_BY_DEFAULT);
#endif // BUILDFLAG(IS_ANDROID)
std::tuple<SkYUVAInfo::PlaneConfig, SkYUVAInfo::Subsampling>
VideoPixelFormatAsSkYUVAInfoValues(VideoPixelFormat format) {
// The 9, 10, and 12 bit formats could be added here if GetYUVAPlanes() were
// updated to convert data to unorm16/float16. Similarly, alpha planes and
// formats with interleaved planes (e.g. NV12) could be supported if that
// function were updated to not assume 3 separate Y, U, and V planes. Also,
// GpuImageDecodeCache would need be able to handle plane configurations
// other than 3 separate y, u, and v planes (crbug.com/910276).
switch (format) {
case PIXEL_FORMAT_I420:
return {SkYUVAInfo::PlaneConfig::kY_U_V, SkYUVAInfo::Subsampling::k420};
case PIXEL_FORMAT_I422:
return {SkYUVAInfo::PlaneConfig::kY_U_V, SkYUVAInfo::Subsampling::k422};
case PIXEL_FORMAT_I444:
return {SkYUVAInfo::PlaneConfig::kY_U_V, SkYUVAInfo::Subsampling::k444};
default:
return {SkYUVAInfo::PlaneConfig::kUnknown,
SkYUVAInfo::Subsampling::kUnknown};
}
}
// Checks support before attempting one copy upload to GL texture.
bool SupportsOneCopyUploadToGLTexture(VideoPixelFormat video_frame_format,
uint32_t shared_image_target,
unsigned int dst_target,
unsigned int dst_internal_format,
unsigned int dst_type,
int dst_level,
bool premultiply_alpha) {
// NOTE: The direct upload path is not supported on Android (see comment on
// CopyVideoFrameTexturesToGLTexture()).
// TODO(crbug.com/40075313): Enable on Android.
#if BUILDFLAG(IS_ANDROID)
return false;
#else
bool si_usable_by_gles2_interface = shared_image_target != 0;
// Since skia always produces premultiply alpha outputs,
// trying direct uploading path when video format is opaque or premultiply
// alpha been requested.
// TODO(crbug.com/40159723): Figure out whether premultiply options here are
// accurate.
bool is_premul = media::IsOpaque(video_frame_format) || premultiply_alpha;
bool use_one_copy_upload =
base::FeatureList::IsEnabled(kOneCopyUploadOfVideoFrameToGLTexture);
bool supports_one_copy_format = ValidFormatForDirectUploading(
static_cast<GLenum>(dst_internal_format), dst_type);
// dst texture mipLevel must be 0.
// TODO(crbug.com/40141173): Support more texture target, e.g.
// 2d array, 3d etc.
return si_usable_by_gles2_interface && dst_level == 0 && is_premul &&
use_one_copy_upload && dst_target == GL_TEXTURE_2D &&
supports_one_copy_format;
#endif // BUILDFLAG(IS_ANDROID)
}
} // anonymous namespace
// Generates an RGB image from a VideoFrame. Convert YUV to RGB plain on GPU.
class VideoImageGenerator : public cc::PaintImageGenerator {
public:
VideoImageGenerator() = delete;
VideoImageGenerator(scoped_refptr<VideoFrame> frame)
: cc::PaintImageGenerator(SkImageInfo::MakeN32Premul(
frame->visible_rect().width(),
frame->visible_rect().height(),
frame->CompatRGBColorSpace().ToSkColorSpace())),
frame_(std::move(frame)) {
DCHECK(!frame_->HasSharedImage());
}
VideoImageGenerator(const VideoImageGenerator&) = delete;
VideoImageGenerator& operator=(const VideoImageGenerator&) = delete;
~VideoImageGenerator() override = default;
sk_sp<SkData> GetEncodedData() const override { return nullptr; }
bool GetPixels(SkPixmap dst_pixmap,
size_t frame_index,
cc::PaintImage::GeneratorClientId client_id,
uint32_t lazy_pixel_ref) override {
DCHECK_EQ(frame_index, 0u);
// If skia couldn't do the YUV conversion on GPU, we will on CPU.
PaintCanvasVideoRenderer::ConvertVideoFrameToRGBPixels(
frame_.get(), dst_pixmap.writable_addr(), dst_pixmap.rowBytes());
if (!SkColorSpace::Equals(GetSkImageInfo().colorSpace(),
dst_pixmap.colorSpace())) {
SkPixmap src(GetSkImageInfo(), dst_pixmap.writable_addr(),
dst_pixmap.rowBytes());
if (!src.readPixels(dst_pixmap)) {
return false;
}
}
return true;
}
bool QueryYUVA(const SkYUVAPixmapInfo::SupportedDataTypes&,
SkYUVAPixmapInfo* info) const override {
SkYUVAInfo::PlaneConfig plane_config;
SkYUVAInfo::Subsampling subsampling;
std::tie(plane_config, subsampling) =
VideoPixelFormatAsSkYUVAInfoValues(frame_->format());
if (plane_config == SkYUVAInfo::PlaneConfig::kUnknown)
return false;
// Don't use the YUV conversion path for multi-plane RGB frames.
if (frame_->format() == PIXEL_FORMAT_I444 &&
frame_->ColorSpace().GetMatrixID() == gfx::ColorSpace::MatrixID::GBR) {
return false;
}
if (!info)
return true;
SkYUVColorSpace yuv_color_space;
if (!frame_->ColorSpace().ToSkYUVColorSpace(frame_->BitDepth(),
&yuv_color_space)) {
// TODO(crbug.com/41380578): This should default to BT.709 color space.
yuv_color_space = kRec601_SkYUVColorSpace;
}
auto yuva_info = SkYUVAInfo(
{frame_->visible_rect().width(), frame_->visible_rect().height()},
plane_config, subsampling, yuv_color_space);
*info = SkYUVAPixmapInfo(yuva_info, SkYUVAPixmapInfo::DataType::kUnorm8,
/*rowBytes=*/nullptr);
return true;
}
bool GetYUVAPlanes(const SkYUVAPixmaps& pixmaps,
size_t frame_index,
uint32_t lazy_pixel_ref,
cc::PaintImage::GeneratorClientId client_id) override {
DCHECK_EQ(frame_index, 0u);
DCHECK_EQ(pixmaps.numPlanes(), 3);
#if DCHECK_IS_ON()
SkYUVAInfo::PlaneConfig plane_config;
SkYUVAInfo::Subsampling subsampling;
std::tie(plane_config, subsampling) =
VideoPixelFormatAsSkYUVAInfoValues(frame_->format());
DCHECK_EQ(plane_config, pixmaps.yuvaInfo().planeConfig());
DCHECK_EQ(subsampling, pixmaps.yuvaInfo().subsampling());
#endif
for (int plane = VideoFrame::Plane::kY; plane <= VideoFrame::Plane::kV;
++plane) {
const auto plane_size = VideoFrame::PlaneSizeInSamples(
frame_->format(), plane, frame_->visible_rect().size());
if (plane_size.width() != pixmaps.plane(plane).width() ||
plane_size.height() != pixmaps.plane(plane).height()) {
return false;
}
const auto& out_plane = pixmaps.plane(plane);
// Copy the frame to the supplied memory. It'd be nice to avoid this copy,
// but the memory is externally owned so we can't w/o an API change.
libyuv::CopyPlane(frame_->visible_data(plane), frame_->stride(plane),
reinterpret_cast<uint8_t*>(out_plane.writable_addr()),
out_plane.rowBytes(), plane_size.width(),
plane_size.height());
}
return true;
}
private:
scoped_refptr<VideoFrame> frame_;
};
class VideoTextureBacking : public cc::TextureBacking {
public:
explicit VideoTextureBacking(
sk_sp<SkImage> sk_image,
scoped_refptr<gpu::ClientSharedImage> shared_image,
scoped_refptr<viz::RasterContextProvider> raster_context_provider,
std::unique_ptr<ScopedSharedImageAccess> access)
: sk_image_(std::move(sk_image)),
sk_image_info_(sk_image_->imageInfo()),
shared_image_(std::move(shared_image)),
access_(std::move(access)) {
DCHECK(sk_image_->isTextureBacked());
CHECK(shared_image_);
raster_context_provider_ = std::move(raster_context_provider);
}
explicit VideoTextureBacking(
scoped_refptr<gpu::ClientSharedImage> shared_image,
const SkImageInfo& info,
scoped_refptr<viz::RasterContextProvider> raster_context_provider)
: sk_image_info_(info), shared_image_(std::move(shared_image)) {
CHECK(shared_image_);
raster_context_provider_ = std::move(raster_context_provider);
}
~VideoTextureBacking() override {
auto* ri = raster_context_provider_->RasterInterface();
gpu::SyncToken sync_token;
ri->GenUnverifiedSyncTokenCHROMIUM(sync_token.GetData());
auto* sii = raster_context_provider_->SharedImageInterface();
sii->DestroySharedImage(sync_token, std::move(shared_image_));
}
const SkImageInfo& GetSkImageInfo() override { return sk_image_info_; }
gpu::Mailbox GetMailbox() const override { return shared_image_->mailbox(); }
const scoped_refptr<gpu::ClientSharedImage>& GetSharedImage() const {
return shared_image_;
}
sk_sp<SkImage> GetAcceleratedSkImage() override { return sk_image_; }
const scoped_refptr<viz::RasterContextProvider>& raster_context_provider()
const {
return raster_context_provider_;
}
// Used only for recycling this TextureBacking - where we need to keep the
// texture/mailbox alive, but replace the SkImage. |access| is the access to
// the SharedImage backing this SkImage.
void ReplaceAcceleratedSkImage(
sk_sp<SkImage> sk_image,
std::unique_ptr<ScopedSharedImageAccess> access) {
DCHECK(sk_image->isTextureBacked());
sk_image_ = sk_image;
sk_image_info_ = sk_image->imageInfo();
// The client should have called clear_access() before invoking this method.
DCHECK(!access_);
access_ = std::move(access);
}
void clear_access() { access_.reset(); }
sk_sp<SkImage> GetSkImageViaReadback() override {
sk_sp<SkData> image_pixels =
SkData::MakeUninitialized(sk_image_info_.computeMinByteSize());
if (!readPixels(sk_image_info_, image_pixels->writable_data(),
sk_image_info_.minRowBytes(), 0, 0)) {
DLOG(ERROR) << "VideoTextureBacking::GetSkImageViaReadback failed.";
return nullptr;
}
return SkImages::RasterFromData(sk_image_info_, std::move(image_pixels),
sk_image_info_.minRowBytes());
}
bool readPixels(const SkImageInfo& dst_info,
void* dst_pixels,
size_t dst_row_bytes,
int src_x,
int src_y) override {
gpu::raster::RasterInterface* ri =
raster_context_provider_->RasterInterface();
if (sk_image_) {
GrGLTextureInfo texture_info;
GrBackendTexture texture;
if (!SkImages::GetBackendTextureFromImage(
sk_image_, &texture,
/*flushPendingGrContextIO=*/true)) {
DLOG(ERROR) << "Failed to get backend texture for VideoTextureBacking.";
return false;
}
if (!GrBackendTextures::GetGLTextureInfo(texture, &texture_info)) {
DLOG(ERROR) << "Failed to getGLTextureInfo for VideoTextureBacking.";
return false;
}
return sk_image_->readPixels(dst_info, dst_pixels, dst_row_bytes, src_x,
src_y);
}
return ri->ReadbackImagePixels(shared_image_->mailbox(), dst_info,
dst_info.minRowBytes(), src_x, src_y,
/*plane_index=*/0, dst_pixels);
}
void FlushPendingSkiaOps() override {
if (!raster_context_provider_ || !sk_image_) {
return;
}
GrDirectContext* ctx = raster_context_provider_->GrContext();
if (!ctx) {
return;
}
ctx->flushAndSubmit(sk_image_);
}
private:
sk_sp<SkImage> sk_image_;
SkImageInfo sk_image_info_;
scoped_refptr<viz::RasterContextProvider> raster_context_provider_;
// This is a newly allocated shared image if a copy or conversion was
// necessary.
scoped_refptr<gpu::ClientSharedImage> shared_image_;
std::unique_ptr<ScopedSharedImageAccess> access_;
};
PaintCanvasVideoRenderer::PaintCanvasVideoRenderer()
: cache_deleting_timer_(FROM_HERE,
base::Seconds(kTemporaryResourceDeletionDelay),
this,
&PaintCanvasVideoRenderer::ResetCache),
renderer_stable_id_(cc::PaintImage::GetNextId()) {}
PaintCanvasVideoRenderer::~PaintCanvasVideoRenderer() = default;
void PaintCanvasVideoRenderer::Paint(
scoped_refptr<VideoFrame> video_frame,
cc::PaintCanvas* canvas,
cc::PaintFlags& flags,
const PaintParams& params,
viz::RasterContextProvider* raster_context_provider) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (flags.isFullyTransparent()) {
return;
}
if (video_frame && video_frame->HasSharedImage()) {
if (!raster_context_provider) {
DLOG(ERROR)
<< "Can't render textured frames w/o viz::RasterContextProvider";
return; // Unable to get/create a shared main thread context.
}
if (!raster_context_provider->GrContext() &&
!raster_context_provider->ContextCapabilities().gpu_rasterization) {
DLOG(ERROR)
<< "Can't render textured frames w/o valid GrContext or GPU raster.";
return; // The context has been lost.
}
}
gfx::RectF dest_rect = params.dest_rect.value_or(
video_frame ? gfx::RectF(gfx::SizeF(video_frame->visible_rect().size()))
: gfx::RectF());
SkRect dest;
dest.setLTRB(dest_rect.x(), dest_rect.y(), dest_rect.right(),
dest_rect.bottom());
// Paint black rectangle if there isn't a frame available or the
// frame has an unexpected format.
if (!video_frame.get() || video_frame->natural_size().IsEmpty() ||
!(media::IsYuvPlanar(video_frame->format()) ||
video_frame->format() == PIXEL_FORMAT_Y16 ||
video_frame->format() == PIXEL_FORMAT_ARGB ||
video_frame->format() == PIXEL_FORMAT_XRGB ||
video_frame->format() == PIXEL_FORMAT_ABGR ||
video_frame->format() == PIXEL_FORMAT_XBGR ||
video_frame->HasSharedImage())) {
cc::PaintFlags black_with_alpha_flags;
black_with_alpha_flags.setAlphaf(flags.getAlphaf());
canvas->drawRect(dest, black_with_alpha_flags);
canvas->flush();
return;
}
// We want to be able to cache the PaintImage, to avoid redundant readbacks if
// the canvas is software.
// We do not need to synchronize video frame read here since it's already
// taken care of in UpdateLastImage().
if (!UpdateLastImage(video_frame, raster_context_provider)) {
return;
}
DCHECK(cache_);
cc::PaintImage image = cache_->paint_image;
if (params.reinterpret_as_srgb) {
image = cc::PaintImageBuilder::WithCopy(image)
.set_reinterpret_as_srgb(true)
.TakePaintImage();
}
DCHECK(image);
cc::PaintFlags video_flags;
video_flags.setAlphaf(flags.getAlphaf());
video_flags.setBlendMode(flags.getBlendMode());
const bool need_rotation = params.transformation.rotation != VIDEO_ROTATION_0;
const bool need_scaling =
dest_rect.size() != gfx::SizeF(video_frame->visible_rect().size());
const bool need_translation = !dest_rect.origin().IsOrigin();
const bool needs_mirror = params.transformation.mirrored;
bool need_transform =
need_rotation || need_scaling || need_translation || needs_mirror;
if (need_transform) {
canvas->save();
canvas->translate(
SkFloatToScalar(dest_rect.x() + (dest_rect.width() * 0.5f)),
SkFloatToScalar(dest_rect.y() + (dest_rect.height() * 0.5f)));
SkScalar angle = SkFloatToScalar(0.0f);
switch (params.transformation.rotation) {
case VIDEO_ROTATION_0:
break;
case VIDEO_ROTATION_90:
angle = SkFloatToScalar(90.0f);
break;
case VIDEO_ROTATION_180:
angle = SkFloatToScalar(180.0f);
break;
case VIDEO_ROTATION_270:
angle = SkFloatToScalar(270.0f);
break;
}
canvas->rotate(angle);
gfx::SizeF rotated_dest_size = dest_rect.size();
const bool has_flipped_size =
params.transformation.rotation == VIDEO_ROTATION_90 ||
params.transformation.rotation == VIDEO_ROTATION_270;
if (has_flipped_size) {
rotated_dest_size =
gfx::SizeF(rotated_dest_size.height(), rotated_dest_size.width());
}
auto sx = SkFloatToScalar(rotated_dest_size.width() /
video_frame->visible_rect().width());
auto sy = SkFloatToScalar(rotated_dest_size.height() /
video_frame->visible_rect().height());
if (needs_mirror) {
if (has_flipped_size)
sy *= -1;
else
sx *= -1;
}
canvas->scale(sx, sy);
canvas->translate(
-SkFloatToScalar(video_frame->visible_rect().width() * 0.5f),
-SkFloatToScalar(video_frame->visible_rect().height() * 0.5f));
}
SkImageInfo info;
size_t row_bytes;
SkIPoint origin;
void* pixels = nullptr;
// This if is a special handling of video for SkiaPaintcanvas backend, where
// the video does not need any transform and it is enough to draw the frame
// directly into the skia canvas
if (!need_transform && !params.reinterpret_as_srgb &&
video_frame->IsMappable() && flags.isOpaque() &&
flags.getBlendMode() == SkBlendMode::kSrc &&
flags.getFilterQuality() == cc::PaintFlags::FilterQuality::kLow &&
(pixels = canvas->accessTopLayerPixels(&info, &row_bytes, &origin)) &&
info.colorType() == kBGRA_8888_SkColorType) {
const size_t offset = info.computeOffset(origin.x(), origin.y(), row_bytes);
void* const pixels_offset = reinterpret_cast<char*>(pixels) + offset;
ConvertVideoFrameToRGBPixels(video_frame.get(), pixels_offset, row_bytes);
} else if (video_frame->HasSharedImage()) {
DCHECK_EQ(video_frame->coded_size(),
gfx::Size(image.width(), image.height()));
canvas->drawImageRect(image, gfx::RectToSkRect(video_frame->visible_rect()),
SkRect::MakeWH(video_frame->visible_rect().width(),
video_frame->visible_rect().height()),
cc::PaintFlags::FilterQualityToSkSamplingOptions(
flags.getFilterQuality()),
&video_flags, SkCanvas::kStrict_SrcRectConstraint);
} else {
DCHECK_EQ(video_frame->visible_rect().size(),
gfx::Size(image.width(), image.height()));
canvas->drawImage(image, 0, 0,
cc::PaintFlags::FilterQualityToSkSamplingOptions(
flags.getFilterQuality()),
&video_flags);
}
if (need_transform) {
canvas->restore();
}
// Make sure to flush so we can remove the videoframe from the generator.
canvas->flush();
}
void PaintCanvasVideoRenderer::Copy(
scoped_refptr<VideoFrame> video_frame,
cc::PaintCanvas* canvas,
viz::RasterContextProvider* raster_context_provider) {
cc::PaintFlags flags;
flags.setBlendMode(SkBlendMode::kSrc);
flags.setFilterQuality(cc::PaintFlags::FilterQuality::kLow);
Paint(std::move(video_frame), canvas, flags, PaintParams(),
raster_context_provider);
}
namespace {
// libyuv doesn't support all 9-, 10- nor 12-bit pixel formats yet. This
// function creates a regular 8-bit video frame which we can give to libyuv.
scoped_refptr<VideoFrame> DownShiftHighbitVideoFrame(
const VideoFrame* video_frame) {
VideoPixelFormat format;
switch (video_frame->format()) {
case PIXEL_FORMAT_YUV420P12:
case PIXEL_FORMAT_YUV420P10:
case PIXEL_FORMAT_YUV420P9:
format = PIXEL_FORMAT_I420;
break;
case PIXEL_FORMAT_YUV422P12:
case PIXEL_FORMAT_YUV422P10:
case PIXEL_FORMAT_YUV422P9:
format = PIXEL_FORMAT_I422;
break;
case PIXEL_FORMAT_YUV444P12:
case PIXEL_FORMAT_YUV444P10:
case PIXEL_FORMAT_YUV444P9:
format = PIXEL_FORMAT_I444;
break;
default:
NOTREACHED();
}
const int scale = 1 << (24 - video_frame->BitDepth());
scoped_refptr<VideoFrame> ret = VideoFrame::CreateFrame(
format, video_frame->coded_size(), video_frame->visible_rect(),
video_frame->natural_size(), video_frame->timestamp());
ret->set_color_space(video_frame->ColorSpace());
// Copy all metadata.
// (May be enough to copy color space)
ret->metadata().MergeMetadataFrom(video_frame->metadata());
for (int plane = VideoFrame::Plane::kY; plane <= VideoFrame::Plane::kV;
++plane) {
int width = VideoFrame::Columns(plane, video_frame->format(),
video_frame->visible_rect().width());
int height = VideoFrame::Rows(plane, video_frame->format(),
video_frame->visible_rect().height());
const uint16_t* src =
reinterpret_cast<const uint16_t*>(video_frame->visible_data(plane));
uint8_t* dst = ret->GetWritableVisibleData(plane);
if (!src) {
// An AV1 monochrome (grayscale) frame has no U and V planes. Set all U
// and V samples to the neutral value (128).
DCHECK_NE(plane, VideoFrame::Plane::kY);
memset(dst, 128, height * ret->stride(plane));
continue;
}
libyuv::Convert16To8Plane(src, video_frame->stride(plane) / 2, dst,
ret->stride(plane), scale, width, height);
}
return ret;
}
// Converts 16-bit data to |out| buffer of specified GL |type|.
// When the |format| is RGBA, the converted value is fed as luminance.
void FlipAndConvertY16(const VideoFrame* video_frame,
uint8_t* out,
unsigned format,
unsigned type,
bool flip_y,
size_t output_row_bytes) {
const uint8_t* row_head = video_frame->visible_data(0);
const size_t stride = video_frame->stride(0);
const int height = video_frame->visible_rect().height();
for (int i = 0; i < height; ++i, row_head += stride) {
uint8_t* out_row_head = flip_y ? out + output_row_bytes * (height - i - 1)
: out + output_row_bytes * i;
const uint16_t* row = reinterpret_cast<const uint16_t*>(row_head);
const uint16_t* row_end = row + video_frame->visible_rect().width();
if (type == GL_FLOAT) {
float* out_row = reinterpret_cast<float*>(out_row_head);
if (format == GL_RGBA) {
while (row < row_end) {
float gray_value = *row++ / 65535.f;
*out_row++ = gray_value;
*out_row++ = gray_value;
*out_row++ = gray_value;
*out_row++ = 1.0f;
}
continue;
} else if (format == GL_RED) {
while (row < row_end)
*out_row++ = *row++ / 65535.f;
continue;
}
// For other formats, hit NOTREACHED below.
} else if (type == GL_UNSIGNED_BYTE) {
// We take the upper 8 bits of 16-bit data and convert it as luminance to
// ARGB. We loose the precision here, but it is important not to render
// Y16 as RG_88. To get the full precision use float textures with WebGL1
// and e.g. R16UI or R32F textures with WebGL2.
DCHECK_EQ(static_cast<unsigned>(GL_RGBA), format);
uint32_t* rgba = reinterpret_cast<uint32_t*>(out_row_head);
while (row < row_end) {
uint32_t gray_value = *row++ >> 8;
*rgba++ = SkColorSetRGB(gray_value, gray_value, gray_value);
}
continue;
}
NOTREACHED() << "Unsupported Y16 conversion for format: 0x" << std::hex
<< format << " and type: 0x" << std::hex << type;
}
}
// Common functionality of PaintCanvasVideoRenderer's TexImage2D and
// TexSubImage2D. Allocates a buffer required for conversion and converts
// |frame| content to desired |format|. Returns true if calling glTex(Sub)Image
// is supported for provided |frame| format and parameters.
bool TexImageHelper(VideoFrame* frame,
unsigned format,
unsigned type,
bool flip_y,
scoped_refptr<DataBuffer>* temp_buffer) {
unsigned output_bytes_per_pixel = 0;
switch (frame->format()) {
case PIXEL_FORMAT_Y16:
// Converting single component unsigned short here to FLOAT luminance.
switch (format) {
case GL_RGBA:
if (type == GL_FLOAT) {
output_bytes_per_pixel = 4 * sizeof(GLfloat);
break;
}
return false;
case GL_RED:
if (type == GL_FLOAT) {
output_bytes_per_pixel = sizeof(GLfloat);
break;
}
return false;
default:
return false;
}
break;
default:
return false;
}
size_t output_row_bytes =
frame->visible_rect().width() * output_bytes_per_pixel;
*temp_buffer =
new DataBuffer(output_row_bytes * frame->visible_rect().height());
FlipAndConvertY16(frame, (*temp_buffer)->writable_data().data(), format, type,
flip_y, output_row_bytes);
return true;
}
// Upload the |frame| data to temporary texture of |temp_format|,
// |temp_internalformat| and |temp_type| and then copy intermediate texture
// subimage to destination |texture|. The destination |texture| is bound to the
// |target| before the call.
void TextureSubImageUsingIntermediate(unsigned target,
unsigned texture,
gpu::gles2::GLES2Interface* gl,
VideoFrame* frame,
int temp_internalformat,
unsigned temp_format,
unsigned temp_type,
int level,
int xoffset,
int yoffset,
bool flip_y,
bool premultiply_alpha) {
unsigned temp_texture = 0;
gl->GenTextures(1, &temp_texture);
gl->BindTexture(target, temp_texture);
gl->TexParameteri(target, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
gl->TexParameteri(target, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
gl->TexImage2D(target, 0, temp_internalformat, frame->visible_rect().width(),
frame->visible_rect().height(), 0, temp_format, temp_type,
frame->visible_data(0));
gl->BindTexture(target, texture);
gl->CopySubTextureCHROMIUM(temp_texture, 0, target, texture, level, 0, 0,
xoffset, yoffset, frame->visible_rect().width(),
frame->visible_rect().height(), flip_y,
premultiply_alpha, false);
gl->DeleteTextures(1, &temp_texture);
}
} // anonymous namespace
// static
void PaintCanvasVideoRenderer::ConvertVideoFrameToRGBPixels(
const VideoFrame* video_frame,
void* rgb_pixels,
size_t row_bytes,
bool premultiply_alpha,
FilterMode filter,
bool disable_threading) {
if (!video_frame->IsMappable()) {
NOTREACHED() << "Cannot extract pixels from non-CPU frame formats.";
}
scoped_refptr<VideoFrame> temporary_frame;
// TODO(thomasanderson): Parallelize converting these formats.
switch (video_frame->format()) {
case PIXEL_FORMAT_YUV420P9:
case PIXEL_FORMAT_YUV422P9:
case PIXEL_FORMAT_YUV444P9:
case PIXEL_FORMAT_YUV422P12:
case PIXEL_FORMAT_YUV444P12:
temporary_frame = DownShiftHighbitVideoFrame(video_frame);
video_frame = temporary_frame.get();
break;
case PIXEL_FORMAT_YUV420P10:
case PIXEL_FORMAT_YUV420P12:
// In AV1, a monochrome (grayscale) frame is represented as a YUV 4:2:0
// frame with no U and V planes. Since there are no 10-bit and 12-bit
// versions of libyuv::I400ToARGBMatrix(), convert the frame to an 8-bit
// YUV 4:2:0 frame with U and V planes.
if (!video_frame->data(VideoFrame::Plane::kU) &&
!video_frame->data(VideoFrame::Plane::kV)) {
temporary_frame = DownShiftHighbitVideoFrame(video_frame);
video_frame = temporary_frame.get();
}
break;
case PIXEL_FORMAT_Y16:
// Since it is grayscale conversion, we disregard
// SK_PMCOLOR_BYTE_ORDER and always use GL_RGBA.
FlipAndConvertY16(video_frame, static_cast<uint8_t*>(rgb_pixels), GL_RGBA,
GL_UNSIGNED_BYTE, false /*flip_y*/, row_bytes);
return;
default:
break;
}
const size_t n_tasks =
disable_threading ? 1 : NumConvertVideoFrameToRGBPixelsTasks(video_frame);
base::WaitableEvent event;
base::RepeatingClosure barrier = base::BarrierClosure(
n_tasks,
base::BindOnce(&base::WaitableEvent::Signal, base::Unretained(&event)));
const libyuv::FilterMode libyuv_filter = ToLibyuvFilterMode(filter);
for (size_t i = 1; i < n_tasks; ++i) {
base::ThreadPool::PostTask(
FROM_HERE,
base::BindOnce(ConvertVideoFrameToRGBPixelsTask,
base::Unretained(video_frame), rgb_pixels, row_bytes,
premultiply_alpha, libyuv_filter, i, n_tasks, &barrier));
}
ConvertVideoFrameToRGBPixelsTask(video_frame, rgb_pixels, row_bytes,
premultiply_alpha, libyuv_filter, 0, n_tasks,
&barrier);
{
base::ScopedAllowBaseSyncPrimitivesOutsideBlockingScope allow_wait;
event.Wait();
}
}
// static
viz::SharedImageFormat PaintCanvasVideoRenderer::GetRGBPixelsOutputFormat() {
return SHARED_IMAGE_FORMAT;
}
bool PaintCanvasVideoRenderer::CopyVideoFrameTexturesToGLTexture(
viz::RasterContextProvider* raster_context_provider,
gpu::gles2::GLES2Interface* destination_gl,
scoped_refptr<VideoFrame> video_frame,
unsigned int target,
unsigned int texture,
unsigned int internal_format,
unsigned int format,
unsigned int type,
int level,
bool premultiply_alpha,
bool flip_y) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(video_frame);
CHECK(video_frame->HasSharedImage());
CHECK(destination_gl);
const auto shared_image = video_frame->shared_image();
const auto si_format = shared_image->format();
const bool si_format_has_single_texture =
si_format.is_single_plane() || si_format.PrefersExternalSampler();
const bool si_usable_by_gles2_interface =
shared_image->GetTextureTarget() != 0;
// Copying shared image using GL directly require shared image to be either
// single plane or external sampler, and should be usable by GL.
if (si_format_has_single_texture && si_usable_by_gles2_interface) {
// Correct Y-flip. flip_y should take precedent when
// texture_origin_is_top_left is true, and invert the setting when
// texture_origin_is_top_left is false.
if (shared_image->surface_origin() != kTopLeft_GrSurfaceOrigin) {
flip_y = !flip_y;
}
CopySharedImageToTexture(
destination_gl, video_frame->coded_size(), video_frame->visible_rect(),
shared_image.get(), video_frame->acquire_sync_token(), target, texture,
internal_format, format, type, level, premultiply_alpha, flip_y);
destination_gl->ShallowFlushCHROMIUM();
SynchronizeVideoFrameRead(std::move(video_frame), destination_gl,
raster_context_provider->ContextSupport());
return true;
}
// It is not possible to support one-copy upload of pure software
// VideoFrames via MultiplanarSharedImage: these VideoFrames have format
// I420, and it is not possible across all platforms to upload the
// VideoFrame's data via raster to a MultiplanarSI with format I420 that is
// accessible by WebGL. Such an SI must be backed by a native buffer to be
// accessible to WebGL, and native buffer-backed I420 SharedImages are in
// general not supported (and *cannot* be supported on Windows). NOTE:
// Whether 1 GPU-GPU copy or 2 GPU-GPU copies are performed for pure video
// software upload should not be a significant factor in performance, as the
// dominant factor in terms of performance will be the fact that the
// VideoFrame's data needs to be uploaded from the CPU to the GPU.
if (SupportsOneCopyUploadToGLTexture(
video_frame->format(), shared_image->GetTextureTarget(), target,
internal_format, type, level, premultiply_alpha)) {
// Trigger resource allocation for dst texture to back SkSurface.
// Dst texture size should equal to video frame visible rect.
BindAndTexImage2D(destination_gl, target, texture, internal_format, format,
type, /*level=*/0, video_frame->visible_rect().size());
destination_gl->WaitSyncTokenCHROMIUM(
video_frame->acquire_sync_token().GetConstData());
// Copy shared image to gl texture for hardware video decode with
// multiplanar shared image formats.
destination_gl->CopySharedImageToTextureINTERNAL(
texture, target, internal_format, type, video_frame->visible_rect().x(),
video_frame->visible_rect().y(), video_frame->visible_rect().width(),
video_frame->visible_rect().height(), flip_y,
shared_image->mailbox().name);
SynchronizeVideoFrameRead(std::move(video_frame), destination_gl,
raster_context_provider->ContextSupport());
return true;
}
DCHECK_EQ(shared_image->surface_origin(), kTopLeft_GrSurfaceOrigin);
if (!raster_context_provider) {
return false;
}
GrDirectContext* gr_context = raster_context_provider->GrContext();
if (!gr_context &&
!raster_context_provider->ContextCapabilities().gpu_rasterization) {
return false;
}
// Take the two-copy path.
if (!UpdateLastImage(video_frame, raster_context_provider)) {
return false;
}
DCHECK(cache_);
DCHECK(cache_->texture_backing);
gpu::raster::RasterInterface* canvas_ri =
raster_context_provider->RasterInterface();
gpu::SyncToken sync_token;
// Wait for mailbox creation on canvas context before consuming it and
// copying from it on the consumer context.
canvas_ri->GenUnverifiedSyncTokenCHROMIUM(sync_token.GetData());
gpu::SyncToken dest_sync_token = CopySharedImageToTexture(
destination_gl, cache_->coded_size, cache_->visible_rect,
cache_->texture_backing->GetSharedImage().get(), sync_token, target,
texture, internal_format, format, type, level, premultiply_alpha, flip_y);
// Wait for destination context to consume mailbox before deleting it in
// canvas context.
canvas_ri->WaitSyncTokenCHROMIUM(dest_sync_token.GetConstData());
// We do not need to synchronize video frame read here since it's already
// taken care of in UpdateLastImage().
return true;
}
bool PaintCanvasVideoRenderer::CopyVideoFrameYUVDataToGLTexture(
viz::RasterContextProvider* raster_context_provider,
gpu::gles2::GLES2Interface* destination_gl,
scoped_refptr<VideoFrame> video_frame,
unsigned int target,
unsigned int texture,
unsigned int internal_format,
unsigned int format,
unsigned int type,
int level,
bool premultiply_alpha,
bool flip_y) {
if (!raster_context_provider)
return false;
#if BUILDFLAG(IS_ANDROID)
// TODO(crbug.com/40751207): These formats don't work with the passthrough
// command decoder on Android for some reason.
const auto format_enum = static_cast<GLenum>(internal_format);
if (format_enum == GL_RGB10_A2 || format_enum == GL_RGB565 ||
format_enum == GL_RGB5_A1 || format_enum == GL_RGBA4) {
return false;
}
#endif
if (!video_frame->IsMappable()) {
return false;
}
if (!internals::IsPixelFormatSupportedForYuvSharedImageConversion(
video_frame->format())) {
return false;
}
// Could handle NV12 here as well. See NewSkImageFromVideoFrameYUV.
CHECK(!video_frame->HasSharedImage());
auto* sii = raster_context_provider->SharedImageInterface();
gpu::raster::RasterInterface* source_ri =
raster_context_provider->RasterInterface();
// We need a shared image to receive the intermediate RGB result. Try to reuse
// one if compatible, otherwise create a new one.
gpu::SyncToken token;
if (yuv_cache_.rgb_shared_image &&
yuv_cache_.size == video_frame->coded_size() &&
yuv_cache_.raster_context_provider == raster_context_provider) {
token = yuv_cache_.sync_token;
} else {
yuv_cache_.Reset();
yuv_cache_.raster_context_provider = raster_context_provider;
yuv_cache_.size = video_frame->coded_size();
// We copy the contents of the source VideoFrame into the intermediate SI
// over the raster interface and read out the contents of the intermediate
// SI into the destination GL texture via the GLES2 interface.
gpu::SharedImageUsageSet usage = gpu::SHARED_IMAGE_USAGE_RASTER_WRITE |
gpu::SHARED_IMAGE_USAGE_GLES2_READ;
if (raster_context_provider->ContextCapabilities().gpu_rasterization) {
usage |= gpu::SHARED_IMAGE_USAGE_OOP_RASTERIZATION;
} else {
usage |= gpu::SHARED_IMAGE_USAGE_GLES2_WRITE;
}
yuv_cache_.rgb_shared_image = sii->CreateSharedImage(
{SHARED_IMAGE_FORMAT, video_frame->coded_size(),
video_frame->CompatRGBColorSpace(), usage, "PaintCanvasVideoRenderer"},
gpu::kNullSurfaceHandle);
CHECK(yuv_cache_.rgb_shared_image);
token = sii->GenUnverifiedSyncToken();
}
// On the source Raster context, do the YUV->RGB conversion.
gpu::MailboxHolder dest_holder;
dest_holder.mailbox = yuv_cache_.rgb_shared_image->mailbox();
dest_holder.texture_target = GL_TEXTURE_2D;
dest_holder.sync_token = token;
internals::ConvertYuvVideoFrameToRgbSharedImage(
video_frame.get(), raster_context_provider, dest_holder,
/*use_visible_rect=*/false, yuv_cache_.yuv_shared_image.get());
gpu::SyncToken post_conversion_sync_token;
source_ri->GenUnverifiedSyncTokenCHROMIUM(
post_conversion_sync_token.GetData());
// On the destination GL context, do a copy (with cropping) into the
// destination texture.
yuv_cache_.sync_token = CopySharedImageToTexture(
destination_gl, video_frame->coded_size(), video_frame->visible_rect(),
yuv_cache_.rgb_shared_image.get(), post_conversion_sync_token, target,
texture, internal_format, format, type, level, premultiply_alpha, flip_y);
// video_frame->UpdateReleaseSyncToken is not necessary since the video frame
// data we used was CPU-side (IsMappable) to begin with. If there were any
// textures, we didn't use them.
// The temporary SkImages should be automatically cleaned up here.
// Kick off a timer to release the cache.
cache_deleting_timer_.Reset();
return true;
}
bool PaintCanvasVideoRenderer::TexImage2D(
unsigned target,
unsigned texture,
gpu::gles2::GLES2Interface* gl,
const gpu::Capabilities& gpu_capabilities,
VideoFrame* frame,
int level,
int internalformat,
unsigned format,
unsigned type,
bool flip_y,
bool premultiply_alpha) {
DCHECK(frame);
DCHECK(!frame->HasSharedImage());
GLint precision = 0;
GLint range[2] = {0, 0};
gl->GetShaderPrecisionFormat(GL_FRAGMENT_SHADER, GL_MEDIUM_FLOAT, range,
&precision);
// Note: CopyTextureCHROMIUM uses mediump for color computation. Don't use
// it if the precision would lead to data loss when converting 16-bit
// normalized to float. medium_float.precision > 15 means that the approach
// below is not used on Android, where the extension EXT_texture_norm16 is
// not widely supported. It is used on Windows, Linux and OSX.
// Android support is not required for now because Tango depth camera already
// provides floating point data (projected point cloud). See crbug.com/674440.
if (gpu_capabilities.texture_norm16 && precision > 15 &&
target == GL_TEXTURE_2D &&
(type == GL_FLOAT || type == GL_UNSIGNED_BYTE)) {
// TODO(aleksandar.stojiljkovic): Extend the approach to TexSubImage2D
// implementation and other types. See https://crbug.com/624436.
// Allocate the destination texture.
gl->TexImage2D(target, level, internalformat, frame->visible_rect().width(),
frame->visible_rect().height(), 0, format, type, nullptr);
// We use sized internal format GL_R16_EXT instead of unsized GL_RED.
// See angleproject:1952
TextureSubImageUsingIntermediate(target, texture, gl, frame, GL_R16_EXT,
GL_RED, GL_UNSIGNED_SHORT, level, 0, 0,
flip_y, premultiply_alpha);
return true;
}
scoped_refptr<DataBuffer> temp_buffer;
if (!TexImageHelper(frame, format, type, flip_y, &temp_buffer))
return false;
gl->TexImage2D(target, level, internalformat, frame->visible_rect().width(),
frame->visible_rect().height(), 0, format, type,
temp_buffer->data().data());
return true;
}
bool PaintCanvasVideoRenderer::TexSubImage2D(unsigned target,
gpu::gles2::GLES2Interface* gl,
VideoFrame* frame,
int level,
unsigned format,
unsigned type,
int xoffset,
int yoffset,
bool flip_y,
bool premultiply_alpha) {
DCHECK(frame);
DCHECK(!frame->HasSharedImage());
scoped_refptr<DataBuffer> temp_buffer;
if (!TexImageHelper(frame, format, type, flip_y, &temp_buffer))
return false;
gl->TexSubImage2D(
target, level, xoffset, yoffset, frame->visible_rect().width(),
frame->visible_rect().height(), format, type, temp_buffer->data().data());
return true;
}
void PaintCanvasVideoRenderer::ResetCache() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
cache_.reset();
yuv_cache_.Reset();
}
PaintCanvasVideoRenderer::Cache::Cache(VideoFrame::ID frame_id)
: frame_id(frame_id) {}
PaintCanvasVideoRenderer::Cache::~Cache() = default;
bool PaintCanvasVideoRenderer::Cache::Recycle() {
paint_image = cc::PaintImage();
if (!texture_backing->unique())
return false;
// Flush any pending GPU work using this texture.
texture_backing->FlushPendingSkiaOps();
return true;
}
bool PaintCanvasVideoRenderer::UpdateLastImage(
scoped_refptr<VideoFrame> video_frame,
viz::RasterContextProvider* raster_context_provider) {
// Check for a cache hit.
if (cache_ && video_frame->unique_id() == cache_->frame_id &&
cache_->paint_image) {
cache_deleting_timer_.Reset();
return true;
}
auto paint_image_builder =
cc::PaintImageBuilder::WithDefault()
.set_id(renderer_stable_id_)
.set_animation_type(cc::PaintImage::AnimationType::kVideo)
.set_completion_state(cc::PaintImage::CompletionState::kDone);
// Generate a new image.
// Note: Skia will hold onto |video_frame| via |video_generator| only when
// |video_frame| is software.
// Holding |video_frame| longer than this call when using GPUVideoDecoder
// could cause problems since the pool of VideoFrames has a fixed size.
if (video_frame->HasSharedImage()) {
DCHECK(raster_context_provider);
bool gpu_rasterization =
raster_context_provider->ContextCapabilities().gpu_rasterization;
DCHECK(gpu_rasterization || raster_context_provider->GrContext());
auto* ri = raster_context_provider->RasterInterface();
DCHECK(ri);
const auto video_frame_si = video_frame->shared_image();
scoped_refptr<gpu::ClientSharedImage> client_shared_image;
// Create or reuse a texture backing for the cached copy.
if (cache_ && cache_->texture_backing &&
cache_->texture_backing->raster_context_provider() ==
raster_context_provider &&
cache_->coded_size == video_frame->coded_size() && cache_->Recycle()) {
// We can reuse the shared image from the previous cache.
cache_->frame_id = video_frame->unique_id();
client_shared_image = cache_->texture_backing->GetSharedImage();
// NOTE: It is necessary to let go of read access to the cached copy
// here because the below copy operation takes readwrite access to that
// cached copy, and requesting RW access while already holding R access
// on a single service-side texture causes a DCHECK to fire.
cache_->texture_backing->clear_access();
} else {
cache_.emplace(video_frame->unique_id());
auto* sii = raster_context_provider->SharedImageInterface();
// This SI is used to cache the VideoFrame. We will eventually read out
// its contents into a destination GL texture via the GLES2 interface.
gpu::SharedImageUsageSet flags = gpu::SHARED_IMAGE_USAGE_GLES2_READ;
// We copy the contents of the source VideoFrame *into* the
// cached SI over the raster interface - the usage bits depend on
// whether OOP-Raster is enabled.
flags |= gpu::SHARED_IMAGE_USAGE_RASTER_WRITE;
if (gpu_rasterization) {
flags |= gpu::SHARED_IMAGE_USAGE_OOP_RASTERIZATION;
} else {
flags |= gpu::SHARED_IMAGE_USAGE_GLES2_WRITE;
}
client_shared_image = sii->CreateSharedImage(
{SHARED_IMAGE_FORMAT, video_frame->coded_size(),
video_frame->CompatRGBColorSpace(), flags,
"PaintCanvasVideoRenderer"},
gpu::kNullSurfaceHandle);
CHECK(client_shared_image);
ri->WaitSyncTokenCHROMIUM(sii->GenUnverifiedSyncToken().GetConstData());
}
// Copy into the shared image backing of the cached copy.
ri->WaitSyncTokenCHROMIUM(video_frame->acquire_sync_token().GetConstData());
ri->CopySharedImage(
video_frame_si->mailbox(), client_shared_image->mailbox(), 0, 0, 0, 0,
video_frame->coded_size().width(), video_frame->coded_size().height());
if (!gpu_rasterization) {
raster_context_provider->GrContext()->flushAndSubmit();
}
// Ensure that |video_frame| not be deleted until the above copy is
// completed.
SynchronizeVideoFrameRead(video_frame, ri,
raster_context_provider->ContextSupport());
cache_->coded_size = video_frame->coded_size();
cache_->visible_rect = video_frame->visible_rect();
// In OOPR mode, we can keep the entire TextureBacking. In non-OOPR,
// we can recycle the mailbox/texture, but have to replace the SkImage.
if (!gpu_rasterization) {
cache_->source_texture =
ri->CreateAndConsumeForGpuRaster(client_shared_image->mailbox());
auto access =
std::make_unique<ScopedSharedImageAccess>(ri, cache_->source_texture);
auto source_image =
WrapGLTexture(cache_->source_texture, video_frame->coded_size(),
raster_context_provider);
if (!source_image) {
// Couldn't create the SkImage.
cache_.reset();
return false;
}
if (!cache_->texture_backing) {
cache_->texture_backing = sk_make_sp<VideoTextureBacking>(
std::move(source_image), std::move(client_shared_image),
raster_context_provider, std::move(access));
} else {
cache_->texture_backing->ReplaceAcceleratedSkImage(
std::move(source_image), std::move(access));
}
} else if (!cache_->texture_backing) {
SkImageInfo sk_image_info = SkImageInfo::Make(
gfx::SizeToSkISize(cache_->coded_size), kRGBA_8888_SkColorType,
kPremul_SkAlphaType,
video_frame->CompatRGBColorSpace().ToSkColorSpace());
cache_->texture_backing = sk_make_sp<VideoTextureBacking>(
std::move(client_shared_image), sk_image_info,
raster_context_provider);
}
paint_image_builder.set_texture_backing(cache_->texture_backing,
cc::PaintImage::GetNextContentId());
} else {
cache_.emplace(video_frame->unique_id());
paint_image_builder.set_paint_image_generator(
sk_make_sp<VideoImageGenerator>(video_frame));
}
cache_->paint_image = paint_image_builder.TakePaintImage();
if (!cache_->paint_image) {
// Couldn't create the PaintImage.
cache_.reset();
return false;
}
cache_deleting_timer_.Reset();
return true;
}
bool PaintCanvasVideoRenderer::CanUseCopyVideoFrameToSharedImage(
const VideoFrame& video_frame) {
return video_frame.HasSharedImage() ||
internals::IsPixelFormatSupportedForYuvSharedImageConversion(
video_frame.format());
}
gpu::SyncToken PaintCanvasVideoRenderer::CopyVideoFrameToSharedImage(
viz::RasterContextProvider* raster_context_provider,
scoped_refptr<VideoFrame> video_frame,
const gpu::MailboxHolder& destination,
bool use_visible_rect) {
auto* ri = raster_context_provider->RasterInterface();
// If we have single source shared image, just use CopySharedImage().
if (video_frame->HasSharedImage()) {
auto source_rect = use_visible_rect ? video_frame->visible_rect()
: gfx::Rect(video_frame->coded_size());
ri->WaitSyncTokenCHROMIUM(video_frame->acquire_sync_token().GetConstData());
ri->WaitSyncTokenCHROMIUM(destination.sync_token.GetConstData());
ri->CopySharedImage(video_frame->shared_image()->mailbox(),
destination.mailbox, 0, 0, source_rect.x(),
source_rect.y(), source_rect.width(),
source_rect.height());
} else {
// TODO(vasilyt): Add caching support
internals::ConvertYuvVideoFrameToRgbSharedImage(
video_frame.get(), raster_context_provider, destination,
use_visible_rect,
/*shared_image_cache=*/nullptr);
}
gpu::SyncToken sync_token;
ri->GenUnverifiedSyncTokenCHROMIUM(sync_token.GetData());
// If VideoFrame has textures, we need to update SyncToken or to keep frame
// alive until gpu is done with copy if `read_lock_fences_enabled` is set.
// This is to make sure decoder doesn't re-use frame before copy is done.
if (video_frame->HasSharedImage()) {
SynchronizeVideoFrameRead(std::move(video_frame), ri,
raster_context_provider->ContextSupport());
}
return sync_token;
}
PaintCanvasVideoRenderer::YUVTextureCache::YUVTextureCache()
: yuv_shared_image(std::make_unique<VideoFrameSharedImageCache>()) {}
PaintCanvasVideoRenderer::YUVTextureCache::~YUVTextureCache() {
Reset();
}
void PaintCanvasVideoRenderer::YUVTextureCache::Reset() {
if (!rgb_shared_image) {
return;
}
DCHECK(raster_context_provider);
gpu::raster::RasterInterface* ri = raster_context_provider->RasterInterface();
ri->WaitSyncTokenCHROMIUM(sync_token.GetConstData());
ri->OrderingBarrierCHROMIUM();
auto* sii = raster_context_provider->SharedImageInterface();
sii->DestroySharedImage(sync_token, std::move(rgb_shared_image));
yuv_shared_image.reset();
// Kick off the GL work up to the OrderingBarrierCHROMIUM above as well as the
// SharedImageInterface work, to ensure the shared image memory is released in
// a timely fashion.
raster_context_provider->ContextSupport()->FlushPendingWork();
raster_context_provider.reset();
}
gfx::Size PaintCanvasVideoRenderer::LastImageDimensionsForTesting() {
DCHECK(cache_);
DCHECK(cache_->paint_image);
return gfx::Size(cache_->paint_image.width(), cache_->paint_image.height());
}
} // namespace media