Bug 1819048: Remove this bad assertion. r=webrtc-reviewers,jib

Differential Revision: https://phabricator.services.mozilla.com/D174978
This commit is contained in:
Byron Campen 2023-04-07 20:28:26 +00:00
Родитель f091cc0b8c
Коммит cf3eab3073
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -37,7 +37,8 @@ void TaskQueueFrameDecodeScheduler::ScheduleFrame(
uint32_t rtp,
FrameDecodeTiming::FrameSchedule schedule,
FrameReleaseCallback cb) {
RTC_DCHECK(!stopped_) << "Can not schedule frames after stopped.";
// Mozilla modification, until https://bugs.webrtc.org/14944 is fixed
//RTC_DCHECK(!stopped_) << "Can not schedule frames after stopped.";
RTC_DCHECK(!scheduled_rtp_.has_value())
<< "Can not schedule two frames for release at the same time.";
RTC_DCHECK(cb);