Closed Bug 634747 Opened 14 years ago Closed 11 years ago

ASSERTION: Seek target should lie inside the first audio block after seek: '!audio || (audio->mTime <= seekTime && seekTime <= audio->mTime + audio->mDuration)'

Categories

(Core :: Audio/Video, defect)

defect
Not set
minor

Tracking

()

RESOLVED FIXED
mozilla22

People

(Reporter: MatsPalmgren_bugz, Assigned: cpearce)

References

()

Details

(Keywords: assertion, reproducible)

Attachments

(1 obsolete file)

STEPS TO REPRODUCE
1. load the URL
2. while the video is playing: drag the thumb back and forth and
   click on the progress bar repeatedly, as much as possible

ACTUAL RESULTS
The following three assertions are easily reproducible, the first one
being the most frequent.

###!!! ASSERTION: Seek target should lie inside the first audio block after seek: '!audio || (audio->mTime <= seekTime && seekTime <= audio->mTime + audio->mDuration)', file content/media/nsBuiltinDecoderStateMachine.cpp, line 1131
###!!! ASSERTION: Start time must be before end time: 'startTime < endTime', file content/media/nsBuiltinDecoderReader.cpp, line 264
###!!! ASSERTION: Seek target should lie inside the first frame after seek: 'video->mTime <= seekTime && seekTime <= video->mEndTime', file content/media/nsBuiltinDecoderStateMachine.cpp, line 1139

PLATFORMS AND BUILDS TESTED
Local Firefox debug build mozilla-central (rev 52246c1b1799) on Linux x86-64
Updated my local build to see if bug 634787 fixed it.  It seems the 2nd
assertion above is now fixed.  But I can still reproduce the other two,
and a new one:

###!!! ASSERTION: Seek target should lie inside the first frame after seek: 'video->mTime <= seekTime && seekTime <= video->mEndTime', file content/media/nsBuiltinDecoderStateMachine.cpp, line 1109
###!!! ASSERTION: Seek target should lie inside the first audio block after seek: '!audio || (audio->mTime <= seekTime && seekTime <= audio->mTime + audio->mDuration)', file content/media/nsBuiltinDecoderStateMachine.cpp, line 1101
###!!! ASSERTION: Page read cursor should be inside range: 'mPageOffset <= endOffset', file content/media/ogg/nsOggReader.cpp, line 1510
WARNING: Hit audio event queue max.: file content/media/nsAudioAvailableEventManager.cpp, line 169
Additionally, quite often when I click on the progress bar nothing happens,
the video just continues to play where it is.  I expect it to start playing
where I clicked.  This worked fine when I reported this bug so the new
behavior appears to be a regression. (This is on x86-64 Linux)
(In reply to comment #2)
> Additionally, quite often when I click on the progress bar nothing happens,
> the video just continues to play where it is.

Are you clicking close to the current playback position label? You could be seeing bug 488082.
Yes, it looks like it's bug 488082, I probably just didn't notice it earlier.
(In reply to comment #0)
> ###!!! ASSERTION: Seek target should lie inside the first audio block after
> seek: '!audio || (audio->mTime <= seekTime && seekTime <= audio->mTime +
> audio->mDuration)', file content/media/nsBuiltinDecoderStateMachine.cpp, line
> 1131

I caught this in a debugger. It looks like this is caused by rounding off when we convert samples numbers to ms. We end up timestamping a SoundData with mTime=n mDuration=d, and the next SoundData gets mTime=n+d+1 (it should be mTime=n+d), and the assertion fires when the seek target is n+d and when DecodeToTarget() finishes with the mTime=n+d+1 SoundData at the front of the audio queue.

Perhaps we should store SoundData start times as sample offsets, not ms, and when comparing SoundData sample-offsets with a ms value, convert the ms to samples and compare them as samples?

I haven't investigated the other assertions Mats reported yet.
OS: Linux → All
Hardware: x86_64 → All
Depends on: 641718
No longer depends on: 641718
Depends on: 845676
I've removed the assertion expectations from test_seek.html in bug 845676, but
this assertions failed on Windows, so it went orange:

  ASSERTION: Seek target should lie inside the first frame after seek: 'video->mTime <= seekTime && seekTime <= video->mEndTime'

This assertions seems to occur only on Windows. This patch makes test go green
tbpl for now, but I'll keep in on my list of assertion failures to investigate.
Attachment #719941 - Flags: review?(emorley)
Assignee: nobody → paul
Attachment #719941 - Flags: review?(emorley) → review+
https://hg.mozilla.org/integration/mozilla-inbound/rev/396454d30d27
https://hg.mozilla.org/mozilla-central/rev/396454d30d27
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla22
Assignee: paul → cpearce
Attachment #719941 - Attachment is obsolete: true
Status: RESOLVED → REOPENED
Attachment #8381133 - Flags: review?(kinetik)
Resolution: FIXED → ---
Attachment #8381133 - Flags: review?(kinetik) → review+
Another one bites the dust.
https://tbpl.mozilla.org/?tree=Try&rev=b47218e78209
https://hg.mozilla.org/mozilla-central/rev/63efb2b87c92
Status: REOPENED → RESOLVED
Closed: 12 years ago11 years ago
Resolution: --- → FIXED
Depends on: 981687
Flags: needinfo?(mats)
Please don't needinfo me without a specific question.

If you just want to test Bugzilla features, use landfill instead:
https://landfill.bugzilla.org
Flags: needinfo?(mats)
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: