Backed out changeset d42a36615c7e (bug 983204) for build bustage on an otherwise CLOSED TREE

This commit is contained in:
Wes Kocher 2014-03-13 19:35:02 -07:00
parent 174410b971
commit 352ea6fe5b
2 changed files with 0 additions and 15 deletions

View File

@ -299,18 +299,6 @@ nsresult RtspOmxReader::Seek(int64_t aTime, int64_t aStartTime,
return MediaOmxReader::Seek(aTime, aStartTime, aEndTime, aCurrentTime);
}
nsresult
RtspOmxReader::ReadMetadata(MediaInfo* aInfo,
MetadataTags** aTags)
{
nsresult rv = MediaOmxReader::ReadMetadata();
NS_ENSURE_SUCCESS(rv, rv);
SetActive();
return NS_OK;
}
void RtspOmxReader::SetIdle() {
// Need to pause RTSP streaming OMXCodec decoding.
if (mRtspResource) {

View File

@ -44,9 +44,6 @@ public:
MOZ_COUNT_DTOR(RtspOmxReader);
}
virtual nsresult ReadMetadata(MediaInfo* aInfo,
MetadataTags** aTags) MOZ_OVERRIDE;
// Implement a time-based seek instead of byte-based..
virtual nsresult Seek(int64_t aTime, int64_t aStartTime, int64_t aEndTime,
int64_t aCurrentTime) MOZ_FINAL MOZ_OVERRIDE;