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
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/modules/mediasource/media_source.h"
#include <memory>
#include <tuple>
#include "base/feature_list.h"
#include "base/memory/ptr_util.h"
#include "base/memory/scoped_refptr.h"
#include "base/metrics/histogram_functions.h"
#include "base/strings/to_string.h"
#include "media/base/audio_decoder_config.h"
#include "media/base/logging_override_if_enabled.h"
#include "media/base/media_switches.h"
#include "media/base/media_types.h"
#include "media/base/mime_util.h"
#include "media/base/supported_types.h"
#include "media/base/video_decoder_config.h"
#include "media/media_buildflags.h"
#include "third_party/blink/public/common/privacy_budget/identifiability_metric_builder.h"
#include "third_party/blink/public/common/privacy_budget/identifiability_study_settings.h"
#include "third_party/blink/public/common/privacy_budget/identifiable_surface.h"
#include "third_party/blink/public/platform/web_media_source.h"
#include "third_party/blink/public/platform/web_source_buffer.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_audio_decoder_config.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_end_of_stream_error.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_source_buffer_config.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_video_decoder_config.h"
#include "third_party/blink/renderer/core/dom/events/event.h"
#include "third_party/blink/renderer/core/dom/events/event_queue.h"
#include "third_party/blink/renderer/core/frame/deprecation/deprecation.h"
#include "third_party/blink/renderer/core/html/media/html_media_element.h"
#include "third_party/blink/renderer/core/html/track/audio_track_list.h"
#include "third_party/blink/renderer/core/html/track/video_track_list.h"
#include "third_party/blink/renderer/modules/mediasource/attachment_creation_pass_key_provider.h"
#include "third_party/blink/renderer/modules/mediasource/cross_thread_media_source_attachment.h"
#include "third_party/blink/renderer/modules/mediasource/handle_attachment_provider.h"
#include "third_party/blink/renderer/modules/mediasource/media_source_handle_impl.h"
#include "third_party/blink/renderer/modules/mediasource/same_thread_media_source_attachment.h"
#include "third_party/blink/renderer/modules/mediasource/same_thread_media_source_tracer.h"
#include "third_party/blink/renderer/modules/mediasource/source_buffer_track_base_supplement.h"
#include "third_party/blink/renderer/modules/webcodecs/audio_decoder.h"
#include "third_party/blink/renderer/modules/webcodecs/video_decoder.h"
#include "third_party/blink/renderer/platform/bindings/exception_messages.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/blob/blob_url.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/heap/persistent.h"
#include "third_party/blink/renderer/platform/instrumentation/tracing/trace_event.h"
#include "third_party/blink/renderer/platform/instrumentation/use_counter.h"
#include "third_party/blink/renderer/platform/network/mime/content_type.h"
#include "third_party/blink/renderer/platform/network/mime/mime_type_registry.h"
#include "third_party/blink/renderer/platform/privacy_budget/identifiability_digest_helpers.h"
#include "third_party/blink/renderer/platform/runtime_enabled_features.h"
#include "third_party/blink/renderer/platform/wtf/functional.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
using blink::WebMediaSource;
using blink::WebSourceBuffer;
namespace blink {
namespace {
#if BUILDFLAG(ENABLE_MSE_MPEG2TS_STREAM_PARSER)
bool IsMp2tCodecSupported(std::string_view codec_id) {
if (auto result =
media::ParseVideoCodecString("", codec_id,
/*allow_ambiguous_matches=*/false)) {
if (result->codec != media::VideoCodec::kH264) {
return false;
}
return true;
}
auto audio_codec = media::AudioCodec::kUnknown;
bool is_codec_ambiguous = false;
if (media::ParseAudioCodecString("", codec_id, &is_codec_ambiguous,
&audio_codec)) {
if (is_codec_ambiguous) {
return false;
}
if (audio_codec != media::AudioCodec::kAAC &&
audio_codec != media::AudioCodec::kMP3) {
return false;
}
return true;
}
return false;
}
#endif // BUILDFLAG(ENABLE_MSE_MPEG2TS_STREAM_PARSER)
} // namespace
static AtomicString ReadyStateToString(MediaSource::ReadyState state) {
AtomicString result;
switch (state) {
case MediaSource::ReadyState::kOpen:
result = AtomicString("open");
break;
case MediaSource::ReadyState::kClosed:
result = AtomicString("closed");
break;
case MediaSource::ReadyState::kEnded:
result = AtomicString("ended");
break;
}
return result;
}
static bool ThrowExceptionIfClosed(bool is_open,
ExceptionState& exception_state) {
if (!is_open) {
MediaSource::LogAndThrowDOMException(
exception_state, DOMExceptionCode::kInvalidStateError,
"The MediaSource's readyState is not 'open'.");
return true;
}
return false;
}
static bool ThrowExceptionIfClosedOrUpdating(bool is_open,
bool is_updating,
ExceptionState& exception_state) {
if (ThrowExceptionIfClosed(is_open, exception_state))
return true;
if (is_updating) {
MediaSource::LogAndThrowDOMException(
exception_state, DOMExceptionCode::kInvalidStateError,
"The 'updating' attribute is true on one or more of this MediaSource's "
"SourceBuffers.");
return true;
}
return false;
}
MediaSource* MediaSource::Create(ExecutionContext* context) {
return MakeGarbageCollected<MediaSource>(context);
}
MediaSource::MediaSource(ExecutionContext* context)
: ActiveScriptWrappable<MediaSource>({}),
ExecutionContextLifecycleObserver(context),
ready_state_(ReadyState::kClosed),
async_event_queue_(
MakeGarbageCollected<EventQueue>(GetExecutionContext(),
TaskType::kMediaElementEvent)),
context_already_destroyed_(false),
source_buffers_(
MakeGarbageCollected<SourceBufferList>(GetExecutionContext(),
async_event_queue_.Get())),
active_source_buffers_(
MakeGarbageCollected<SourceBufferList>(GetExecutionContext(),
async_event_queue_.Get())),
has_live_seekable_range_(false),
live_seekable_range_start_(0.0),
live_seekable_range_end_(0.0) {
DVLOG(1) << __func__ << " this=" << this;
if (!IsMainThread()) {
DCHECK(GetExecutionContext()->IsDedicatedWorkerGlobalScope());
}
}
MediaSource::~MediaSource() {
DVLOG(1) << __func__ << " this=" << this;
}
void MediaSource::LogAndThrowDOMException(ExceptionState& exception_state,
DOMExceptionCode error,
const String& message) {
DVLOG(1) << __func__ << " (error=" << ToExceptionCode(error)
<< ", message=" << message << ")";
exception_state.ThrowDOMException(error, message);
}
void MediaSource::LogAndThrowQuotaExceededError(ExceptionState& exception_state,
const String& message) {
DVLOG(1) << __func__ << " (message=" << message << ")";
QuotaExceededError::Throw(exception_state, message);
}
void MediaSource::LogAndThrowTypeError(ExceptionState& exception_state,
const String& message) {
DVLOG(1) << __func__ << " (message=" << message << ")";
exception_state.ThrowTypeError(message);
}
SourceBuffer* MediaSource::addSourceBuffer(const String& type,
ExceptionState& exception_state) {
DVLOG(2) << __func__ << " this=" << this << " type=" << type;
// 2.2
// https://www.w3.org/TR/media-source/#dom-mediasource-addsourcebuffer
// 1. If type is an empty string then throw a TypeError exception
// and abort these steps.
if (type.empty()) {
LogAndThrowTypeError(exception_state, "The type provided is empty");
return nullptr;
}
// 2. If type contains a MIME type that is not supported ..., then throw a
// NotSupportedError exception and abort these steps.
// TODO(crbug.com/535738): Actually relax codec-specificity.
if (!IsTypeSupportedInternal(
GetExecutionContext(), type,
false /* Allow underspecified codecs in |type| */)) {
LogAndThrowDOMException(
exception_state, DOMExceptionCode::kNotSupportedError,
"The type provided ('" + type + "') is unsupported.");
return nullptr;
}
// 4. If the readyState attribute is not in the "open" state then throw an
// InvalidStateError exception and abort these steps.
if (!IsOpen()) {
LogAndThrowDOMException(exception_state,
DOMExceptionCode::kInvalidStateError,
"The MediaSource's readyState is not 'open'.");
return nullptr;
}
// Do remainder of steps only if attachment is usable and underlying demuxer
// is protected from destruction (applicable especially for MSE-in-Worker
// case).
SourceBuffer* source_buffer = nullptr;
// Note, here we must be open, therefore we must have an attachment.
if (!RunUnlessElementGoneOrClosingUs(WTF::BindOnce(
&MediaSource::AddSourceBuffer_Locked, WrapPersistent(this), type,
nullptr /* audio_config */, nullptr /* video_config */,
WTF::Unretained(&exception_state),
WTF::Unretained(&source_buffer)))) {
// TODO(https://crbug.com/878133): Determine in specification what the
// specific, app-visible, exception should be for this case.
LogAndThrowDOMException(exception_state,
DOMExceptionCode::kInvalidStateError,
"Worker MediaSource attachment is closing");
}
return source_buffer;
}
SourceBuffer* MediaSource::AddSourceBufferUsingConfig(
ExecutionContext* execution_context,
const SourceBufferConfig* config,
ExceptionState& exception_state) {
DVLOG(2) << __func__ << " this=" << this;
UseCounter::Count(execution_context,
WebFeature::kMediaSourceExtensionsForWebCodecs);
DCHECK(config);
// Precisely one of the multiple keys in SourceBufferConfig must be set.
int num_set = 0;
if (config->hasAudioConfig())
num_set++;
if (config->hasVideoConfig())
num_set++;
if (num_set != 1) {
LogAndThrowTypeError(
exception_state,
"SourceBufferConfig must have precisely one media type");
return nullptr;
}
// Determine if the config is valid and supported by creating the necessary
// media decoder configs using WebCodecs converters. This implies that codecs
// supported by WebCodecs are also supported by MSE, though MSE may require
// more precise information in the encoded chunks (such as video chunk
// duration).
// TODO(crbug.com/1144908): WebCodecs' determination of decoder configuration
// support may be changed to be async and thus might also motivate making this
// method async.
std::unique_ptr<media::AudioDecoderConfig> audio_config;
std::unique_ptr<media::VideoDecoderConfig> video_config;
String console_message;
if (config->hasAudioConfig()) {
if (!AudioDecoder::IsValidAudioDecoderConfig(*(config->audioConfig()),
&console_message /* out */)) {
LogAndThrowTypeError(exception_state, console_message);
return nullptr;
}
std::optional<media::AudioDecoderConfig> out_audio_config =
AudioDecoder::MakeMediaAudioDecoderConfig(*(config->audioConfig()),
&console_message /* out */);
if (out_audio_config) {
audio_config =
std::make_unique<media::AudioDecoderConfig>(*out_audio_config);
} else {
LogAndThrowDOMException(exception_state,
DOMExceptionCode::kNotSupportedError,
console_message);
return nullptr;
}
} else {
DCHECK(config->hasVideoConfig());
if (!VideoDecoder::IsValidVideoDecoderConfig(*(config->videoConfig()),
&console_message /* out */)) {
LogAndThrowTypeError(exception_state, console_message);
return nullptr;
}
bool converter_needed = false;
std::optional<media::VideoDecoderConfig> out_video_config =
VideoDecoder::MakeMediaVideoDecoderConfig(*(config->videoConfig()),
&console_message /* out */,
&converter_needed /* out */);
#if BUILDFLAG(USE_PROPRIETARY_CODECS)
// TODO(crbug.com/1144908): Initial prototype does not support h264
// buffering. See above.
if (out_video_config && converter_needed) {
out_video_config = std::nullopt;
console_message =
"H.264/H.265 EncodedVideoChunk buffering is not yet supported in "
"MSE.See https://crbug.com/1144908.";
}
#endif // BUILDFLAG(USE_PROPRIETARY_CODECS)
if (out_video_config) {
video_config =
std::make_unique<media::VideoDecoderConfig>(*out_video_config);
} else {
LogAndThrowDOMException(exception_state,
DOMExceptionCode::kNotSupportedError,
console_message);
return nullptr;
}
}
// If the readyState attribute is not in the "open" state then throw an
// InvalidStateError exception and abort these steps.
if (!IsOpen()) {
LogAndThrowDOMException(exception_state,
DOMExceptionCode::kInvalidStateError,
"The MediaSource's readyState is not 'open'.");
return nullptr;
}
// Do remainder of steps only if attachment is usable and underlying demuxer
// is protected from destruction (applicable especially for MSE-in-Worker
// case).
SourceBuffer* source_buffer = nullptr;
String null_type;
// Note, here we must be open, therefore we must have an attachment.
if (!RunUnlessElementGoneOrClosingUs(WTF::BindOnce(
&MediaSource::AddSourceBuffer_Locked, WrapPersistent(this), null_type,
std::move(audio_config), std::move(video_config),
WTF::Unretained(&exception_state),
WTF::Unretained(&source_buffer)))) {
// TODO(https://crbug.com/878133): Determine in specification what the
// specific, app-visible, exception should be for this case.
LogAndThrowDOMException(exception_state,
DOMExceptionCode::kInvalidStateError,
"Worker MediaSource attachment is closing");
}
return source_buffer;
}
void MediaSource::AddSourceBuffer_Locked(
const String& type,
std::unique_ptr<media::AudioDecoderConfig> audio_config,
std::unique_ptr<media::VideoDecoderConfig> video_config,
ExceptionState* exception_state,
SourceBuffer** created_buffer,
MediaSourceAttachmentSupplement::ExclusiveKey pass_key) {
AssertAttachmentsMutexHeldIfCrossThreadForDebugging();
// 5. Create a new SourceBuffer object and associated resources.
// TODO(crbug.com/1144908): Plumb the configs through into a new logic in
// WebSourceBuffer and SourceBufferState such that configs and encoded chunks
// can be buffered, with appropriate invocations of the
// InitializationSegmentReceived and AppendError methods.
ContentType content_type(type);
String codecs = content_type.Parameter("codecs");
std::unique_ptr<WebSourceBuffer> web_source_buffer = CreateWebSourceBuffer(
content_type.GetType(), codecs, std::move(audio_config),
std::move(video_config), *exception_state);
if (!web_source_buffer) {
// 2. If type contains a MIME type that is not supported ..., then throw a
// NotSupportedError exception and abort these steps.
// 3. If the user agent can't handle any more SourceBuffer objects then
// throw a QuotaExceededError exception and abort these steps
*created_buffer = nullptr;
return;
}
bool generate_timestamps_flag =
web_source_buffer->GetGenerateTimestampsFlag();
auto* buffer = MakeGarbageCollected<SourceBuffer>(
std::move(web_source_buffer), this, async_event_queue_.Get());
// 8. Add the new object to sourceBuffers and queue a simple task to fire a
// simple event named addsourcebuffer at sourceBuffers.
source_buffers_->Add(buffer);
// Steps 6 and 7 (Set the SourceBuffer's mode attribute based on the byte
// stream format's generate timestamps flag). We do this after adding to
// sourceBuffers (step 8) to enable direct reuse of the SetMode_Locked() logic
// here, which depends on |buffer| being in |source_buffers_| in our
// implementation.
if (generate_timestamps_flag) {
buffer->SetMode_Locked(V8AppendMode::Enum::kSequence, exception_state,
pass_key);
} else {
buffer->SetMode_Locked(V8AppendMode::Enum::kSegments, exception_state,
pass_key);
}
// 9. Return the new object to the caller.
DVLOG(3) << __func__ << " this=" << this << " type=" << type << " -> "
<< buffer;
*created_buffer = buffer;
return;
}
void MediaSource::removeSourceBuffer(SourceBuffer* buffer,
ExceptionState& exception_state) {
DVLOG(2) << __func__ << " this=" << this << " buffer=" << buffer;
// 2.2
// https://dvcs.w3.org/hg/html-media/raw-file/default/media-source/media-source.html#widl-MediaSource-removeSourceBuffer-void-SourceBuffer-sourceBuffer
// 1. If sourceBuffer specifies an object that is not in sourceBuffers then
// throw a NotFoundError exception and abort these steps.
if (!source_buffers_->length() || !source_buffers_->Contains(buffer)) {
LogAndThrowDOMException(
exception_state, DOMExceptionCode::kNotFoundError,
"The SourceBuffer provided is not contained in this MediaSource.");
return;
}
// Do remainder of steps only if attachment is usable and underlying demuxer
// is protected from destruction (applicable especially for MSE-in-Worker
// case). Note, we must not be closed (since closing clears our SourceBuffer
// collections), therefore we must have an attachment.
if (!RunUnlessElementGoneOrClosingUs(
WTF::BindOnce(&MediaSource::RemoveSourceBuffer_Locked,
WrapPersistent(this), WrapPersistent(buffer)))) {
// TODO(https://crbug.com/878133): Determine in specification what the
// specific, app-visible, exception should be for this case.
LogAndThrowDOMException(exception_state,
DOMExceptionCode::kInvalidStateError,
"Worker MediaSource attachment is closing");
}
}
void MediaSource::RemoveSourceBuffer_Locked(
SourceBuffer* buffer,
MediaSourceAttachmentSupplement::ExclusiveKey /* passkey */) {
AssertAttachmentsMutexHeldIfCrossThreadForDebugging();
// Steps 2-8 are implemented by SourceBuffer::removedFromMediaSource.
buffer->RemovedFromMediaSource();
// 9. If sourceBuffer is in activeSourceBuffers, then remove sourceBuffer from
// activeSourceBuffers ...
active_source_buffers_->Remove(buffer);
// 10. Remove sourceBuffer from sourceBuffers and fire a removesourcebuffer
// event on that object.
source_buffers_->Remove(buffer);
// 11. Destroy all resources for sourceBuffer.
// This should have been done already by
// SourceBuffer::removedFromMediaSource (steps 2-8) above.
SendUpdatedInfoToMainThreadCache();
}
void MediaSource::OnReadyStateChange(const ReadyState old_state,
const ReadyState new_state) {
if (IsOpen()) {
ScheduleEvent(event_type_names::kSourceopen);
return;
}
if (old_state == ReadyState::kOpen && new_state == ReadyState::kEnded) {
ScheduleEvent(event_type_names::kSourceended);
return;
}
DCHECK(IsClosed());
active_source_buffers_->Clear();
// Clear SourceBuffer references to this object.
for (unsigned i = 0; i < source_buffers_->length(); ++i)
source_buffers_->item(i)->RemovedFromMediaSource();
source_buffers_->Clear();
{
base::AutoLock lock(attachment_link_lock_);
media_source_attachment_.reset();
attachment_tracer_ = nullptr;
}
ScheduleEvent(event_type_names::kSourceclose);
}
bool MediaSource::IsUpdating() const {
// Return true if any member of |m_sourceBuffers| is updating.
for (unsigned i = 0; i < source_buffers_->length(); ++i) {
if (source_buffers_->item(i)->updating())
return true;
}
return false;
}
// static
bool MediaSource::isTypeSupported(ExecutionContext* context,
const String& type) {
bool result = IsTypeSupportedInternal(
context, type, true /* Require fully specified mime and codecs */);
DVLOG(2) << __func__ << "(" << type << ") -> " << base::ToString(result);
return result;
}
// static
bool MediaSource::IsTypeSupportedInternal(ExecutionContext* context,
const String& type,
bool enforce_codec_specificity) {
// Even after ExecutionContext teardown notification, bindings may still call
// code-behinds for a short while. If |context| is null, this is likely
// happening. To prevent possible null deref of |context| in this path, claim
// lack of support immediately without proceeding.
if (!context) {
DVLOG(1) << __func__ << "(" << type << ", "
<< base::ToString(enforce_codec_specificity)
<< ") -> false (context is null)";
return false;
}
// Section 2.2 isTypeSupported() method steps.
// https://dvcs.w3.org/hg/html-media/raw-file/tip/media-source/media-source.html#widl-MediaSource-isTypeSupported-boolean-DOMString-type
// 1. If type is an empty string, then return false.
if (type.empty()) {
DVLOG(1) << __func__ << "(" << type << ", "
<< base::ToString(enforce_codec_specificity)
<< ") -> false (empty input)";
return false;
}
// 2. If type does not contain a valid MIME type string, then return false.
ContentType content_type(type);
String mime_type = content_type.GetType();
if (mime_type.empty()) {
DVLOG(1) << __func__ << "(" << type << ", "
<< base::ToString(enforce_codec_specificity)
<< ") -> false (invalid mime type)";
return false;
}
String codecs = content_type.Parameter("codecs");
ContentType filtered_content_type = content_type;
#if BUILDFLAG(ENABLE_MSE_MPEG2TS_STREAM_PARSER)
// Mime util doesn't include the mp2t container in order to prevent codec
// support leaking into HtmlMediaElement.canPlayType. If the stream parser
// is enabled, we should check that the codecs are valid using the mp4
// container, since it can support any of the codecs we support for mp2t.
if (mime_type == "video/mp2t") {
std::vector<std::string> parsed_codec_ids;
media::SplitCodecs(codecs.Ascii(), &parsed_codec_ids);
for (const auto& codec_id : parsed_codec_ids) {
if (!IsMp2tCodecSupported(codec_id)) {
return false;
}
}
return true;
}
#endif
#if BUILDFLAG(ENABLE_PLATFORM_ENCRYPTED_DOLBY_VISION)
// When build flag ENABLE_PLATFORM_ENCRYPTED_DOLBY_VISION and feature
// kPlatformEncryptedDolbyVision are both enabled, encrypted Dolby Vision is
// allowed in Media Source while clear Dolby Vision is not allowed.
// In this case:
// - isTypeSupported(fully qualified type with DV codec) should say false on
// such platform, but addSourceBuffer(same) and changeType(same) shouldn't
// fail just due to having DV codec.
// - We use `enforce_codec_specificity` to understand if we are servicing
// isTypeSupported (if true) vs addSourceBuffer or changeType (if false). When
// `enforce_codec_specificity` is false, we'll remove any detected DV codec
// from the codecs in the `filtered_content_type`.
// - When `kAllowClearDolbyVisionInMseWhenPlatformEncryptedDvEnabled` is
// specified, allow DV regardless of `enforce_codec_specificity`.
if (base::FeatureList::IsEnabled(media::kPlatformEncryptedDolbyVision) &&
(base::FeatureList::IsEnabled(
media::kAllowClearDolbyVisionInMseWhenPlatformEncryptedDvEnabled) ||
!enforce_codec_specificity)) {
// Remove any detected DolbyVision codec from the query to GetSupportsType.
std::string filtered_codecs;
std::vector<std::string> parsed_codec_ids;
media::SplitCodecs(codecs.Ascii(), &parsed_codec_ids);
bool first = true;
for (const auto& codec_id : parsed_codec_ids) {
if (auto result =
media::ParseVideoCodecString(mime_type.Ascii(), codec_id,
/*allow_ambiguous_matches=*/false)) {
if (result->codec == media::VideoCodec::kDolbyVision) {
continue;
}
}
if (first)
first = false;
else
filtered_codecs += ",";
filtered_codecs += codec_id;
}
std::string filtered_type =
mime_type.Ascii() + "; codecs=\"" + filtered_codecs + "\"";
DVLOG(1) << __func__ << " filtered_type=" << filtered_type;
filtered_content_type =
ContentType(String::FromUTF8(filtered_type.c_str()));
}
#endif // BUILDFLAG(ENABLE_PLATFORM_ENCRYPTED_DOLBY_VISION)
// Note: MediaSource.isTypeSupported() returning true implies that
// HTMLMediaElement.canPlayType() will return "maybe" or "probably" since it
// does not make sense for a MediaSource to support a type the
// HTMLMediaElement knows it cannot play.
auto get_supports_type_result =
HTMLMediaElement::GetSupportsType(filtered_content_type);
if (get_supports_type_result == MIMETypeRegistry::kNotSupported) {
DVLOG(1) << __func__ << "(" << type << ", "
<< base::ToString(enforce_codec_specificity)
<< ") -> false (not supported by HTMLMediaElement)";
RecordIdentifiabilityMetric(context, type, false);
return false;
}
// 3. If type contains a media type or media subtype that the MediaSource does
// not support, then return false.
// 4. If type contains at a codec that the MediaSource does not support, then
// return false.
// 5. If the MediaSource does not support the specified combination of media
// type, media subtype, and codecs then return false.
// 6. Return true.
// For incompletely specified mime-type and codec combinations, we also return
// false if |enforce_codec_specificity| is true, complying with the
// non-normative guidance being incubated for the MSE v2 codec switching
// feature at https://github.com/WICG/media-source/tree/codec-switching.
// Relaxed codec specificity following similar non-normative guidance is
// allowed for addSourceBuffer and changeType methods, but this strict codec
// specificity is and will be retained for isTypeSupported.
// TODO(crbug.com/535738): Actually relax the codec-specifity for aSB() and
// cT() (which is when |enforce_codec_specificity| is false).
MIMETypeRegistry::SupportsType supported =
MIMETypeRegistry::SupportsMediaSourceMIMEType(mime_type, codecs);
bool result = supported == MIMETypeRegistry::kSupported;
DVLOG(2) << __func__ << "(" << type << ", "
<< base::ToString(enforce_codec_specificity) << ") -> "
<< base::ToString(result);
RecordIdentifiabilityMetric(context, type, result);
return result;
}
// static
bool MediaSource::canConstructInDedicatedWorker(ExecutionContext* context) {
return true;
}
void MediaSource::RecordIdentifiabilityMetric(ExecutionContext* context,
const String& type,
bool result) {
if (!IdentifiabilityStudySettings::Get()->ShouldSampleType(
blink::IdentifiableSurface::Type::kMediaSource_IsTypeSupported)) {
return;
}
blink::IdentifiabilityMetricBuilder(context->UkmSourceID())
.Add(blink::IdentifiableSurface::FromTypeAndToken(
blink::IdentifiableSurface::Type::kMediaSource_IsTypeSupported,
IdentifiabilityBenignStringToken(type)),
result)
.Record(context->UkmRecorder());
}
const AtomicString& MediaSource::InterfaceName() const {
return event_target_names::kMediaSource;
}
ExecutionContext* MediaSource::GetExecutionContext() const {
return ExecutionContextLifecycleObserver::GetExecutionContext();
}
// TODO(https://crbug.com/878133): Consider using macros or virtual methods to
// skip the Bind+Run of |cb| when on same-thread, and to instead just run the
// method directly.
bool MediaSource::RunUnlessElementGoneOrClosingUs(
MediaSourceAttachmentSupplement::RunExclusivelyCB cb) {
auto [attachment, tracer] = AttachmentAndTracer();
DCHECK(IsMainThread() ||
!tracer); // Cross-thread attachments do not use a tracer.
if (!attachment) {
// Element's context destruction may be in flight.
return false;
}
if (!attachment->RunExclusively(true /* abort if not fully attached */,
std::move(cb))) {
DVLOG(1) << __func__ << ": element is gone or is closing us.";
// Only in cross-thread case might we not be attached fully.
DCHECK(!IsMainThread());
return false;
}
return true;
}
void MediaSource::AssertAttachmentsMutexHeldIfCrossThreadForDebugging() const {
#if DCHECK_IS_ON()
base::AutoLock lock(attachment_link_lock_);
DCHECK(media_source_attachment_);
if (!IsMainThread()) {
DCHECK(!attachment_tracer_); // Cross-thread attachments use no tracer;
media_source_attachment_->AssertCrossThreadMutexIsAcquiredForDebugging();
}
#endif // DCHECK_IS_ON()
}
void MediaSource::SendUpdatedInfoToMainThreadCache() {
AssertAttachmentsMutexHeldIfCrossThreadForDebugging();
scoped_refptr<MediaSourceAttachmentSupplement> attachment;
std::tie(attachment, std::ignore) = AttachmentAndTracer();
attachment->SendUpdatedInfoToMainThreadCache();
}
void MediaSource::Trace(Visitor* visitor) const {
visitor->Trace(async_event_queue_);
// |attachment_tracer_| is only set when this object is owned by the main
// thread and is possibly involved in a SameThreadMediaSourceAttachment.
// Therefore, it is thread-safe to access it here without taking the
// |attachment_link_lock_|.
visitor->Trace(TS_UNCHECKED_READ(attachment_tracer_));
visitor->Trace(worker_media_source_handle_);
visitor->Trace(source_buffers_);
visitor->Trace(active_source_buffers_);
EventTarget::Trace(visitor);
ExecutionContextLifecycleObserver::Trace(visitor);
}
void MediaSource::CompleteAttachingToMediaElement(
std::unique_ptr<WebMediaSource> web_media_source) {
AssertAttachmentsMutexHeldIfCrossThreadForDebugging();
{
base::AutoLock lock(attachment_link_lock_);
DCHECK_EQ(!attachment_tracer_, !IsMainThread());
if (attachment_tracer_) {
// Use of a tracer means we must be using same-thread attachment.
TRACE_EVENT_NESTABLE_ASYNC_END0(
"media", "MediaSource::StartAttachingToMediaElement",
TRACE_ID_LOCAL(this));
} else {
// Otherwise, we must be using a cross-thread MSE-in-Workers attachment.
TRACE_EVENT_NESTABLE_ASYNC_END0(
"media", "MediaSource::StartWorkerAttachingToMainThreadMediaElement",
TRACE_ID_LOCAL(this));
}
DCHECK(web_media_source);
DCHECK(!web_media_source_);
DCHECK(media_source_attachment_);
web_media_source_ = std::move(web_media_source);
}
SetReadyState(ReadyState::kOpen);
}
double MediaSource::GetDuration_Locked(
MediaSourceAttachmentSupplement::ExclusiveKey /* passkey */) const {
AssertAttachmentsMutexHeldIfCrossThreadForDebugging();
if (IsClosed()) {
return std::numeric_limits<float>::quiet_NaN();
}
return web_media_source_->Duration();
}
WebTimeRanges MediaSource::BufferedInternal(
MediaSourceAttachmentSupplement::ExclusiveKey pass_key) const {
AssertAttachmentsMutexHeldIfCrossThreadForDebugging();
// Implements MediaSource algorithm for HTMLMediaElement.buffered.
// https://dvcs.w3.org/hg/html-media/raw-file/default/media-source/media-source.html#htmlmediaelement-extensions
Vector<WebTimeRanges> ranges(active_source_buffers_->length());
for (unsigned i = 0; i < active_source_buffers_->length(); ++i) {
active_source_buffers_->item(i)->GetBuffered_Locked(&ranges[i], pass_key);
}
// 1. If activeSourceBuffers.length equals 0 then return an empty TimeRanges
// object and abort these steps.
if (ranges.empty()) {
return WebTimeRanges();
}
// 2. Let active ranges be the ranges returned by buffered for each
// SourceBuffer object in activeSourceBuffers.
// 3. Let highest end time be the largest range end time in the active ranges.
double highest_end_time = -1;
for (const WebTimeRanges& source_ranges : ranges) {
if (!source_ranges.empty())
highest_end_time = std::max(highest_end_time, source_ranges.back().end);
}
// Return an empty range if all ranges are empty.
if (highest_end_time < 0) {
return WebTimeRanges();
}
// 4. Let intersection ranges equal a TimeRange object containing a single
// range from 0 to highest end time.
WebTimeRanges intersection_ranges(0, highest_end_time);
// 5. For each SourceBuffer object in activeSourceBuffers run the following
// steps:
bool ended = ready_state_ == ReadyState::kEnded;
// 5.1 Let source ranges equal the ranges returned by the buffered attribute
// on the current SourceBuffer.
for (WebTimeRanges& source_ranges : ranges) {
// 5.2 If readyState is "ended", then set the end time on the last range in
// source ranges to highest end time.
if (ended && !source_ranges.empty())
source_ranges.Add(source_ranges.back().start, highest_end_time);
// 5.3 Let new intersection ranges equal the the intersection between the
// intersection ranges and the source ranges.
// 5.4 Replace the ranges in intersection ranges with the new intersection
// ranges.
intersection_ranges.IntersectWith(source_ranges);
}
return intersection_ranges;
}
WebTimeRanges MediaSource::SeekableInternal(
MediaSourceAttachmentSupplement::ExclusiveKey pass_key) const {
AssertAttachmentsMutexHeldIfCrossThreadForDebugging();
{
base::AutoLock lock(attachment_link_lock_);
DCHECK(media_source_attachment_)
<< "Seekable should only be used when attached to HTMLMediaElement";
}
// Implements MediaSource algorithm for HTMLMediaElement.seekable.
// http://w3c.github.io/media-source/#htmlmediaelement-extensions
double source_duration = GetDuration_Locked(pass_key);
// If duration equals NaN: Return an empty TimeRanges object.
if (std::isnan(source_duration)) {
return WebTimeRanges();
}
// If duration equals positive Infinity:
if (source_duration == std::numeric_limits<double>::infinity()) {
WebTimeRanges buffered = BufferedInternal(pass_key);
// 1. If live seekable range is not empty:
if (has_live_seekable_range_) {
// 1.1. Let union ranges be the union of live seekable range and the
// HTMLMediaElement.buffered attribute.
// 1.2. Return a single range with a start time equal to the
// earliest start time in union ranges and an end time equal to
// the highest end time in union ranges and abort these steps.
if (buffered.empty()) {
return WebTimeRanges(live_seekable_range_start_,
live_seekable_range_end_);
}
return WebTimeRanges(
std::min(live_seekable_range_start_, buffered.front().start),
std::max(live_seekable_range_end_, buffered.back().end));
}
// 2. If the HTMLMediaElement.buffered attribute returns an empty TimeRanges
// object, then return an empty TimeRanges object and abort these steps.
if (buffered.empty()) {
return WebTimeRanges();
}
// 3. Return a single range with a start time of 0 and an end time equal to
// the highest end time reported by the HTMLMediaElement.buffered
// attribute.
return WebTimeRanges(0, buffered.back().end);
}
// 3. Otherwise: Return a single range with a start time of 0 and an end time
// equal to duration.
return WebTimeRanges(0, source_duration);
}
void MediaSource::OnTrackChanged(TrackBase* track) {
// TODO(https://crbug.com/878133): Support this in MSE-in-Worker once
// TrackBase and TrackListBase are usable on worker and do not explicitly
// require an HTMLMediaElement. The update to |active_source_buffers_| will
// also require sending updated buffered and seekable information to the main
// thread, though the CTMSA itself would best know when to do that since it is
// this method should only be called by an attachment.
DCHECK(IsMainThread());
SourceBuffer* source_buffer =
SourceBufferTrackBaseSupplement::sourceBuffer(*track);
if (!source_buffer)
return;
DCHECK(source_buffers_->Contains(source_buffer));
if (track->GetType() == WebMediaPlayer::kAudioTrack) {
source_buffer->audioTracks().ScheduleChangeEvent();
} else if (track->GetType() == WebMediaPlayer::kVideoTrack) {
if (static_cast<VideoTrack*>(track)->selected())
source_buffer->videoTracks().TrackSelected(track->id());
source_buffer->videoTracks().ScheduleChangeEvent();
}
bool is_active = (source_buffer->videoTracks().selectedIndex() != -1) ||
source_buffer->audioTracks().HasEnabledTrack();
SetSourceBufferActive(source_buffer, is_active);
}
void MediaSource::setDuration(double duration,
ExceptionState& exception_state) {
DVLOG(3) << __func__ << " this=" << this << " : duration=" << duration;
// 2.1 https://www.w3.org/TR/media-source/#widl-MediaSource-duration
// 1. If the value being set is negative or NaN then throw a TypeError
// exception and abort these steps.
if (std::isnan(duration)) {
LogAndThrowTypeError(exception_state, ExceptionMessages::NotAFiniteNumber(
duration, "duration"));
return;
}
if (duration < 0.0) {
LogAndThrowTypeError(
exception_state,
ExceptionMessages::IndexExceedsMinimumBound("duration", duration, 0.0));
return;
}
// 2. If the readyState attribute is not "open" then throw an
// InvalidStateError exception and abort these steps.
// 3. If the updating attribute equals true on any SourceBuffer in
// sourceBuffers, then throw an InvalidStateError exception and abort these
// steps.
if (ThrowExceptionIfClosedOrUpdating(IsOpen(), IsUpdating(), exception_state))
return;
// 4. Run the duration change algorithm with new duration set to the value
// being assigned to this attribute.
// Do remainder of steps only if attachment is usable and underlying demuxer
// is protected from destruction (applicable especially for MSE-in-Worker
// case). Note, we must be open, therefore we must have an attachment.
if (!RunUnlessElementGoneOrClosingUs(WTF::BindOnce(
&MediaSource::DurationChangeAlgorithm, WrapPersistent(this), duration,
WTF::Unretained(&exception_state)))) {
// TODO(https://crbug.com/878133): Determine in specification what the
// specific, app-visible, exception should be for this case.
LogAndThrowDOMException(exception_state,
DOMExceptionCode::kInvalidStateError,
"Worker MediaSource attachment is closing");
}
}
double MediaSource::duration() {
double duration_result = std::numeric_limits<float>::quiet_NaN();
if (IsClosed())
return duration_result;
// Note, here we must be open or ended, therefore we must have an attachment.
if (!RunUnlessElementGoneOrClosingUs(WTF::BindOnce(
[](MediaSource* self, double* result,
MediaSourceAttachmentSupplement::ExclusiveKey pass_key) {
*result = self->GetDuration_Locked(pass_key);
},
WrapPersistent(this), WTF::Unretained(&duration_result)))) {
// TODO(https://crbug.com/878133): Determine in specification what the
// specific, app-visible, result should be in this case. It seems reasonable
// to behave is if we are in "closed" readyState and report NaN to the app
// here.
DCHECK_EQ(duration_result, std::numeric_limits<float>::quiet_NaN());
}
return duration_result;
}
void MediaSource::DurationChangeAlgorithm(
double new_duration,
ExceptionState* exception_state,
MediaSourceAttachmentSupplement::ExclusiveKey pass_key) {
AssertAttachmentsMutexHeldIfCrossThreadForDebugging();
// http://w3c.github.io/media-source/#duration-change-algorithm
// 1. If the current value of duration is equal to new duration, then return.
double old_duration = GetDuration_Locked(pass_key);
if (new_duration == old_duration)
return;
// 2. If new duration is less than the highest starting presentation
// timestamp of any buffered coded frames for all SourceBuffer objects in
// sourceBuffers, then throw an InvalidStateError exception and abort these
// steps. Note: duration reductions that would truncate currently buffered
// media are disallowed. When truncation is necessary, use remove() to
// reduce the buffered range before updating duration.
double highest_buffered_presentation_timestamp = 0;
for (unsigned i = 0; i < source_buffers_->length(); ++i) {
highest_buffered_presentation_timestamp =
std::max(highest_buffered_presentation_timestamp,
source_buffers_->item(i)->HighestPresentationTimestamp());
}
if (new_duration < highest_buffered_presentation_timestamp) {
if (RuntimeEnabledFeatures::MediaSourceNewAbortAndDurationEnabled()) {
LogAndThrowDOMException(
*exception_state, DOMExceptionCode::kInvalidStateError,
"Setting duration below highest presentation timestamp of any "
"buffered coded frames is disallowed. Instead, first do asynchronous "
"remove(newDuration, oldDuration) on all sourceBuffers, where "
"newDuration < oldDuration.");
return;
}
Deprecation::CountDeprecation(
GetExecutionContext(),
WebFeature::kMediaSourceDurationTruncatingBuffered);
// See also deprecated remove(new duration, old duration) behavior below.
}
DCHECK_LE(highest_buffered_presentation_timestamp,
std::isnan(old_duration) ? 0 : old_duration);
// 3. Set old duration to the current value of duration.
// Done for step 1 above, already.
// 4. Update duration to new duration.
web_media_source_->SetDuration(new_duration);
if (!RuntimeEnabledFeatures::MediaSourceNewAbortAndDurationEnabled() &&
new_duration < old_duration) {
// Deprecated behavior: if the new duration is less than old duration,
// then call remove(new duration, old duration) on all all objects in
// sourceBuffers.
for (unsigned i = 0; i < source_buffers_->length(); ++i) {
source_buffers_->item(i)->Remove_Locked(new_duration, old_duration,
&ASSERT_NO_EXCEPTION, pass_key);
}
}
// 5. If a user agent is unable to partially render audio frames or text cues
// that start before and end after the duration, then run the following
// steps:
// NOTE: Currently we assume that the media engine is able to render
// partial frames/cues. If a media engine gets added that doesn't support
// this, then we'll need to add logic to handle the substeps.
// 6. Update the media controller duration to new duration and run the
// HTMLMediaElement duration change algorithm.
auto [attachment, tracer] = AttachmentAndTracer();
attachment->NotifyDurationChanged(tracer, new_duration);
}
void MediaSource::SetReadyState(const ReadyState state) {
DCHECK(state == ReadyState::kOpen || state == ReadyState::kClosed ||
state == ReadyState::kEnded);
ReadyState old_state = ready_state_;
DVLOG(3) << __func__ << " this=" << this << " : "
<< ReadyStateToString(old_state) << " -> "
<< ReadyStateToString(state);
if (state == ReadyState::kClosed) {
web_media_source_.reset();
}
if (old_state == state)
return;
ready_state_ = state;
OnReadyStateChange(old_state, state);
}
AtomicString MediaSource::readyState() const {
return ReadyStateToString(ready_state_);
}
void MediaSource::endOfStream(ExceptionState& exception_state) {
endOfStream(std::nullopt, exception_state);
}
void MediaSource::endOfStream(std::optional<V8EndOfStreamError> error,
ExceptionState& exception_state) {
DVLOG(3) << __func__ << " this=" << this
<< " : error=" << (error.has_value() ? error->AsCStr() : "");
// https://www.w3.org/TR/media-source/#dom-mediasource-endofstream
// 1. If the readyState attribute is not in the "open" state then throw an
// InvalidStateError exception and abort these steps.
// 2. If the updating attribute equals true on any SourceBuffer in
// sourceBuffers, then throw an InvalidStateError exception and abort these
// steps.
if (ThrowExceptionIfClosedOrUpdating(IsOpen(), IsUpdating(), exception_state))
return;
// 3. Run the end of stream algorithm with the error parameter set to error.
WebMediaSource::EndOfStreamStatus status =
WebMediaSource::kEndOfStreamStatusNoError;
if (error.has_value()) {
switch (error->AsEnum()) {
case V8EndOfStreamError::Enum::kNetwork:
status = WebMediaSource::kEndOfStreamStatusNetworkError;
break;
case V8EndOfStreamError::Enum::kDecode:
status = WebMediaSource::kEndOfStreamStatusDecodeError;
break;
default:
NOTREACHED();
}
}
// Do remainder of steps only if attachment is usable and underlying demuxer
// is protected from destruction (applicable especially for MSE-in-Worker
// case). Note, we must be open, therefore we must have an attachment.
if (!RunUnlessElementGoneOrClosingUs(WTF::BindOnce(
&MediaSource::EndOfStreamAlgorithm, WrapPersistent(this), status))) {
// TODO(https://crbug.com/878133): Determine in specification what the
// specific, app-visible, exception should be for this case.
LogAndThrowDOMException(exception_state,
DOMExceptionCode::kInvalidStateError,
"Worker MediaSource attachment is closing");
}
}
void MediaSource::setLiveSeekableRange(double start,
double end,
ExceptionState& exception_state) {
DVLOG(3) << __func__ << " this=" << this << " : start=" << start
<< ", end=" << end;
// http://w3c.github.io/media-source/#widl-MediaSource-setLiveSeekableRange-void-double-start-double-end
// 1. If the readyState attribute is not "open" then throw an
// InvalidStateError exception and abort these steps.
// 2. If the updating attribute equals true on any SourceBuffer in
// SourceBuffers, then throw an InvalidStateError exception and abort
// these steps.
// Note: https://github.com/w3c/media-source/issues/118, once fixed, will
// remove the updating check (step 2). We skip that check here already.
if (ThrowExceptionIfClosed(IsOpen(), exception_state))
return;
// 3. If start is negative or greater than end, then throw a TypeError
// exception and abort these steps.
if (start < 0 || start > end) {
LogAndThrowTypeError(
exception_state,
ExceptionMessages::IndexOutsideRange(
"start value", start, 0.0, ExceptionMessages::kInclusiveBound, end,
ExceptionMessages::kInclusiveBound));
return;
}
// Note, here we must be open, therefore we must have an attachment.
if (!RunUnlessElementGoneOrClosingUs(
WTF::BindOnce(&MediaSource::SetLiveSeekableRange_Locked,
WrapPersistent(this), start, end))) {
// TODO(https://crbug.com/878133): Determine in specification what the
// specific, app-visible, exception should be for this case.
LogAndThrowDOMException(exception_state,
DOMExceptionCode::kInvalidStateError,
"Worker MediaSource attachment is closing");
}
}
void MediaSource::SetLiveSeekableRange_Locked(
double start,
double end,
MediaSourceAttachmentSupplement::ExclusiveKey /* passkey */) {
AssertAttachmentsMutexHeldIfCrossThreadForDebugging();
// 4. Set live seekable range to be a new normalized TimeRanges object
// containing a single range whose start position is start and end
// position is end.
has_live_seekable_range_ = true;
live_seekable_range_start_ = start;
live_seekable_range_end_ = end;
SendUpdatedInfoToMainThreadCache();
}
void MediaSource::clearLiveSeekableRange(ExceptionState& exception_state) {
DVLOG(3) << __func__ << " this=" << this;
// http://w3c.github.io/media-source/#widl-MediaSource-clearLiveSeekableRange-void
// 1. If the readyState attribute is not "open" then throw an
// InvalidStateError exception and abort these steps.
// 2. If the updating attribute equals true on any SourceBuffer in
// SourceBuffers, then throw an InvalidStateError exception and abort
// these steps.
// Note: https://github.com/w3c/media-source/issues/118, once fixed, will
// remove the updating check (step 2). We skip that check here already.
if (ThrowExceptionIfClosed(IsOpen(), exception_state))
return;
// Note, here we must be open, therefore we must have an attachment.
if (!RunUnlessElementGoneOrClosingUs(WTF::BindOnce(
&MediaSource::ClearLiveSeekableRange_Locked, WrapPersistent(this)))) {
// TODO(https://crbug.com/878133): Determine in specification what the
// specific, app-visible, exception should be for this case.
LogAndThrowDOMException(exception_state,
DOMExceptionCode::kInvalidStateError,
"Worker MediaSource attachment is closing");
}
}
void MediaSource::ClearLiveSeekableRange_Locked(
MediaSourceAttachmentSupplement::ExclusiveKey /* passkey */) {
AssertAttachmentsMutexHeldIfCrossThreadForDebugging();
// 3. If live seekable range contains a range, then set live seekable range
// to be a new empty TimeRanges object.
if (!has_live_seekable_range_)
return;
has_live_seekable_range_ = false;
live_seekable_range_start_ = 0.0;
live_seekable_range_end_ = 0.0;
SendUpdatedInfoToMainThreadCache();
}
MediaSourceHandleImpl* MediaSource::handle() {
base::AutoLock lock(attachment_link_lock_);
DVLOG(3) << __func__;
// TODO(crbug.com/506273): Support MediaSource srcObject attachment idiom for
// main-thread-owned MediaSource objects (would need MSE spec updates, too,
// and might not involve a handle regardless).
DCHECK(!IsMainThread() &&
GetExecutionContext()->IsDedicatedWorkerGlobalScope());
// Per
// https://www.w3.org/TR/2022/WD-media-source-2-20220921/#dom-mediasource-handle:
// If the handle for this MediaSource object has not yet been created, then
// run the following steps:
// 1.1. Let created handle be the result of creating a new MediaSourceHandle
// object and associated resources, linked internally to this
// MediaSource.
// 1.2. Update the attribute to be created handle.
if (!worker_media_source_handle_) {
// Lazily create the handle, since it indirectly holds a
// CrossThreadMediaSourceAttachment (until attachment starts or the handle
// is transferred) which holds a strong reference to us until attachment is
// actually started and later closed. PassKey provider usage here ensures
// that we are allowed to call the attachment constructor.
scoped_refptr<CrossThreadMediaSourceAttachment> attachment =
base::MakeRefCounted<CrossThreadMediaSourceAttachment>(
this, AttachmentCreationPassKeyProvider::GetPassKey());
scoped_refptr<HandleAttachmentProvider> attachment_provider =
base::MakeRefCounted<HandleAttachmentProvider>(std::move(attachment));
// Create, but don't "register" an internal blob URL with the security
// origin of the worker's execution context for use later in a window thread
// media element's attachment to the MediaSource leveraging existing URL
// security checks and logging for legacy MSE object URLs.
const SecurityOrigin* origin = GetExecutionContext()->GetSecurityOrigin();
String internal_blob_url = BlobURL::CreatePublicURL(origin).GetString();
DCHECK(!internal_blob_url.empty());
worker_media_source_handle_ = MakeGarbageCollected<MediaSourceHandleImpl>(
std::move(attachment_provider), std::move(internal_blob_url));
}
// Per
// https://www.w3.org/TR/2022/WD-media-source-2-20220921/#dom-mediasource-handle:
// 2. Return the MediaSourceHandle object that is this attribute's value.
DCHECK(worker_media_source_handle_);
return worker_media_source_handle_.Get();
}
bool MediaSource::IsOpen() const {
return ready_state_ == ReadyState::kOpen;
}
void MediaSource::SetSourceBufferActive(SourceBuffer* source_buffer,
bool is_active) {
if (!is_active) {
DCHECK(active_source_buffers_->Contains(source_buffer));
active_source_buffers_->Remove(source_buffer);
return;
}
if (active_source_buffers_->Contains(source_buffer))
return;
// https://dvcs.w3.org/hg/html-media/raw-file/tip/media-source/media-source.html#widl-MediaSource-activeSourceBuffers
// SourceBuffer objects in SourceBuffer.activeSourceBuffers must appear in
// the same order as they appear in SourceBuffer.sourceBuffers.
// SourceBuffer transitions to active are not guaranteed to occur in the
// same order as buffers in |m_sourceBuffers|, so this method needs to
// insert |sourceBuffer| into |m_activeSourceBuffers|.
wtf_size_t index_in_source_buffers = source_buffers_->Find(source_buffer);
DCHECK(index_in_source_buffers != kNotFound);
wtf_size_t insert_position = 0;
while (insert_position < active_source_buffers_->length() &&
source_buffers_->Find(active_source_buffers_->item(insert_position)) <
index_in_source_buffers) {
++insert_position;
}
active_source_buffers_->insert(insert_position, source_buffer);
}
std::pair<scoped_refptr<MediaSourceAttachmentSupplement>, MediaSourceTracer*>
MediaSource::AttachmentAndTracer() const {
base::AutoLock lock(attachment_link_lock_);
return std::make_pair(media_source_attachment_, attachment_tracer_.Get());
}
void MediaSource::EndOfStreamAlgorithm(
const WebMediaSource::EndOfStreamStatus eos_status,
MediaSourceAttachmentSupplement::ExclusiveKey pass_key) {
AssertAttachmentsMutexHeldIfCrossThreadForDebugging();
// https://www.w3.org/TR/media-source/#end-of-stream-algorithm
// 1. Change the readyState attribute value to "ended".
// 2. Queue a task to fire a simple event named sourceended at the
// MediaSource.
SetReadyState(ReadyState::kEnded);
// 3. Do various steps based on |eos_status|.
web_media_source_->MarkEndOfStream(eos_status);
if (eos_status == WebMediaSource::kEndOfStreamStatusNoError) {
// The implementation may not have immediately informed the attached element
// (known by the |media_source_attachment_| and |attachment_tracer_|) of the
// potentially reduced duration. Prevent app-visible duration race by
// synchronously running the duration change algorithm. The MSE spec
// supports this:
// https://www.w3.org/TR/media-source/#end-of-stream-algorithm
// 2.4.7.3 (If error is not set)
// Run the duration change algorithm with new duration set to the largest
// track buffer ranges end time across all the track buffers across all
// SourceBuffer objects in sourceBuffers.
//
// Since MarkEndOfStream caused the demuxer to update its duration (similar
// to the MediaSource portion of the duration change algorithm), all that
// is left is to notify the element.
// TODO(wolenetz): Consider refactoring the MarkEndOfStream implementation
// to just mark end of stream, and move the duration reduction logic to here
// so we can just run DurationChangeAlgorithm(...) here.
double new_duration = GetDuration_Locked(pass_key);
auto [attachment, tracer] = AttachmentAndTracer();
attachment->NotifyDurationChanged(tracer, new_duration);
} else {
// Even though error didn't change duration, the transition to kEnded
// impacts the buffered ranges calculation, so let the attachment know that
// a cross-thread media element needs to be sent updated information.
SendUpdatedInfoToMainThreadCache();
}
}
bool MediaSource::IsClosed() const {
return ready_state_ == ReadyState::kClosed;
}
void MediaSource::Close() {
AssertAttachmentsMutexHeldIfCrossThreadForDebugging();
SetReadyState(ReadyState::kClosed);
}
MediaSourceTracer* MediaSource::StartAttachingToMediaElement(
scoped_refptr<SameThreadMediaSourceAttachment> attachment,
HTMLMediaElement* element) {
base::AutoLock lock(attachment_link_lock_);
DCHECK(IsMainThread());
if (media_source_attachment_ || attachment_tracer_) {
return nullptr;
}
DCHECK(!context_already_destroyed_);
DCHECK(IsClosed());
TRACE_EVENT_NESTABLE_ASYNC_BEGIN0("media",
"MediaSource::StartAttachingToMediaElement",
TRACE_ID_LOCAL(this));
media_source_attachment_ = attachment;
attachment_tracer_ =
MakeGarbageCollected<SameThreadMediaSourceTracer>(element, this);
return attachment_tracer_.Get();
}
bool MediaSource::StartWorkerAttachingToMainThreadMediaElement(
scoped_refptr<CrossThreadMediaSourceAttachment> attachment) {
base::AutoLock lock(attachment_link_lock_);
// Even in worker-owned MSE, the CrossThreadMediaSourceAttachment calls this
// on the main thread.
DCHECK(IsMainThread());
DCHECK(!attachment_tracer_); // A worker-owned MediaSource has no tracer.
if (context_already_destroyed_) {
return false; // See comments in ContextDestroyed().
}
if (media_source_attachment_ || attachment_tracer_) {
return false; // Already attached.
}
DCHECK(IsClosed());
TRACE_EVENT_NESTABLE_ASYNC_BEGIN0(
"media", "MediaSource::StartWorkerAttachingToMainThreadMediaElement",
TRACE_ID_LOCAL(this));
media_source_attachment_ = attachment;
return true;
}
void MediaSource::OpenIfInEndedState() {
if (ready_state_ != ReadyState::kEnded)
return;
// All callers of this method (see SourceBuffer methods) must have already
// confirmed they are still associated with us, and therefore we must not be
// closed. In one edge case (!notify_close version of our
// DetachWorkerOnContextDestruction_Locked), any associated SourceBuffers are
// not told they're dissociated with us in that method, but it is run on the
// worker thread that is also synchronously destructing the SourceBuffers'
// context). Therefore the following should never fail here.
DCHECK(!IsClosed());
AssertAttachmentsMutexHeldIfCrossThreadForDebugging();
SetReadyState(ReadyState::kOpen);
web_media_source_->UnmarkEndOfStream();
// This change impacts buffered and seekable calculations, so let the
// attachment know to update if cross-thread.
SendUpdatedInfoToMainThreadCache();
}
bool MediaSource::HasPendingActivity() const {
// Note that an unrevoked MediaSource objectUrl for an otherwise inactive,
// unreferenced HTMLME with MSE still attached will prevent GC of the whole
// group of objects. This is yet further motivation for apps to properly
// revokeObjectUrl and for the MSE spec, implementations and API users to
// transition to using HTMLME srcObject for MSE attachment instead of
// objectUrl. For at least SameThreadMediaSourceAttachments, the
// RevokeMediaSourceObjectURLOnAttach feature assists in automating this case.
// But for CrossThreadMediaSourceAttachments, the attachment holds strong
// references to each side until explicitly detached (or contexts destroyed).
// The latter applies similarly when using MediaSourceHandle for srcObject
// attachment of a worker MediaSource: the handle object has a scoped_refptr
// to the underlying attachment until the handle is GC'ed.
return async_event_queue_->HasPendingEvents();
}
void MediaSource::ContextDestroyed() {
DVLOG(1) << __func__ << " this=" << this;
// In same-thread case, we just close ourselves if not already closed. This is
// historically the same logic as before MSE-in-Workers. Note that we cannot
// inspect GetExecutionContext() to determine Window vs Worker here, so we use
// IsMainThread(). There is no need to RunExclusively() either, because we are
// on the same thread as the media element.
if (IsMainThread()) {
{
base::AutoLock lock(attachment_link_lock_);
if (media_source_attachment_) {
DCHECK(attachment_tracer_); // Same-thread attachment uses tracer.
// No need to release |attachment_link_lock_| and RunExclusively(),
// since it is a same-thread attachment.
media_source_attachment_->OnMediaSourceContextDestroyed();
}
// For consistency, though redundant for same-thread operation, prevent
// subsequent attachment start from succeeding. This flag is meaningful in
// cross-thread attachment usage.
context_already_destroyed_ = true;
}
if (!IsClosed()) {
SetReadyState(ReadyState::kClosed);
}
web_media_source_.reset();
return;
}
// Worker context destruction could race CrossThreadMediaSourceAttachment's
// StartAttachingToMediaElement on the main thread: we could finish
// ContextDestroyed() here, and in the case of not yet ever having been
// attached using a particular CrossThreadMediaSourceAttachent, then receive a
// StartWorkerAttachingToMainThreadMediaElement() call before unregistration
// of us has completed. Therefore, we use our |attachment_link_lock_| to also
// protect a flag here that lets us know to fail any future attempt to start
// attaching to us.
scoped_refptr<MediaSourceAttachmentSupplement> attachment;
{
base::AutoLock lock(attachment_link_lock_);
context_already_destroyed_ = true;
// If not yet attached, the flag, above, will prevent us from ever
// successfully attaching, and we can return. There is no attachment on
// which we need (or can) call OnMediaSourceContextDestroyed() here. And any
// attachments owned by this context will soon (or have already been)
// unregistered.
attachment = media_source_attachment_;
if (!attachment) {
DCHECK(IsClosed());
DCHECK(!web_media_source_);
return;
}
}
// We need to let our current attachment know that our context is destroyed.
// This will let it handle cases like returning sane values for
// BufferedInternal and SeekableInternal and stop further use of us via the
// attachment. We need to hold the attachment's |attachment_state_lock_| when
// doing this detachment.
bool cb_ran = attachment->RunExclusively(
true /* abort if unsafe to use underlying demuxer */,
WTF::BindOnce(&MediaSource::DetachWorkerOnContextDestruction_Locked,
WrapPersistent(this),
true /* safe to notify underlying demuxer */));
if (!cb_ran) {
// Main-thread is already detaching or destructing the underlying demuxer.
CHECK(attachment->RunExclusively(
false /* do not abort */,
WTF::BindOnce(&MediaSource::DetachWorkerOnContextDestruction_Locked,
WrapPersistent(this),
false /* do not notify underlying demuxer */)));
}
}
void MediaSource::DetachWorkerOnContextDestruction_Locked(
bool notify_close,
MediaSourceAttachmentSupplement::ExclusiveKey /* passkey */) {
AssertAttachmentsMutexHeldIfCrossThreadForDebugging();
{
base::AutoLock lock(attachment_link_lock_);
DCHECK(!IsMainThread()); // Called only on the worker thread.
DVLOG(1) << __func__ << " this=" << this
<< ", notify_close=" << notify_close;
// Close() could not race our dispatch: it must happen on worker thread, on
// which we're called synchronously only if we're attached.
DCHECK(media_source_attachment_);
// We're only called for CrossThread attachments, which use no tracer.
DCHECK(!attachment_tracer_);
// Let the attachment know to prevent further operations on us.
media_source_attachment_->OnMediaSourceContextDestroyed();
if (!notify_close) {
// In this case, not only is our context shutting down, but the media
// element is also at least tearing down the WebMediaPlayer (and the
// underlying demuxer owned by it) already. We can do some simple cleanup,
// but must not access |*web_media_source_| or our SourceBuffers'
// |*web_source_buffer_|'s. We're helped by the demuxer not calling us or
// our SourceBuffers unless in scope of a call initiated by a SourceBuffer
// during media parsing, which cannot occur after our context destruction.
// Underlying buffered media is removed during demuxer teardown itself,
// which is certain to be happening already or soon in this case.
media_source_attachment_.reset();
attachment_tracer_ = nullptr; // For consistency with same-thread usage.
if (!IsClosed()) {
ready_state_ = ReadyState::kClosed;
web_media_source_.reset();
active_source_buffers_->Clear();
source_buffers_->Clear();
}
return;
}
}
// TODO(https://crbug.com/878133): Here, if we have a |web_media_source_|,
// determine how to specify notification of a "defunct" worker-thread
// MediaSource in the case where it was serving as the source for a media
// element. Directly notifying an error via the |web_media_source_| may be the
// appropriate route here, but MarkEndOfStream internally has constraints
// (already initialized demuxer, not already "ended", etc) which make it
// unsuitable currently for this purpose. Currently, we prevent further usage
// of the underlying demuxer and return sane values to the element for its
// queries (nothing buffered, nothing seekable) once the attached media
// source's context is destroyed. See similar case in
// CrossThreadMediaSourceAttachment's
// CompleteAttachingToMediaElementOnWorkerThread(). For now, we'll just do the
// historical steps to shutdown the MediaSource and SourceBuffers on context
// destruction.
if (!IsClosed())
SetReadyState(ReadyState::kClosed);
web_media_source_.reset();
}
std::unique_ptr<WebSourceBuffer> MediaSource::CreateWebSourceBuffer(
const String& type,
const String& codecs,
std::unique_ptr<media::AudioDecoderConfig> audio_config,
std::unique_ptr<media::VideoDecoderConfig> video_config,
ExceptionState& exception_state) {
AssertAttachmentsMutexHeldIfCrossThreadForDebugging();
std::unique_ptr<WebSourceBuffer> web_source_buffer;
WebMediaSource::AddStatus add_status;
if (audio_config) {
DCHECK(!video_config);
DCHECK(type.IsNull() && codecs.IsNull());
web_source_buffer = web_media_source_->AddSourceBuffer(
std::move(audio_config), add_status /* out */);
DCHECK_NE(add_status, WebMediaSource::kAddStatusNotSupported);
} else if (video_config) {
DCHECK(type.IsNull() && codecs.IsNull());
web_source_buffer = web_media_source_->AddSourceBuffer(
std::move(video_config), add_status /* out */);
DCHECK_NE(add_status, WebMediaSource::kAddStatusNotSupported);
} else {
DCHECK(!type.IsNull());
web_source_buffer =
web_media_source_->AddSourceBuffer(type, codecs, add_status /* out */);
}
switch (add_status) {
case WebMediaSource::kAddStatusOk:
DCHECK(web_source_buffer);
return web_source_buffer;
case WebMediaSource::kAddStatusNotSupported:
// DCHECKs, above, ensure this case doesn't occur for the WebCodecs config
// overloads of WebMediaSource::AddSourceBuffer(). This case can only
// occur for the |type| and |codecs| version of that method.
DCHECK(!web_source_buffer);
// TODO(crbug.com/1144908): Are we certain that if we originally had an
// audio_config or video_config, above, that it should be supported? In
// that case, we could possibly add some DCHECK here if attempt to use
// them failed in this case.
//
// 2.2
// https://dvcs.w3.org/hg/html-media/raw-file/default/media-source/media-source.html#widl-MediaSource-addSourceBuffer-SourceBuffer-DOMString-type
// Step 2: If type contains a MIME type ... that is not supported with the
// types specified for the other SourceBuffer objects in sourceBuffers,
// then throw a NotSupportedError exception and abort these steps.
LogAndThrowDOMException(
exception_state, DOMExceptionCode::kNotSupportedError,
"The type provided ('" + type +
"') is not supported for SourceBuffer creation.");
return nullptr;
case WebMediaSource::kAddStatusReachedIdLimit:
DCHECK(!web_source_buffer);
// 2.2
// https://dvcs.w3.org/hg/html-media/raw-file/default/media-source/media-source.html#widl-MediaSource-addSourceBuffer-SourceBuffer-DOMString-type
// Step 3: If the user agent can't handle any more SourceBuffer objects
// then throw a QuotaExceededError exception and abort these steps.
LogAndThrowQuotaExceededError(
exception_state,
"This MediaSource has reached the limit of "
"SourceBuffer objects it can handle. No "
"additional SourceBuffer objects may be added.");
return nullptr;
}
NOTREACHED();
}
void MediaSource::ScheduleEvent(const AtomicString& event_name) {
DCHECK(async_event_queue_);
Event* event = Event::Create(event_name);
event->SetTarget(this);
async_event_queue_->EnqueueEvent(FROM_HERE, *event);
}
} // namespace blink
|