Closed
Bug 712738
Opened 13 years ago
Closed 13 years ago
Clang Static Analysis: Assigned value is garbage or undefined in content/media/nsBuiltinDecoder.cpp
Categories
(Core :: Audio/Video, defect)
Core
Audio/Video
Tracking
()
RESOLVED
FIXED
mozilla12
People
(Reporter: decoder, Assigned: cpearce)
References
(Blocks 1 open bug, )
Details
Attachments
(1 file)
6.71 KB,
patch
|
kinetik
:
review+
|
Details | Diff | Splinter Review |
The following report (in the URL field) has been generated by static analysis using Clang.
It would be good if someone familiar with the particular code could check if
- this is really a bug or a false positive
- and/or if it makes sense to adjust the code (even if there is not a real bug present, e.g. by adding a missing initialization).
In this particular report, the problem seems to be that the conditional statement in line 341 could be reached without | rightBound | being initialized at all. Even if this can't happen (which has to be checked), it would be good to initialize the doubles to default values unless there is some reason not to do so.
Assignee | ||
Comment 1•13 years ago
|
||
Thanks. We can hit this case when playing a live stream and we seek past the last buffered range. We need to fix this.
Component: General → Video/Audio
QA Contact: general → video.audio
Assignee | ||
Comment 2•13 years ago
|
||
* Fix seek logic to clamp seek target to end of last buffered range if seek target is after the end of last buffered range on live streams.
* When playing streams for which we can't fnd a duration, we update nsBuiltinDecoderStateMachine::mEndTime in AdvanceFrame(), but if we're downloading data faster than playing it, mEndTime will thus lag far behind the actual end of downloaded data. So update mEndTime in nsBuiltinDecoderStateMachine::NotifyDataArrived() as more data comes in. We need to do this so that the seek target clamping in nsBuiltinDecoderStateMachine::Seek() clamps to the end of buffered data, rather than to the end of played data.
Comment 3•13 years ago
|
||
Comment on attachment 586288 [details] [diff] [review]
Patch v1
Review of attachment 586288 [details] [diff] [review]:
-----------------------------------------------------------------
::: content/media/nsBuiltinDecoder.cpp
@@ +315,5 @@
> }
>
> // If the position we want to seek to is not in a seekable range, we seek
> // to the closest position in the seekable ranges instead . If two positions
> // are equaly close, we seek to the closest position from the currentTime.
Nitpicks: mind fixing the "equaly" typo here? And also the extra space near "instead .". And "immediatly" in the comment above IsInRanges.
::: content/media/nsBuiltinDecoderStateMachine.cpp
@@ +1137,5 @@
> + // since we haven't played the frame at the end of buffered data. So update
> + // mEndTime here as new data is downloaded to prevent such a lag.
> + nsTimeRanges buffered;
> + if (mDecoder->IsInfinite() &&
> + !mDecoder->IsSeekable() &&
IsInfinite() is false for seekable streams, so it shouldn't be necessary to test !IsSeekable(). And if we did have infinite seekable streams, I think it would make sense to update the end time using this logic anyway.
Attachment #586288 -
Flags: review?(kinetik) → review+
Assignee | ||
Comment 4•13 years ago
|
||
Target Milestone: --- → mozilla12
Comment 5•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•