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
|
/*
* Copyright (C) 2020 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "SourceBufferPrivate.h"
#if ENABLE(MEDIA_SOURCE)
#include "AudioTrackPrivate.h"
#include "Logging.h"
#include "MediaDescription.h"
#include "MediaSample.h"
#include "MediaSourcePrivate.h"
#include "PlatformTimeRanges.h"
#include "SampleMap.h"
#include "SharedBuffer.h"
#include "SourceBufferPrivateClient.h"
#include "TimeRanges.h"
#include "TrackBuffer.h"
#include "VideoTrackPrivate.h"
#include <wtf/CheckedArithmetic.h>
#include <wtf/IteratorRange.h>
#include <wtf/MainThread.h>
#include <wtf/MediaTime.h>
#include <wtf/StringPrintStream.h>
namespace WebCore {
// Do not enqueue samples spanning a significant unbuffered gap.
// NOTE: one second is somewhat arbitrary. MediaSource::monitorSourceBuffers() is run
// on the playbackTimer, which is effectively every 350ms. Allowing > 350ms gap between
// enqueued samples allows for situations where we overrun the end of a buffered range
// but don't notice for 350ms of playback time, and the client can enqueue data for the
// new current time without triggering this early return.
// FIXME(135867): Make this gap detection logic less arbitrary.
static const MediaTime discontinuityTolerance = MediaTime(1, 1);
static const unsigned evictionAlgorithmInitialTimeChunk = 30000;
static const unsigned evictionAlgorithmTimeChunkLowThreshold = 3000;
SourceBufferPrivate::SourceBufferPrivate(MediaSourcePrivate& parent)
: SourceBufferPrivate(parent, RunLoop::current())
{
}
SourceBufferPrivate::SourceBufferPrivate(MediaSourcePrivate& parent, GuaranteedSerialFunctionDispatcher& dispatcher)
: m_mediaSource(&parent)
, m_dispatcher(dispatcher)
{
}
SourceBufferPrivate::~SourceBufferPrivate() = default;
void SourceBufferPrivate::removedFromMediaSource()
{
ALWAYS_LOG(LOGIDENTIFIER);
ensureOnDispatcher([protectedThis = Ref { *this }, this] {
// The SourceBufferClient holds a strong reference to SourceBufferPrivate at this stage
// and can be safely removed from the MediaSourcePrivate which also holds a strong reference.
if (RefPtr mediaSource = std::exchange(m_mediaSource, nullptr).get())
mediaSource->removeSourceBuffer(*this);
});
}
void SourceBufferPrivate::setClient(SourceBufferPrivateClient& client)
{
// Called on SourceBufferClient creation, immediately after SourceBufferPrivate creation.
m_client = client;
}
MediaTime SourceBufferPrivate::currentTime() const
{
if (RefPtr mediaSource = m_mediaSource.get())
return mediaSource->currentTime();
return { };
}
MediaTime SourceBufferPrivate::mediaSourceDuration() const
{
return m_mediaSourceDuration;
}
void SourceBufferPrivate::resetTimestampOffsetInTrackBuffers()
{
iterateTrackBuffers([&](auto& trackBuffer) {
trackBuffer.resetTimestampOffset();
});
}
void SourceBufferPrivate::resetTrackBuffers()
{
iterateTrackBuffers([&](auto& trackBuffer) {
trackBuffer.reset();
});
}
void SourceBufferPrivate::updateHighestPresentationTimestamp()
{
MediaTime highestTime;
iterateTrackBuffers([&](auto& trackBuffer) {
auto lastSampleIter = trackBuffer.samples().presentationOrder().rbegin();
if (lastSampleIter != trackBuffer.samples().presentationOrder().rend())
highestTime = std::max(highestTime, lastSampleIter->first);
});
if (m_highestPresentationTimestamp == highestTime)
return;
m_highestPresentationTimestamp = highestTime;
if (RefPtr client = this->client())
client->sourceBufferPrivateHighestPresentationTimestampChanged(m_highestPresentationTimestamp);
}
Ref<MediaPromise> SourceBufferPrivate::updateBuffered()
{
assertIsCurrent(m_dispatcher);
if (RefPtr mediaSource = m_mediaSource.get())
mediaSource->trackBufferedChanged(*this, trackBuffersRanges());
if (RefPtr client = this->client())
return client->sourceBufferPrivateBufferedChanged(trackBuffersRanges());
return MediaPromise::createAndReject(PlatformMediaError::BufferRemoved);
}
Vector<PlatformTimeRanges> SourceBufferPrivate::trackBuffersRanges() const
{
auto iteratorRange = makeSizedIteratorRange(m_trackBufferMap, m_trackBufferMap.begin(), m_trackBufferMap.end());
return WTF::map(iteratorRange, [](auto& trackBuffer) {
return trackBuffer.second->buffered();
});
}
void SourceBufferPrivate::reenqueSamples(TrackID trackID, NeedsFlush needsFlush)
{
RefPtr client = this->client();
if (!client)
return;
auto trackBuffer = m_trackBufferMap.find(trackID);
if (trackBuffer == m_trackBufferMap.end())
return;
trackBuffer->second->setNeedsReenqueueing(true);
reenqueueMediaForTime(trackBuffer->second, trackID, currentTime(), needsFlush);
}
Ref<SourceBufferPrivate::ComputeSeekPromise> SourceBufferPrivate::computeSeekTime(const SeekTarget& target)
{
RefPtr client = this->client();
if (!client)
return ComputeSeekPromise::createAndReject(PlatformMediaError::BufferRemoved);
auto seekTime = target.time;
if (target.negativeThreshold || target.positiveThreshold) {
iterateTrackBuffers([&](auto& trackBuffer) {
// Find the sample which contains the target time.
auto trackSeekTime = trackBuffer.findSeekTimeForTargetTime(target.time, target.negativeThreshold, target.positiveThreshold);
if (trackSeekTime.isValid() && abs(target.time - trackSeekTime) > abs(target.time - seekTime))
seekTime = trackSeekTime;
});
}
// When converting from a double-precision float to a MediaTime, a certain amount of precision is lost. If that
// results in a round-trip between `float in -> MediaTime -> float out` where in != out, we will wait forever for
// the time jump observer to fire.
if (seekTime.hasDoubleValue())
seekTime = MediaTime::createWithDouble(seekTime.toDouble(), MediaTime::DefaultTimeScale);
computeEvictionData();
return ComputeSeekPromise::createAndResolve(seekTime);
}
void SourceBufferPrivate::seekToTime(const MediaTime& time)
{
assertIsCurrent(m_dispatcher);
for (auto& trackBufferPair : m_trackBufferMap) {
TrackBuffer& trackBuffer = trackBufferPair.second;
TrackID trackID = trackBufferPair.first;
trackBuffer.setNeedsReenqueueing(true);
reenqueueMediaForTime(trackBuffer, trackID, time);
}
computeEvictionData();
}
void SourceBufferPrivate::clearTrackBuffers(bool shouldReportToClient)
{
iterateTrackBuffers([&](auto& trackBuffer) {
trackBuffer.clearSamples();
});
if (!shouldReportToClient)
return;
computeEvictionData();
updateHighestPresentationTimestamp();
updateBuffered();
}
Ref<SourceBufferPrivate::SamplesPromise> SourceBufferPrivate::bufferedSamplesForTrackId(TrackID trackId)
{
auto trackBuffer = m_trackBufferMap.find(trackId);
if (trackBuffer == m_trackBufferMap.end())
return SamplesPromise::createAndResolve(Vector<String> { });
return SamplesPromise::createAndResolve(WTF::map(trackBuffer->second->samples().decodeOrder(), [](auto& entry) {
return toString(entry.second.get());
}));
}
Ref<SourceBufferPrivate::SamplesPromise> SourceBufferPrivate::enqueuedSamplesForTrackID(TrackID)
{
return SamplesPromise::createAndResolve(Vector<String> { });
}
void SourceBufferPrivate::updateMinimumUpcomingPresentationTime(TrackBuffer& trackBuffer, TrackID trackID)
{
if (!canSetMinimumUpcomingPresentationTime(trackID))
return;
if (trackBuffer.updateMinimumUpcomingPresentationTime())
setMinimumUpcomingPresentationTime(trackID, trackBuffer.minimumEnqueuedPresentationTime());
}
void SourceBufferPrivate::setMediaSourceEnded(bool isEnded)
{
assertIsCurrent(m_dispatcher);
if (m_isMediaSourceEnded == isEnded)
return;
m_isMediaSourceEnded = isEnded;
if (m_isMediaSourceEnded) {
for (auto& trackBufferPair : m_trackBufferMap) {
TrackBuffer& trackBuffer = trackBufferPair.second;
TrackID trackID = trackBufferPair.first;
trySignalAllSamplesInTrackEnqueued(trackBuffer, trackID);
}
}
}
void SourceBufferPrivate::trySignalAllSamplesInTrackEnqueued(TrackBuffer& trackBuffer, TrackID trackID)
{
if (m_isMediaSourceEnded && trackBuffer.decodeQueue().empty()) {
DEBUG_LOG(LOGIDENTIFIER, "All samples in track \"", trackID, "\" enqueued.");
allSamplesInTrackEnqueued(trackID);
}
}
void SourceBufferPrivate::provideMediaData(TrackID trackID)
{
auto it = m_trackBufferMap.find(trackID);
if (it == m_trackBufferMap.end())
return;
provideMediaData(it->second, trackID);
}
void SourceBufferPrivate::provideMediaData(TrackBuffer& trackBuffer, TrackID trackID)
{
if (isSeeking())
return;
RefPtr client = this->client();
if (!client)
return; // detached.
#if !RELEASE_LOG_DISABLED
unsigned enqueuedSamples = 0;
#endif
if (trackBuffer.needsMinimumUpcomingPresentationTimeUpdating() && canSetMinimumUpcomingPresentationTime(trackID)) {
trackBuffer.setMinimumEnqueuedPresentationTime(MediaTime::invalidTime());
clearMinimumUpcomingPresentationTime(trackID);
}
while (!trackBuffer.decodeQueue().empty()) {
if (!isReadyForMoreSamples(trackID)) {
DEBUG_LOG(LOGIDENTIFIER, "bailing early, track id ", trackID, " is not ready for more data");
notifyClientWhenReadyForMoreSamples(trackID);
break;
}
// FIXME(rdar://problem/20635969): Remove this re-entrancy protection when the aforementioned radar is resolved; protecting
// against re-entrancy introduces a small inefficency when removing appended samples from the decode queue one at a time
// rather than when all samples have been enqueued.
Ref sample = trackBuffer.decodeQueue().begin()->second;
if (sample->decodeTime() > trackBuffer.enqueueDiscontinuityBoundary()) {
DEBUG_LOG(LOGIDENTIFIER, "bailing early because of unbuffered gap, new sample: ", sample->decodeTime(), " >= the current discontinuity boundary: ", trackBuffer.enqueueDiscontinuityBoundary());
break;
}
// Remove the sample from the decode queue now.
trackBuffer.decodeQueue().erase(trackBuffer.decodeQueue().begin());
MediaTime samplePresentationEnd = sample->presentationTime() + sample->duration();
if (trackBuffer.highestEnqueuedPresentationTime().isInvalid() || samplePresentationEnd > trackBuffer.highestEnqueuedPresentationTime())
trackBuffer.setHighestEnqueuedPresentationTime(WTFMove(samplePresentationEnd));
trackBuffer.setLastEnqueuedDecodeKey({ sample->decodeTime(), sample->presentationTime() });
trackBuffer.setEnqueueDiscontinuityBoundary(sample->decodeTime() + sample->duration() + discontinuityTolerance);
enqueueSample(WTFMove(sample), trackID);
#if !RELEASE_LOG_DISABLED
++enqueuedSamples;
#endif
}
updateMinimumUpcomingPresentationTime(trackBuffer, trackID);
#if !RELEASE_LOG_DISABLED
DEBUG_LOG(LOGIDENTIFIER, "enqueued ", enqueuedSamples, " samples, ", static_cast<uint64_t>(trackBuffer.decodeQueue().size()), " remaining");
#endif
trySignalAllSamplesInTrackEnqueued(trackBuffer, trackID);
}
void SourceBufferPrivate::reenqueueMediaForTime(TrackBuffer& trackBuffer, TrackID trackID, const MediaTime& time, NeedsFlush needsFlush)
{
if (needsFlush == NeedsFlush::Yes)
flush(trackID);
bool isEnded = false;
if (RefPtr mediaSource = m_mediaSource.get())
isEnded = mediaSource->isEnded();
if (trackBuffer.reenqueueMediaForTime(time, timeFudgeFactor(), isEnded))
provideMediaData(trackBuffer, trackID);
}
void SourceBufferPrivate::reenqueueMediaIfNeeded(const MediaTime& currentTime)
{
for (auto& trackBufferPair : m_trackBufferMap) {
TrackBuffer& trackBuffer = trackBufferPair.second;
TrackID trackID = trackBufferPair.first;
if (trackBuffer.needsReenqueueing()) {
DEBUG_LOG(LOGIDENTIFIER, "reenqueuing at time ", currentTime);
reenqueueMediaForTime(trackBuffer, trackID, currentTime);
} else
provideMediaData(trackBuffer, trackID);
}
}
static PlatformTimeRanges removeSamplesFromTrackBuffer(const DecodeOrderSampleMap::MapType& samples, TrackBuffer& trackBuffer, ASCIILiteral logPrefix)
{
return trackBuffer.removeSamples(samples, logPrefix);
}
MediaTime SourceBufferPrivate::findPreviousSyncSamplePresentationTime(const MediaTime& time)
{
MediaTime previousSyncSamplePresentationTime = time;
iterateTrackBuffers([&](auto& trackBuffer) {
auto sampleIterator = trackBuffer.samples().decodeOrder().findSyncSamplePriorToPresentationTime(time);
if (sampleIterator == trackBuffer.samples().decodeOrder().rend())
return;
const MediaTime& samplePresentationTime = sampleIterator->first.second;
if (samplePresentationTime < time)
previousSyncSamplePresentationTime = samplePresentationTime;
});
return previousSyncSamplePresentationTime;
}
Ref<MediaPromise> SourceBufferPrivate::removeCodedFrames(const MediaTime& start, const MediaTime& end, const MediaTime& currentTime)
{
m_currentSourceBufferOperation = protectedCurrentSourceBufferOperation()->whenSettled(m_dispatcher, [weakThis = ThreadSafeWeakPtr { *this }, start, end, currentTime](auto result) mutable -> Ref<OperationPromise> {
RefPtr protectedThis = weakThis.get();
if (!protectedThis || !result)
return OperationPromise::createAndReject(!result ? result.error() : PlatformMediaError::BufferRemoved);
protectedThis->removeCodedFramesInternal(start, end, currentTime);
protectedThis->computeEvictionData();
return protectedThis->updateBuffered().get();
});
return m_currentSourceBufferOperation.get();
}
void SourceBufferPrivate::removeCodedFramesInternal(const MediaTime& start, const MediaTime& end, const MediaTime& currentTime)
{
ASSERT(start < end);
if (start >= end)
return;
// 3.5.9 Coded Frame Removal Algorithm
// https://w3c.github.io/media-source/#sourcebuffer-coded-frame-removal
// 1. Let start be the starting presentation timestamp for the removal range.
// 2. Let end be the end presentation timestamp for the removal range.
// 3. For each track buffer in this source buffer, run the following steps:
iterateTrackBuffers([&](auto& trackBuffer) {
m_evictionData.contentSize -= trackBuffer.removeCodedFrames(start, end, currentTime);
// 3.4 If this object is in activeSourceBuffers, the current playback position is greater than or equal to start
// and less than the remove end timestamp, and HTMLMediaElement.readyState is greater than HAVE_METADATA, then set
// the HTMLMediaElement.readyState attribute to HAVE_METADATA and stall playback.
// This step will be performed in SourceBuffer::sourceBufferPrivateBufferedChanged
});
reenqueueMediaIfNeeded(currentTime);
// 4. If buffer full flag equals true and this object is ready to accept more bytes, then set the buffer full flag to false.
// No-op
updateHighestPresentationTimestamp();
}
size_t SourceBufferPrivate::platformEvictionThreshold() const
{
// Default implementation of the virtual function.
return 0;
}
Ref<GenericPromise> SourceBufferPrivate::setMaximumBufferSize(size_t size)
{
if (size != m_evictionData.maximumBufferSize) {
m_evictionData.maximumBufferSize = size;
computeEvictionData(ComputeEvictionDataRule::ForceNotification);
}
return GenericPromise::createAndResolve();
}
void SourceBufferPrivate::computeEvictionData(ComputeEvictionDataRule rule)
{
auto evictionData = m_evictionData;
m_evictionData.numMediaSamples = [&]() -> size_t {
const size_t evictionThreshold = platformEvictionThreshold();
if (!evictionThreshold)
return 0;
size_t currentSize = 0;
iterateTrackBuffers([&](auto& trackBuffer) {
currentSize += trackBuffer.samples().size();
});
return currentSize;
}();
m_evictionData.contentSize = totalTrackBufferSizeInBytes();
m_evictionData.evictableSize = [&]() -> int64_t {
RefPtr mediaSource = m_mediaSource.get();
if (!mediaSource)
return 0;
size_t evictableSize = 0;
auto currentTime = mediaSource->currentTime();
// We can evict everything from the beginning of the buffer to a maximum of timeChunk (3s) before currentTime (or the previous sync sample whichever comes first).
auto timeChunkAsMilliseconds = evictionAlgorithmTimeChunkLowThreshold;
const auto timeChunk = MediaTime(timeChunkAsMilliseconds, 1000);
const auto rangeStartBeforeCurrentTime = minimumBufferedTime();
const auto rangeEndBeforeCurrentTime = std::min(currentTime - timeChunk, findPreviousSyncSamplePresentationTime(currentTime));
if (rangeStartBeforeCurrentTime < rangeEndBeforeCurrentTime) {
iterateTrackBuffers([&](auto& trackBuffer) {
evictableSize += trackBuffer.codedFramesIntervalSize(rangeStartBeforeCurrentTime, rangeEndBeforeCurrentTime);
});
}
PlatformTimeRanges buffered { MediaTime::zeroTime(), MediaTime::positiveInfiniteTime() };
iterateTrackBuffers([&](const TrackBuffer& trackBuffer) {
buffered.intersectWith(trackBuffer.buffered());
});
// We can evict everything from currentTime+timeChunk (3s) to the end of the buffer, not contiguous in current range.
auto rangeStartAfterCurrentTime = currentTime + timeChunk;
const auto rangeEndAfterCurrentTime = buffered.maximumBufferedTime();
if (rangeStartAfterCurrentTime >= rangeEndAfterCurrentTime)
return evictableSize;
// Do not evict data from the time range that contains currentTime.
size_t currentTimeRange = buffered.find(currentTime);
size_t startTimeRange = buffered.find(rangeStartAfterCurrentTime);
if (currentTimeRange != notFound && startTimeRange == currentTimeRange) {
currentTimeRange++;
if (currentTimeRange == buffered.length())
return evictableSize;
rangeStartAfterCurrentTime = buffered.start(currentTimeRange);
if (rangeStartAfterCurrentTime >= rangeEndAfterCurrentTime)
return evictableSize;
}
iterateTrackBuffers([&](auto& trackBuffer) {
evictableSize += trackBuffer.codedFramesIntervalSize(rangeStartAfterCurrentTime, rangeEndAfterCurrentTime);
});
return evictableSize;
}();
if (RefPtr client = this->client(); client && (rule == ComputeEvictionDataRule::ForceNotification || evictionData != m_evictionData))
client->sourceBufferPrivateEvictionDataChanged(m_evictionData);
}
bool SourceBufferPrivate::hasTooManySamples() const
{
size_t evictionThreshold = platformEvictionThreshold();
return evictionThreshold && m_evictionData.numMediaSamples > evictionThreshold;
}
void SourceBufferPrivate::asyncEvictCodedFrames(uint64_t newDataSize, const MediaTime& currentTime)
{
m_currentSourceBufferOperation = protectedCurrentSourceBufferOperation()->whenSettled(m_dispatcher, [weakThis = ThreadSafeWeakPtr { *this }, newDataSize, currentTime](auto result) mutable -> Ref<OperationPromise> {
RefPtr protectedThis = weakThis.get();
if (!protectedThis || !result)
return OperationPromise::createAndReject(!result ? result.error() : PlatformMediaError::BufferRemoved);
protectedThis->evictCodedFrames(newDataSize, currentTime);
return OperationPromise::createAndResolve();
});
}
bool SourceBufferPrivate::evictCodedFrames(uint64_t newDataSize, const MediaTime& currentTime)
{
// 3.5.13 Coded Frame Eviction Algorithm
// http://www.w3.org/TR/media-source/#sourcebuffer-coded-frame-eviction
RefPtr client = this->client();
if (!client)
return true;
// If the algorithm here is modified, computeEvictionData() must be updated accordingly.
// This algorithm is run to free up space in this source buffer when new data is appended.
// 1. Let new data equal the data that is about to be appended to this SourceBuffer.
// 2. If the buffer full flag equals false, then abort these steps.
bool isBufferFull = isBufferFullFor(newDataSize) || hasTooManySamples();
if (!isBufferFull)
return false;
// 3. Let removal ranges equal a list of presentation time ranges that can be evicted from
// the presentation to make room for the new data.
// NOTE: begin by removing data from the beginning of the buffered ranges, timeChunk seconds at
// a time, up to timeChunk seconds before currentTime.
#if !RELEASE_LOG_DISABLED
uint64_t initialBufferedSize = m_evictionData.contentSize;
DEBUG_LOG(LOGIDENTIFIER, "currentTime = ", currentTime, ", require ", initialBufferedSize + newDataSize, " bytes, maximum buffer size is ", m_evictionData.maximumBufferSize);
#endif
isBufferFull = evictFrames(newDataSize, currentTime);
computeEvictionData();
if (!isBufferFull) {
#if !RELEASE_LOG_DISABLED
DEBUG_LOG(LOGIDENTIFIER, "evicted ", initialBufferedSize - m_evictionData.contentSize);
#endif
return false;
}
#if !RELEASE_LOG_DISABLED
ERROR_LOG(LOGIDENTIFIER, "FAILED to free enough after evicting ", initialBufferedSize - m_evictionData.contentSize);
#endif
return true;
}
bool SourceBufferPrivate::isBufferFullFor(uint64_t requiredSize) const
{
ASSERT(m_evictionData.contentSize == totalTrackBufferSizeInBytes());
auto totalRequired = checkedSum<uint64_t>(m_evictionData.contentSize, requiredSize);
if (totalRequired.hasOverflowed())
return true;
return totalRequired >= m_evictionData.maximumBufferSize;
}
bool SourceBufferPrivate::canAppend(uint64_t requiredSize) const
{
ASSERT(m_evictionData.contentSize == totalTrackBufferSizeInBytes());
return m_evictionData.contentSize - m_evictionData.evictableSize + requiredSize <= m_evictionData.maximumBufferSize;
}
uint64_t SourceBufferPrivate::totalTrackBufferSizeInBytes() const
{
uint64_t totalSizeInBytes = 0;
iterateTrackBuffers([&](auto& trackBuffer) {
totalSizeInBytes += trackBuffer.samples().sizeInBytes();
});
return totalSizeInBytes;
}
void SourceBufferPrivate::addTrackBuffer(TrackID trackId, RefPtr<MediaDescription>&& description)
{
ASSERT(m_trackBufferMap.find(trackId) == m_trackBufferMap.end());
m_hasAudio = m_hasAudio || description->isAudio();
m_hasVideo = m_hasVideo || description->isVideo();
// 5.2.9 Add the track description for this track to the track buffer.
auto trackBuffer = TrackBuffer::create(WTFMove(description), discontinuityTolerance);
#if !RELEASE_LOG_DISABLED
trackBuffer->setLogger(protectedLogger(), logIdentifier());
#endif
m_trackBufferMap.try_emplace(trackId, WTFMove(trackBuffer));
}
void SourceBufferPrivate::updateTrackIds(Vector<std::pair<TrackID, TrackID>>&& trackIdPairs)
{
assertIsCurrent(m_dispatcher);
auto trackBufferMap = std::exchange(m_trackBufferMap, { });
for (auto& trackIdPair : trackIdPairs) {
auto oldId = trackIdPair.first;
auto newId = trackIdPair.second;
ASSERT(oldId != newId);
auto trackBufferNode = trackBufferMap.extract(oldId);
if (!trackBufferNode)
continue;
trackBufferNode.key() = newId;
m_trackBufferMap.insert(WTFMove(trackBufferNode));
}
}
void SourceBufferPrivate::setAllTrackBuffersNeedRandomAccess()
{
assertIsCurrent(m_dispatcher);
iterateTrackBuffers([&](auto& trackBuffer) {
trackBuffer.setNeedRandomAccessFlag(true);
});
}
Ref<MediaPromise> SourceBufferPrivate::protectedCurrentAppendProcessing() const
{
return m_currentAppendProcessing;
}
void SourceBufferPrivate::didReceiveInitializationSegment(InitializationSegment&& segment)
{
assertIsCurrent(m_dispatcher);
processPendingMediaSamples();
auto segmentCopy = segment;
m_currentAppendProcessing = protectedCurrentAppendProcessing()->whenSettled(m_dispatcher, [segment = WTFMove(segment), weakThis = ThreadSafeWeakPtr { *this }, abortCount = m_abortCount](auto result) mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis)
return MediaPromise::createAndReject(PlatformMediaError::BufferRemoved);
RefPtr client = protectedThis->client();
if (!client)
return MediaPromise::createAndReject(PlatformMediaError::BufferRemoved);
if (abortCount != protectedThis->m_abortCount) {
protectedThis->processInitializationSegment({ });
return MediaPromise::createAndResolve();
}
if (!result || ((protectedThis->m_receivedFirstInitializationSegment && !protectedThis->validateInitializationSegment(segment)) || !protectedThis->precheckInitializationSegment(segment))) {
protectedThis->processInitializationSegment({ });
return MediaPromise::createAndReject(!result ? result.error() : PlatformMediaError::ParsingError);
}
protectedThis->m_lastInitializationSegment = segment;
return client->sourceBufferPrivateDidReceiveInitializationSegment(WTFMove(segment));
})->whenSettled(m_dispatcher, [weakThis = ThreadSafeWeakPtr { *this }, segment = WTFMove(segmentCopy)] (auto result) mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis)
return MediaPromise::createAndReject(PlatformMediaError::BufferRemoved);
// We don't check for abort here as we need to complete the already started initialization segment.
protectedThis->m_receivedFirstInitializationSegment = true;
protectedThis->m_pendingInitializationSegmentForChangeType = false;
protectedThis->processInitializationSegment(!result ? std::nullopt : std::make_optional(WTFMove(segment)));
return MediaPromise::createAndSettle(WTFMove(result));
});
}
void SourceBufferPrivate::didUpdateFormatDescriptionForTrackId(Ref<TrackInfo>&& formatDescription, uint64_t trackId)
{
m_currentAppendProcessing = protectedCurrentAppendProcessing()->whenSettled(m_dispatcher, [weakThis = ThreadSafeWeakPtr { *this }, formatDescription = WTFMove(formatDescription), trackId] (auto result) mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis || !result)
return MediaPromise::createAndReject(!result ? result.error() : PlatformMediaError::BufferRemoved);
protectedThis->processFormatDescriptionForTrackId(WTFMove(formatDescription), trackId);
return MediaPromise::createAndResolve();
});
}
bool SourceBufferPrivate::validateInitializationSegment(const SourceBufferPrivateClient::InitializationSegment& segment)
{
// * If more than one track for a single type are present (ie 2 audio tracks), then the Track
// IDs match the ones in the first initialization segment.
if (segment.audioTracks.size() >= 2) {
for (auto& audioTrackInfo : segment.audioTracks) {
if (m_trackBufferMap.find(audioTrackInfo.track->id()) == m_trackBufferMap.end())
return false;
}
}
if (segment.videoTracks.size() >= 2) {
for (auto& videoTrackInfo : segment.videoTracks) {
if (m_trackBufferMap.find(videoTrackInfo.track->id()) == m_trackBufferMap.end())
return false;
}
}
if (segment.textTracks.size() >= 2) {
for (auto& textTrackInfo : segment.videoTracks) {
if (m_trackBufferMap.find(textTrackInfo.track->id()) == m_trackBufferMap.end())
return false;
}
}
return true;
}
void SourceBufferPrivate::didReceiveSample(Ref<MediaSample>&& sample)
{
DEBUG_LOG(LOGIDENTIFIER, sample.get());
m_pendingSamples.append(WTFMove(sample));
}
Ref<MediaPromise> SourceBufferPrivate::append(Ref<SharedBuffer>&& buffer)
{
m_currentSourceBufferOperation = protectedCurrentSourceBufferOperation()->whenSettled(m_dispatcher, [weakThis = ThreadSafeWeakPtr { *this }, buffer = WTFMove(buffer), abortCount = m_abortCount](auto result) mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis || !result)
return MediaPromise::createAndReject(!result ? result.error() : PlatformMediaError::BufferRemoved);
// We have fully completed the previous append operation, we can start a new promise chain.
protectedThis->m_currentAppendProcessing = MediaPromise::createAndResolve();
if (buffer->isEmpty())
return MediaPromise::createAndResolve();
if (abortCount != protectedThis->m_abortCount)
return MediaPromise::createAndResolve();
// Before the promise returned by appendInternal is resolved, the various callbacks would have been called and populating m_currentAppendProcessing.
return protectedThis->appendInternal(WTFMove(buffer));
})->whenSettled(m_dispatcher, [weakThis = ThreadSafeWeakPtr { *this }](auto result) mutable -> Ref<OperationPromise> {
RefPtr protectedThis = weakThis.get();
if (!protectedThis)
return OperationPromise::createAndReject(PlatformMediaError::BufferRemoved);
protectedThis->processPendingMediaSamples();
// We need to wait for m_currentAppendOperation to be settled (which will occur once all the init and media segments have been processed)
return protectedThis->protectedCurrentAppendProcessing()->whenSettled(protectedThis->m_dispatcher, [previousResult = WTFMove(result)](auto result) {
return (previousResult && result) ? OperationPromise::createAndResolve() : OperationPromise::createAndReject(!result ? result.error() : previousResult.error());
});
})->whenSettled(m_dispatcher, [weakThis = ThreadSafeWeakPtr { * this }, abortCount = m_abortCount](auto result) mutable -> Ref<OperationPromise> {
RefPtr protectedThis = weakThis.get();
if (!protectedThis || !result)
return OperationPromise::createAndReject(!result ? result.error() : PlatformMediaError::BufferRemoved);
protectedThis->computeEvictionData();
if (abortCount != protectedThis->m_abortCount)
return OperationPromise::createAndResolve();
RefPtr client = protectedThis->client();
if (!client)
return OperationPromise::createAndReject(PlatformMediaError::BufferRemoved);
// Resolve the changes in TrackBuffers' buffered ranges
// into the SourceBuffer's buffered ranges
Vector<Ref<MediaPromise>> promises;
promises.append(protectedThis->updateBuffered());
if (protectedThis->m_groupEndTimestamp > protectedThis->mediaSourceDuration()) {
// https://w3c.github.io/media-source/#sourcebuffer-coded-frame-processing
// 5. If the media segment contains data beyond the current duration, then run the duration change algorithm with new
// duration set to the maximum of the current duration and the group end timestamp.
promises.append(client->sourceBufferPrivateDurationChanged(protectedThis->m_groupEndTimestamp));
}
return MediaPromise::all(promises).get();
});
return m_currentSourceBufferOperation.get();
}
void SourceBufferPrivate::processPendingMediaSamples()
{
if (m_pendingSamples.isEmpty())
return;
auto samples = std::exchange(m_pendingSamples, { });
m_currentAppendProcessing = protectedCurrentAppendProcessing()->whenSettled(m_dispatcher, [weakThis = ThreadSafeWeakPtr { *this }, samples = WTFMove(samples), abortCount = m_abortCount](auto result) mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis || !result)
return MediaPromise::createAndReject(!result ? result.error() : PlatformMediaError::BufferRemoved);
if (abortCount != protectedThis->m_abortCount)
return MediaPromise::createAndResolve();
RefPtr client = protectedThis->client();
if (!client)
return MediaPromise::createAndReject(PlatformMediaError::BufferRemoved);
for (auto& sample : samples) {
if (!protectedThis->processMediaSample(*client, WTFMove(sample)))
return MediaPromise::createAndReject(PlatformMediaError::ParsingError);
}
return MediaPromise::createAndResolve();
});
}
bool SourceBufferPrivate::processMediaSample(SourceBufferPrivateClient& client, Ref<MediaSample>&& sample)
{
// 3.5.1 Segment Parser Loop
// 6.1 If the first initialization segment received flag is false, (Note: Issue # 155 & changeType()
// algorithm) or the pending initialization segment for changeType flag is true, (End note)
// then run the append error algorithm
// with the decode error parameter set to true and abort this algorithm.
// Note: current design makes SourceBuffer somehow ignorant of append state - it's more a thing
// of SourceBufferPrivate. That's why this check can't really be done in appendInternal.
// unless we force some kind of design with state machine switching.
if (!m_receivedFirstInitializationSegment || m_pendingInitializationSegmentForChangeType)
return false;
if (!isMediaSampleAllowed(sample))
return true;
// 3.5.8 Coded Frame Processing
// http://www.w3.org/TR/media-source/#sourcebuffer-coded-frame-processing
// When complete coded frames have been parsed by the segment parser loop then the following steps
// are run:
// 1. For each coded frame in the media segment run the following steps:
// 1.1. Loop Top
do {
MediaTime presentationTimestamp;
MediaTime decodeTimestamp;
// NOTE: this is out-of-order, but we need the timescale from the
// sample's duration for timestamp generation.
// 1.2 Let frame duration be a double precision floating point representation of the coded frame's
// duration in seconds.
MediaTime frameDuration = sample->duration();
if (m_shouldGenerateTimestamps) {
// ↳ If generate timestamps flag equals true:
// 1. Let presentation timestamp equal 0.
// NOTE: Use the duration timscale for the presentation timestamp, as this will eliminate
// timescale rounding when generating timestamps.
presentationTimestamp = { 0, frameDuration.timeScale() };
// 2. Let decode timestamp equal 0.
decodeTimestamp = { 0, frameDuration.timeScale() };
} else {
// ↳ Otherwise:
// 1. Let presentation timestamp be a double precision floating point representation of
// the coded frame's presentation timestamp in seconds.
presentationTimestamp = sample->presentationTime();
// 2. Let decode timestamp be a double precision floating point representation of the coded frame's
// decode timestamp in seconds.
decodeTimestamp = sample->decodeTime();
}
// 1.3 If mode equals "sequence" and group start timestamp is set, then run the following steps:
if (m_appendMode == SourceBufferAppendMode::Sequence && m_groupStartTimestamp.isValid()) {
// 1.3.1 Set timestampOffset equal to group start timestamp - presentation timestamp.
m_timestampOffset = m_groupStartTimestamp - presentationTimestamp;
iterateTrackBuffers([&](auto& trackBuffer) {
trackBuffer.resetTimestampOffset();
});
// 1.3.2 Set group end timestamp equal to group start timestamp.
m_groupEndTimestamp = m_groupStartTimestamp;
// 1.3.3 Set the need random access point flag on all track buffers to true.
iterateTrackBuffers([&](auto& trackBuffer) {
trackBuffer.setNeedRandomAccessFlag(true);
});
// 1.3.4 Unset group start timestamp.
m_groupStartTimestamp = MediaTime::invalidTime();
}
// NOTE: this is out-of-order, but we need TrackBuffer to be able to cache the results of timestamp offset rounding
// 1.5 Let track buffer equal the track buffer that the coded frame will be added to.
auto trackID = sample->trackID();
auto it = m_trackBufferMap.find(trackID);
if (it == m_trackBufferMap.end()) {
// The client managed to append a sample with a trackID not present in the initialization
// segment. This would be a good place to post an message to the developer console.
client.sourceBufferPrivateDidDropSample();
return true;
}
TrackBuffer& trackBuffer = it->second;
MediaTime microsecond(1, 1000000);
// 1.4 If timestampOffset is not 0, then run the following steps:
if (m_timestampOffset) {
if (!trackBuffer.roundedTimestampOffset().isValid() || presentationTimestamp.timeScale() != trackBuffer.lastFrameTimescale()) {
trackBuffer.setLastFrameTimescale(presentationTimestamp.timeScale());
trackBuffer.setRoundedTimestampOffset(m_timestampOffset, trackBuffer.lastFrameTimescale(), microsecond);
}
// 1.4.1 Add timestampOffset to the presentation timestamp.
presentationTimestamp += trackBuffer.roundedTimestampOffset();
// 1.4.2 Add timestampOffset to the decode timestamp.
decodeTimestamp += trackBuffer.roundedTimestampOffset();
}
// 1.6 ↳ If last decode timestamp for track buffer is set and decode timestamp is less than last
// decode timestamp:
// OR
// ↳ If last decode timestamp for track buffer is set and the difference between decode timestamp and
// last decode timestamp is greater than 2 times last frame duration:
if (trackBuffer.lastDecodeTimestamp().isValid() && (decodeTimestamp < trackBuffer.lastDecodeTimestamp()
|| (trackBuffer.greatestFrameDuration().isValid() && decodeTimestamp - trackBuffer.lastDecodeTimestamp() > (trackBuffer.greatestFrameDuration() * 2)))) {
// 1.6.1:
if (m_appendMode == SourceBufferAppendMode::Segments) {
// ↳ If mode equals "segments":
// Set group end timestamp to presentation timestamp.
m_groupEndTimestamp = presentationTimestamp;
} else {
// ↳ If mode equals "sequence":
// Set group start timestamp equal to the group end timestamp.
m_groupStartTimestamp = m_groupEndTimestamp;
}
// 1.6.2 Unset the last decode timestamp on all track buffers.
// 1.6.3 Unset the last frame duration on all track buffers.
// 1.6.4 Unset the highest presentation timestamp on all track buffers.
// 1.6.5 Set the need random access point flag on all track buffers to true.
resetTrackBuffers();
// 1.6.6 Jump to the Loop Top step above to restart processing of the current coded frame.
continue;
}
if (m_appendMode == SourceBufferAppendMode::Sequence) {
// Use the generated timestamps instead of the sample's timestamps.
sample->setTimestamps(presentationTimestamp, decodeTimestamp);
} else if (trackBuffer.roundedTimestampOffset()) {
// Reflect the timestamp offset into the sample.
sample->offsetTimestampsBy(trackBuffer.roundedTimestampOffset());
}
DEBUG_LOG(LOGIDENTIFIER, sample.get());
// 1.7 Let frame end timestamp equal the sum of presentation timestamp and frame duration.
MediaTime frameEndTimestamp = presentationTimestamp + frameDuration;
// 1.8 If presentation timestamp is less than appendWindowStart, then set the need random access
// point flag to true, drop the coded frame, and jump to the top of the loop to start processing
// the next coded frame.
// 1.9 If frame end timestamp is greater than appendWindowEnd, then set the need random access
// point flag to true, drop the coded frame, and jump to the top of the loop to start processing
// the next coded frame.
if (presentationTimestamp < m_appendWindowStart || frameEndTimestamp > m_appendWindowEnd) {
// 1.8 Note.
// Some implementations MAY choose to collect some of these coded frames with presentation
// timestamp less than appendWindowStart and use them to generate a splice at the first coded
// frame that has a presentation timestamp greater than or equal to appendWindowStart even if
// that frame is not a random access point. Supporting this requires multiple decoders or
// faster than real-time decoding so for now this behavior will not be a normative
// requirement.
// 1.9 Note.
// Some implementations MAY choose to collect coded frames with presentation timestamp less
// than appendWindowEnd and frame end timestamp greater than appendWindowEnd and use them to
// generate a splice across the portion of the collected coded frames within the append
// window at time of collection, and the beginning portion of later processed frames which
// only partially overlap the end of the collected coded frames. Supporting this requires
// multiple decoders or faster than real-time decoding so for now this behavior will not be a
// normative requirement. In conjunction with collecting coded frames that span
// appendWindowStart, implementations MAY thus support gapless audio splicing.
// Audio MediaSamples are typically made of packed audio samples. Trim sample to make it fit within the appendWindow.
if (sample->isDivisable()) {
std::pair<RefPtr<MediaSample>, RefPtr<MediaSample>> replacementSamples = sample->divide(m_appendWindowStart);
if (replacementSamples.second) {
ASSERT(replacementSamples.second->presentationTime() >= m_appendWindowStart);
replacementSamples = replacementSamples.second->divide(m_appendWindowEnd, MediaSample::UseEndTime::Use);
if (replacementSamples.first) {
sample = replacementSamples.first.releaseNonNull();
ASSERT(sample->presentationTime() >= m_appendWindowStart && sample->presentationTime() + sample->duration() <= m_appendWindowEnd);
if (m_appendMode != SourceBufferAppendMode::Sequence && trackBuffer.roundedTimestampOffset())
sample->offsetTimestampsBy(-trackBuffer.roundedTimestampOffset());
continue;
}
}
}
trackBuffer.setNeedRandomAccessFlag(true);
client.sourceBufferPrivateDidDropSample();
return true;
}
// 1.10 If the need random access point flag on track buffer equals true, then run the following steps:
if (trackBuffer.needRandomAccessFlag()) {
// 1.11.1 If the coded frame is not a random access point, then drop the coded frame and jump
// to the top of the loop to start processing the next coded frame.
if (!sample->isSync()) {
client.sourceBufferPrivateDidDropSample();
return true;
}
// 1.11.2 Set the need random access point flag on track buffer to false.
trackBuffer.setNeedRandomAccessFlag(false);
}
// 1.11 Let spliced audio frame be an unset variable for holding audio splice information
// 1.12 Let spliced timed text frame be an unset variable for holding timed text splice information
// FIXME: Add support for sample splicing.
SampleMap erasedSamples;
// 1.13 If last decode timestamp for track buffer is unset and presentation timestamp
// falls within the presentation interval of a coded frame in track buffer, then run the
// following steps:
if (trackBuffer.lastDecodeTimestamp().isInvalid()) {
auto iter = trackBuffer.samples().presentationOrder().findSampleContainingPresentationTime(presentationTimestamp);
if (iter != trackBuffer.samples().presentationOrder().end()) {
// 1.13.1 Let overlapped frame be the coded frame in track buffer that matches the condition above.
Ref overlappedFrame = iter->second;
// 1.13.2 If track buffer contains audio coded frames:
// Run the audio splice frame algorithm and if a splice frame is returned, assign it to
// spliced audio frame.
// FIXME: Add support for sample splicing.
// If track buffer contains video coded frames:
if (RefPtr description = trackBuffer.description(); description && description->isVideo()) {
// 1.13.2.1 Let overlapped frame presentation timestamp equal the presentation timestamp
// of overlapped frame.
MediaTime overlappedFramePresentationTimestamp = overlappedFrame->presentationTime();
// 1.13.2.2 Let remove window timestamp equal overlapped frame presentation timestamp
// plus 1 microsecond.
MediaTime removeWindowTimestamp = overlappedFramePresentationTimestamp + microsecond;
// 1.13.2.3 If the presentation timestamp is less than the remove window timestamp,
// then remove overlapped frame and any coded frames that depend on it from track buffer.
if (presentationTimestamp < removeWindowTimestamp)
erasedSamples.addSample(iter->second.copyRef());
}
// If track buffer contains timed text coded frames:
// Run the text splice frame algorithm and if a splice frame is returned, assign it to spliced timed text frame.
// FIXME: Add support for sample splicing.
}
}
// 1.14 Remove existing coded frames in track buffer:
// If highest presentation timestamp for track buffer is not set:
if (trackBuffer.highestPresentationTimestamp().isInvalid()) {
// Remove all coded frames from track buffer that have a presentation timestamp greater than or
// equal to presentation timestamp and less than frame end timestamp.
auto iterPair = trackBuffer.samples().presentationOrder().findSamplesBetweenPresentationTimes(presentationTimestamp, frameEndTimestamp);
if (iterPair.first != trackBuffer.samples().presentationOrder().end())
erasedSamples.addRange(iterPair.first, iterPair.second);
}
// When appending media containing B-frames (media whose samples' presentation timestamps
// do not increase monotonically, the prior erase steps could leave samples in the trackBuffer
// which will be disconnected from its previous I-frame. If the incoming frame is an I-frame,
// remove all samples in decode order between the incoming I-frame's decode timestamp and the
// next I-frame that is presented after the incoming I-frame. See <https://github.com/w3c/media-source/issues/187>
// for a discussion of how the MSE specification should handle this scenario.
do {
if (!sample->isSync())
break;
DecodeOrderSampleMap::KeyType decodeKey(sample->decodeTime(), sample->presentationTime());
auto nextSampleInDecodeOrder = trackBuffer.samples().decodeOrder().findSampleAfterDecodeKey(decodeKey);
if (nextSampleInDecodeOrder == trackBuffer.samples().decodeOrder().end())
break;
if (Ref second = nextSampleInDecodeOrder->second; second->isSync() && second->presentationTime() > sample->presentationTime())
break;
auto nextSyncSample = trackBuffer.samples().decodeOrder().findSyncSampleAfterDecodeIterator(nextSampleInDecodeOrder);
while (nextSyncSample != trackBuffer.samples().decodeOrder().end() && Ref { nextSyncSample->second }->presentationTime() <= sample->presentationTime())
nextSyncSample = trackBuffer.samples().decodeOrder().findSyncSampleAfterDecodeIterator(nextSyncSample);
INFO_LOG(LOGIDENTIFIER, "Discovered out-of-order frames, from: ", nextSampleInDecodeOrder->second.get(), " to: ", (nextSyncSample == trackBuffer.samples().decodeOrder().end() ? "[end]"_s : toString(nextSyncSample->second.get())));
erasedSamples.addRange(nextSampleInDecodeOrder, nextSyncSample);
} while (false);
// There are many files out there where the frame times are not perfectly contiguous and may have small overlaps
// between the beginning of a frame and the end of the previous one; therefore a tolerance is needed whenever
// durations are considered.
// For instance, most WebM files are muxed rounded to the millisecond (the default TimecodeScale of the format)
// but their durations use a finer timescale (causing a sub-millisecond overlap). More rarely, there are also
// MP4 files with slightly off tfdt boxes, presenting a similar problem at the beginning of each fragment.
const MediaTime contiguousFrameTolerance = MediaTime(1, 1000);
// If highest presentation timestamp for track buffer is set and less than or equal to presentation timestamp
if (trackBuffer.highestPresentationTimestamp().isValid() && trackBuffer.highestPresentationTimestamp() - contiguousFrameTolerance <= presentationTimestamp) {
// Remove all coded frames from track buffer that have a presentation timestamp greater than highest
// presentation timestamp and less than or equal to frame end timestamp.
do {
// NOTE: Searching from the end of the trackBuffer will be vastly more efficient if the search range is
// near the end of the buffered range. Use a linear-backwards search if the search range is within one
// frame duration of the end:
if (!trackBuffer.buffered().length())
break;
MediaTime highestBufferedTime = trackBuffer.maximumBufferedTime();
MediaTime eraseBeginTime = trackBuffer.highestPresentationTimestamp();
MediaTime eraseEndTime = frameEndTimestamp - contiguousFrameTolerance;
if (eraseEndTime <= eraseBeginTime)
break;
PresentationOrderSampleMap::iterator_range range;
if (highestBufferedTime - trackBuffer.highestPresentationTimestamp() < trackBuffer.lastFrameDuration()) {
// If the new frame is at the end of the buffered ranges, perform a sequential scan from end (O(1)).
range = trackBuffer.samples().presentationOrder().findSamplesBetweenPresentationTimesFromEnd(eraseBeginTime, eraseEndTime);
} else {
// In any other case, perform a binary search (O(log(n)).
range = trackBuffer.samples().presentationOrder().findSamplesBetweenPresentationTimes(eraseBeginTime, eraseEndTime);
}
if (range.first != trackBuffer.samples().presentationOrder().end())
erasedSamples.addRange(range.first, range.second);
} while (false);
}
// 1.15 Remove decoding dependencies of the coded frames removed in the previous step:
DecodeOrderSampleMap::MapType dependentSamples;
if (!erasedSamples.empty()) {
// If detailed information about decoding dependencies is available:
// FIXME: Add support for detailed dependency information
// Otherwise: Remove all coded frames between the coded frames removed in the previous step
// and the next random access point after those removed frames.
auto firstDecodeIter = trackBuffer.samples().decodeOrder().findSampleWithDecodeKey(erasedSamples.decodeOrder().begin()->first);
auto lastDecodeIter = trackBuffer.samples().decodeOrder().findSampleWithDecodeKey(erasedSamples.decodeOrder().rbegin()->first);
auto nextSyncIter = trackBuffer.samples().decodeOrder().findSyncSampleAfterDecodeIterator(lastDecodeIter);
dependentSamples.insert(firstDecodeIter, nextSyncIter);
// NOTE: in the case of b-frames, the previous step may leave in place samples whose presentation
// timestamp < presentationTime, but whose decode timestamp >= decodeTime. These will eventually cause
// a decode error if left in place, so remove these samples as well.
DecodeOrderSampleMap::KeyType decodeKey(sample->decodeTime(), sample->presentationTime());
auto samplesWithHigherDecodeTimes = trackBuffer.samples().decodeOrder().findSamplesBetweenDecodeKeys(decodeKey, erasedSamples.decodeOrder().begin()->first);
if (samplesWithHigherDecodeTimes.first != samplesWithHigherDecodeTimes.second)
dependentSamples.insert(samplesWithHigherDecodeTimes.first, samplesWithHigherDecodeTimes.second);
PlatformTimeRanges erasedRanges = removeSamplesFromTrackBuffer(dependentSamples, trackBuffer, "didReceiveSample"_s);
// Only force the TrackBuffer to re-enqueue if the removed ranges overlap with enqueued and possibly
// not yet displayed samples.
MediaTime currentTime = this->currentTime();
if (trackBuffer.highestEnqueuedPresentationTime().isValid() && currentTime < trackBuffer.highestEnqueuedPresentationTime()) {
PlatformTimeRanges possiblyEnqueuedRanges(currentTime, trackBuffer.highestEnqueuedPresentationTime());
possiblyEnqueuedRanges.intersectWith(erasedRanges);
if (possiblyEnqueuedRanges.length())
trackBuffer.setNeedsReenqueueing(true);
}
erasedRanges.invert();
trackBuffer.buffered().intersectWith(erasedRanges);
}
// 1.16 If spliced audio frame is set:
// Add spliced audio frame to the track buffer.
// If spliced timed text frame is set:
// Add spliced timed text frame to the track buffer.
// FIXME: Add support for sample splicing.
// Otherwise:
// Add the coded frame with the presentation timestamp, decode timestamp, and frame duration to the track buffer.
trackBuffer.addSample(sample);
// Note: The terminology here is confusing: "enqueuing" means providing a frame to the inner media framework.
// First, frames are inserted in the decode queue; later, at the end of the append some of the frames in the
// decode may be "enqueued" (sent to the inner media framework) in `provideMediaData()`.
//
// In order to check whether a frame should be added to the decode queue we check that it does not precede any
// frame already enqueued.
//
// Note that adding a frame to the decode queue is no guarantee that it will be actually enqueued at that point.
// If the frame is after the discontinuity boundary, the enqueueing algorithm will hold it there until samples
// with earlier timestamps are enqueued. The decode queue is not FIFO, but rather an ordered map.
DecodeOrderSampleMap::KeyType decodeKey(sample->decodeTime(), sample->presentationTime());
if (trackBuffer.lastEnqueuedDecodeKey().first.isInvalid() || decodeKey > trackBuffer.lastEnqueuedDecodeKey()) {
trackBuffer.decodeQueue().insert(DecodeOrderSampleMap::MapType::value_type(decodeKey, sample));
if (trackBuffer.minimumEnqueuedPresentationTime().isValid() && sample->presentationTime() < trackBuffer.minimumEnqueuedPresentationTime())
trackBuffer.setNeedsMinimumUpcomingPresentationTimeUpdating(true);
}
// NOTE: the spec considers the need to check the last frame duration but doesn't specify if that last frame
// is the one prior in presentation or decode order.
// So instead, as a workaround we use the largest frame duration seen in the current coded frame group (as defined in https://www.w3.org/TR/media-source/#coded-frame-group.
if (trackBuffer.lastDecodeTimestamp().isValid()) {
MediaTime lastDecodeDuration = decodeTimestamp - trackBuffer.lastDecodeTimestamp();
if (!trackBuffer.greatestFrameDuration().isValid())
trackBuffer.setGreatestFrameDuration(std::max(lastDecodeDuration, frameDuration));
else
trackBuffer.setGreatestFrameDuration(std::max({ trackBuffer.greatestFrameDuration(), frameDuration, lastDecodeDuration }));
}
// 1.17 Set last decode timestamp for track buffer to decode timestamp.
trackBuffer.setLastDecodeTimestamp(WTFMove(decodeTimestamp));
// 1.18 Set last frame duration for track buffer to frame duration.
trackBuffer.setLastFrameDuration(frameDuration);
// 1.19 If highest presentation timestamp for track buffer is unset or frame end timestamp is greater
// than highest presentation timestamp, then set highest presentation timestamp for track buffer
// to frame end timestamp.
if (trackBuffer.highestPresentationTimestamp().isInvalid() || frameEndTimestamp > trackBuffer.highestPresentationTimestamp())
trackBuffer.setHighestPresentationTimestamp(frameEndTimestamp);
// 1.20 If frame end timestamp is greater than group end timestamp, then set group end timestamp equal
// to frame end timestamp.
if (m_groupEndTimestamp.isInvalid() || frameEndTimestamp > m_groupEndTimestamp)
m_groupEndTimestamp = frameEndTimestamp;
// 1.21 If generate timestamps flag equals true, then set timestampOffset equal to frame end timestamp.
if (m_shouldGenerateTimestamps) {
m_timestampOffset = frameEndTimestamp;
resetTimestampOffsetInTrackBuffers();
}
auto presentationEndTime = presentationTimestamp + frameDuration;
trackBuffer.addBufferedRange(presentationTimestamp, presentationEndTime, AddTimeRangeOption::EliminateSmallGaps);
break;
} while (true);
// Steps 2-4 will be handled by MediaSource::monitorSourceBuffers()
// Step 5 will be handlded by SourceBufferPrivate::appendCompleted()
updateHighestPresentationTimestamp();
return true;
}
void SourceBufferPrivate::abort()
{
m_abortCount++;
}
void SourceBufferPrivate::resetParserState()
{
m_currentSourceBufferOperation = protectedCurrentSourceBufferOperation()->whenSettled(m_dispatcher, [weakThis = ThreadSafeWeakPtr { *this }](auto result) mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis)
return OperationPromise::createAndReject(PlatformMediaError::BufferRemoved);
protectedThis->resetParserStateInternal();
return OperationPromise::createAndSettle(WTFMove(result));
});
}
void SourceBufferPrivate::memoryPressure(const MediaTime& currentTime)
{
ALWAYS_LOG(LOGIDENTIFIER, "isActive = ", isActive());
m_currentSourceBufferOperation = protectedCurrentSourceBufferOperation()->whenSettled(m_dispatcher, [weakThis = ThreadSafeWeakPtr { *this }, currentTime](auto result) mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis)
return OperationPromise::createAndReject(PlatformMediaError::BufferRemoved);
if (protectedThis->isActive())
protectedThis->evictFrames(protectedThis->m_evictionData.maximumBufferSize, currentTime);
else {
protectedThis->resetTrackBuffers();
protectedThis->clearTrackBuffers(true);
}
protectedThis->updateBuffered();
protectedThis->computeEvictionData();
return OperationPromise::createAndSettle(WTFMove(result));
});
}
auto SourceBufferPrivate::protectedCurrentSourceBufferOperation() const -> Ref<OperationPromise>
{
return m_currentSourceBufferOperation;
}
MediaTime SourceBufferPrivate::minimumBufferedTime() const
{
MediaTime minimumTime = MediaTime::positiveInfiniteTime();
iterateTrackBuffers([&](const TrackBuffer& trackBuffer) {
minimumTime = std::min(minimumTime, trackBuffer.buffered().minimumBufferedTime());
});
return minimumTime;
}
MediaTime SourceBufferPrivate::maximumBufferedTime() const
{
MediaTime maximumTime = MediaTime::negativeInfiniteTime();
iterateTrackBuffers([&](const TrackBuffer& trackBuffer) {
maximumTime = std::max(maximumTime, trackBuffer.buffered().maximumBufferedTime());
});
return maximumTime;
}
bool SourceBufferPrivate::evictFrames(uint64_t newDataSize, const MediaTime& currentTime)
{
auto isBufferFull = true;
// FIXME: All this is nice but we should take into account negative playback rate and begin from after current time
// and be more conservative with before current time.
auto timeChunkAsMilliseconds = evictionAlgorithmInitialTimeChunk;
do {
const auto timeChunk = MediaTime(timeChunkAsMilliseconds, 1000);
const auto maximumRangeEnd = std::min(currentTime - timeChunk, findPreviousSyncSamplePresentationTime(currentTime));
do {
auto rangeStartBeforeCurrentTime = minimumBufferedTime();
auto rangeEndBeforeCurrentTime = std::min(rangeStartBeforeCurrentTime + timeChunk, maximumRangeEnd);
if (rangeStartBeforeCurrentTime >= rangeEndBeforeCurrentTime)
break;
// 4. For each range in removal ranges, run the coded frame removal algorithm with start and
// end equal to the removal range start and end timestamp respectively.
removeCodedFramesInternal(rangeStartBeforeCurrentTime, rangeEndBeforeCurrentTime, currentTime);
if (minimumBufferedTime() == rangeStartBeforeCurrentTime)
break; // Nothing evicted.
isBufferFull = isBufferFullFor(newDataSize);
} while (isBufferFull);
timeChunkAsMilliseconds /= 2;
} while (isBufferFull && timeChunkAsMilliseconds >= evictionAlgorithmTimeChunkLowThreshold);
if (!isBufferFull)
return false;
timeChunkAsMilliseconds = evictionAlgorithmInitialTimeChunk;
do {
const auto timeChunk = MediaTime(timeChunkAsMilliseconds, 1000);
const auto minimumRangeStartAfterCurrentTime = currentTime + timeChunk;
do {
PlatformTimeRanges buffered { MediaTime::zeroTime(), MediaTime::positiveInfiniteTime() };
iterateTrackBuffers([&](const TrackBuffer& trackBuffer) {
buffered.intersectWith(trackBuffer.buffered());
});
auto rangeEndAfterCurrentTime = buffered.maximumBufferedTime();
auto rangeStartAfterCurrentTime = std::max(minimumRangeStartAfterCurrentTime, rangeEndAfterCurrentTime - timeChunk);
if (rangeStartAfterCurrentTime >= rangeEndAfterCurrentTime)
break;
// Do not evict data from the time range that contains currentTime.
size_t currentTimeRange = buffered.find(currentTime);
size_t startTimeRange = buffered.find(rangeStartAfterCurrentTime);
if (currentTimeRange != notFound && startTimeRange == currentTimeRange) {
currentTimeRange++;
if (currentTimeRange == buffered.length())
break;
rangeStartAfterCurrentTime = buffered.start(currentTimeRange);
if (rangeStartAfterCurrentTime >= rangeEndAfterCurrentTime)
break;
}
// 4. For each range in removal ranges, run the coded frame removal algorithm with start and
// end equal to the removal range start and end timestamp respectively.
removeCodedFramesInternal(rangeStartAfterCurrentTime, rangeEndAfterCurrentTime, currentTime);
if (maximumBufferedTime() == rangeEndAfterCurrentTime)
break; // Nothing evicted.
isBufferFull = isBufferFullFor(newDataSize);
} while (isBufferFull);
timeChunkAsMilliseconds /= 2;
} while (isBufferFull && timeChunkAsMilliseconds >= evictionAlgorithmTimeChunkLowThreshold);
return isBufferFull;
}
void SourceBufferPrivate::setActive(bool isActive)
{
assertIsCurrent(m_dispatcher);
ALWAYS_LOG(LOGIDENTIFIER, isActive);
m_isActive = isActive;
if (RefPtr mediaSource = m_mediaSource.get())
mediaSource->sourceBufferPrivateDidChangeActiveState(*this, isActive);
}
void SourceBufferPrivate::iterateTrackBuffers(NOESCAPE const Function<void(TrackBuffer&)>& func)
{
for (auto& pair : m_trackBufferMap)
func(pair.second);
}
void SourceBufferPrivate::iterateTrackBuffers(NOESCAPE const Function<void(const TrackBuffer&)>& func) const
{
for (auto& pair : m_trackBufferMap)
func(pair.second);
}
RefPtr<SourceBufferPrivateClient> SourceBufferPrivate::client() const
{
return m_client.get();
}
void SourceBufferPrivate::ensureOnDispatcher(Function<void()>&& function) const
{
if (m_dispatcher->isCurrent()) {
function();
return;
}
m_dispatcher->dispatch(WTFMove(function));
}
void SourceBufferPrivate::attach()
{
ensureOnDispatcher([protectedThis = Ref { *this }, this] {
if (!m_lastInitializationSegment)
return;
RefPtr client = this->client();
if (!client)
return;
auto segment = *m_lastInitializationSegment;
client->sourceBufferPrivateDidAttach(WTFMove(segment))
->whenSettled(m_dispatcher, [weakThis = ThreadSafeWeakPtr { *this }, segment = *m_lastInitializationSegment] (auto&& result) mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis || !result)
return;
protectedThis->processInitializationSegment(WTFMove(segment));
// When a MediaSource is re-attached part of the loading the media resources algorithm (https://html.spec.whatwg.org/multipage/media.html#loading-the-media-resourceas)
// the playback position is to be set back to 0.
protectedThis->seekToTime(MediaTime::zeroTime());
});
});
}
} // namespace WebCore
#endif
|