Bug 1105201 - [RTSP] Can't play if tap pause/play continuously. r=bechen

This commit is contained in:
Jonathan Hao 2014-12-02 15:59:27 -08:00
Родитель 1ecb1d9e8e
Коммит 7523ecd024
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -49,7 +49,7 @@ public:
// ChannelMediaResource, it has a "cache" that can store the whole streaming // ChannelMediaResource, it has a "cache" that can store the whole streaming
// data so the |GetBuffered| function can retrieve useful time ranges. // data so the |GetBuffered| function can retrieve useful time ranges.
virtual nsresult GetBuffered(dom::TimeRanges* aBuffered) MOZ_OVERRIDE { virtual nsresult GetBuffered(dom::TimeRanges* aBuffered) MOZ_OVERRIDE {
return NS_OK; return NS_ERROR_NOT_IMPLEMENTED;
} }
virtual void SetIdle() MOZ_OVERRIDE; virtual void SetIdle() MOZ_OVERRIDE;

Просмотреть файл

@ -59,7 +59,7 @@ public:
// ChannelMediaResource, it has a "cache" that can store the whole streaming // ChannelMediaResource, it has a "cache" that can store the whole streaming
// data so the |GetBuffered| function can retrieve useful time ranges. // data so the |GetBuffered| function can retrieve useful time ranges.
virtual nsresult GetBuffered(mozilla::dom::TimeRanges* aBuffered) MOZ_FINAL MOZ_OVERRIDE { virtual nsresult GetBuffered(mozilla::dom::TimeRanges* aBuffered) MOZ_FINAL MOZ_OVERRIDE {
return NS_OK; return NS_ERROR_NOT_IMPLEMENTED;
} }
virtual void SetIdle() MOZ_OVERRIDE; virtual void SetIdle() MOZ_OVERRIDE;