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

Unified Diff: media/filters/ffmpeg_demuxer_factory.h

Issue 9860027: Remove DemuxerFactory and URL parameter from Pipeline. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src
Patch Set: added some todos Created 8 years, 9 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/filters/ffmpeg_demuxer_factory.h
diff --git a/media/filters/ffmpeg_demuxer_factory.h b/media/filters/ffmpeg_demuxer_factory.h
deleted file mode 100644
index 6a9463fe8837b81dde45d0d53ff62f19814e26ad..0000000000000000000000000000000000000000
--- a/media/filters/ffmpeg_demuxer_factory.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Implements the DemuxerFactory interface using FFmpegDemuxer.
-
-#ifndef MEDIA_FILTERS_FFMPEG_DEMUXER_FACTORY_H_
-#define MEDIA_FILTERS_FFMPEG_DEMUXER_FACTORY_H_
-
-#include "base/basictypes.h"
-#include "base/memory/scoped_ptr.h"
-#include "media/base/demuxer_factory.h"
-
-class MessageLoop;
-
-namespace media {
-
-class MEDIA_EXPORT FFmpegDemuxerFactory : public DemuxerFactory {
- public:
- FFmpegDemuxerFactory(const scoped_refptr<DataSource>& data_source,
- MessageLoop* loop);
- virtual ~FFmpegDemuxerFactory();
-
- // DemuxerFactory methods.
- virtual void Build(const std::string& url, const BuildCallback& cb) OVERRIDE;
-
- private:
- scoped_refptr<DataSource> data_source_;
- MessageLoop* loop_; // Unowned.
-
- DISALLOW_IMPLICIT_CONSTRUCTORS(FFmpegDemuxerFactory);
-};
-
-} // namespace media
-
-#endif // MEDIA_FILTERS_FFMPEG_DEMUXER_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698