Closed
Bug 1202332
Opened 9 years ago
Closed 9 years ago
XiphExtradataToHeaders miscalculates final header length
Categories
(Core :: Audio/Video: Playback, defect)
Core
Audio/Video: Playback
Tracking
()
RESOLVED
FIXED
mozilla43
People
(Reporter: kinetik, Assigned: kinetik)
References
Details
Attachments
(1 file)
555 bytes,
patch
|
derf
:
review+
|
Details | Diff | Splinter Review |
For an example file I have on hand, the CodecPrivate element contains 4022 bytes, with 3 headers, and the first two headers are 30 and 81 bytes. XiphExtradataToheaders calculates the final header size as 4019 (4022 - 1 - 1 - 1) rather than 3908 (4022 - 1 - 1 - 1 - 30 - 81).
This is caused by XiphExtradataToheaders using aAvailable without subtracting total (the running count of header sizes) as the final header size.
Attachment #8657679 -
Flags: review?(tterribe)
Updated•9 years ago
|
Attachment #8657679 -
Flags: review?(tterribe) → review+
Comment 2•9 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla43
Updated•9 years ago
|
status-firefox42:
--- → affected
Comment 3•9 years ago
|
||
You need to log in
before you can comment on or make changes to this bug.
Description
•