Closed
Bug 1112528
Opened 11 years ago
Closed 8 years ago
[RTSP] Implement statistics for RTSP
Categories
(Firefox OS Graveyard :: RTSP, defect)
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: jhao, Unassigned)
Details
Currently, the RtspMediaResource::GetLength() is
> virtual int64_t GetLength() MOZ_OVERRIDE {
> if (mRealTime) {
> return -1;
> }
> return 0;
> }
For non-live RTSP streams, this method should return a nonzero length.
| Reporter | ||
Comment 1•11 years ago
|
||
There are other unimplemented methods of RtspMediaResource that may be used by MediaDecoder::GetStatistics(), such as GetDownloadRate() and GetCachedDataEnd(). Currently, they all returns dummy values, so the statistics for RTSP streams are not reliable at all.
Summary: Implement RtspMediaResource::GetLength() → [RTSP] Implement statistics for RTSP
Comment 2•8 years ago
|
||
Firefox OS is not being worked on
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•