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

Unified Diff: media/filters/audio_file_reader.h

Issue 7203002: Adding ChunkDemuxer implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed unit tests and nits Created 9 years, 6 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
« no previous file with comments | « media/ffmpeg/ffmpeg_common.cc ('k') | media/filters/audio_file_reader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/audio_file_reader.h
diff --git a/media/filters/audio_file_reader.h b/media/filters/audio_file_reader.h
index ae929b60548ead48f6b9cb8af28a7cde25dc5649..470caa36838b5762c2246abb2b3ab40893ddd6d2 100644
--- a/media/filters/audio_file_reader.h
+++ b/media/filters/audio_file_reader.h
@@ -54,26 +54,6 @@ class AudioFileReader {
DISALLOW_COPY_AND_ASSIGN(AudioFileReader);
};
-class InMemoryDataReader : public FFmpegURLProtocol {
- public:
- // Ownership of |data| is not taken, instead it simply maintains
- // a weak reference.
- InMemoryDataReader(const char* data, int64 size);
-
- virtual int Read(int size, uint8* data);
- virtual bool GetPosition(int64* position_out);
- virtual bool SetPosition(int64 position);
- virtual bool GetSize(int64* size_out);
- virtual bool IsStreaming();
-
- private:
- const char* data_;
- int64 size_;
- int64 position_;
-
- DISALLOW_COPY_AND_ASSIGN(InMemoryDataReader);
-};
-
} // namespace media
#endif // MEDIA_FILTERS_AUDIO_FILE_READER_H_
« no previous file with comments | « media/ffmpeg/ffmpeg_common.cc ('k') | media/filters/audio_file_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698