Closed
Bug 569458
Opened 15 years ago
Closed 15 years ago
mDataOffset is unused in nsVideoInfo
Categories
(Core :: Audio/Video, defect)
Core
Audio/Video
Tracking
()
RESOLVED
INVALID
People
(Reporter: timeless, Unassigned)
References
(Blocks 1 open bug, )
Details
(Keywords: coverity)
55 class nsVideoInfo {
56 public:
57 nsVideoInfo()
58 : mFramerate(0.0),
59 mPixelAspectRatio(1.0),
60 mCallbackPeriod(1),
61 mAudioRate(0),
62 mAudioChannels(0),
63 mFrame(0,0),
64 mHasAudio(PR_FALSE),
65 mHasVideo(PR_FALSE)
66 {}
90 // The offset of the first non-header page in the file, in bytes.
91 // Used to seek to the start of the media.
92 PRInt64 mDataOffset;
Comment 1•15 years ago
|
||
It's used here:
http://mxr.mozilla.org/mozilla-central/source/content/media/nsBuiltinDecoderStateMachine.cpp#1178
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → INVALID
Updated•7 years ago
|
Blocks: coverity-analysis
You need to log in
before you can comment on or make changes to this bug.
Description
•