Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(410)

Unified Diff: media/base/demuxer.h

Issue 523283002: media: Introduce DemuxerStreamProvider interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/base/demuxer.h
diff --git a/media/base/demuxer.h b/media/base/demuxer.h
index c6b2515f178cbf883f7bde39df3dd2850145ca3e..7b0957be1dbe3cadcb9a264702ed295f60004c99 100644
--- a/media/base/demuxer.h
+++ b/media/base/demuxer.h
@@ -10,6 +10,7 @@
#include "base/time/time.h"
#include "media/base/data_source.h"
#include "media/base/demuxer_stream.h"
+#include "media/base/demuxer_stream_provider.h"
#include "media/base/media_export.h"
#include "media/base/pipeline_status.h"
@@ -42,14 +43,8 @@ class MEDIA_EXPORT DemuxerHost {
virtual ~DemuxerHost();
};
-class MEDIA_EXPORT Demuxer {
+class MEDIA_EXPORT Demuxer : public DemuxerStreamProvider {
scherkus (not reviewing) 2014/09/05 23:23:21 alternatively we can go the composition route and
xhwang 2014/09/09 21:25:01 Yeah, currently both ChunkDemuxer and FFD provides
public:
- enum Liveness {
- LIVENESS_UNKNOWN,
- LIVENESS_RECORDED,
- LIVENESS_LIVE,
- };
-
// A new potentially encrypted stream has been parsed.
// First parameter - The type of initialization data.
// Second parameter - The initialization data associated with the stream.
@@ -78,16 +73,13 @@ class MEDIA_EXPORT Demuxer {
// call any method (including Stop()) after a demuxer has stopped.
virtual void Stop(const base::Closure& callback) = 0;
- // Returns the first stream of the given stream type (which is not allowed
- // to be DemuxerStream::TEXT), or NULL if that type of stream is not present.
- virtual DemuxerStream* GetStream(DemuxerStream::Type type) = 0;
-
// Returns Time represented by presentation timestamp 0.
// If the timstamps are not associated with a Time, then
// a null Time is returned.
virtual base::Time GetTimelineOffset() const = 0;
- // Returns liveness of the stream, i.e. whether it is recorded or live.
+ // DemuxerStreamProvider implementation.
scherkus (not reviewing) 2014/09/05 23:23:22 I forget this part of C++ -- but do we need to dup
xhwang 2014/09/09 21:25:01 No, it's not needed. Removed.
+ virtual DemuxerStream* GetStream(DemuxerStream::Type type) = 0;
virtual Liveness GetLiveness() const = 0;
private:
« no previous file with comments | « media/base/BUILD.gn ('k') | media/base/demuxer.cc » ('j') | media/base/demuxer_stream_provider.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698