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

Unified Diff: webkit/media/filter_helpers.h

Issue 14348007: Reland: Remove reference counting from media::VideoDecoder and friends. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years, 8 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/tools/player_x11/player_x11.cc ('k') | webkit/media/filter_helpers.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/media/filter_helpers.h
diff --git a/webkit/media/filter_helpers.h b/webkit/media/filter_helpers.h
deleted file mode 100644
index 29a3e3817816aea6dad07e00a9bed6ab33d54c26..0000000000000000000000000000000000000000
--- a/webkit/media/filter_helpers.h
+++ /dev/null
@@ -1,49 +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.
-
-#ifndef WEBKIT_MEDIA_FILTER_HELPERS_H_
-#define WEBKIT_MEDIA_FILTER_HELPERS_H_
-
-#include "base/basictypes.h"
-#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_vector.h"
-// TODO(fgalligan): Remove the dependency on FFmpeg.
-#include "media/filters/ffmpeg_demuxer.h"
-
-namespace base {
-class MessageLoopProxy;
-}
-
-namespace media {
-class AudioDecoder;
-class ChunkDemuxer;
-class DataSource;
-class FilterCollection;
-}
-
-namespace webkit_media {
-
-// Creates and adds the default set of audio decoders to |audio_decoders|.
-void AddDefaultAudioDecoders(
- const scoped_refptr<base::MessageLoopProxy>& message_loop,
- ScopedVector<media::AudioDecoder>* audio_decoders);
-
-// Builds the required filters for handling media source URLs, adds them to
-// |filter_collection|.
-void BuildMediaSourceCollection(
- const scoped_refptr<media::ChunkDemuxer>& demuxer,
- const scoped_refptr<base::MessageLoopProxy>& message_loop,
- media::FilterCollection* filter_collection);
-
-// Builds the required filters for handling regular URLs and adds them to
-// |filter_collection| and fills |video_decoder| returning true if successful.
-void BuildDefaultCollection(
- const scoped_refptr<media::DataSource>& data_source,
- const scoped_refptr<base::MessageLoopProxy>& message_loop,
- media::FilterCollection* filter_collection,
- const media::FFmpegNeedKeyCB& need_key_cb);
-
-} // webkit_media
-
-#endif // WEBKIT_MEDIA_FILTER_HELPERS_H_
« no previous file with comments | « media/tools/player_x11/player_x11.cc ('k') | webkit/media/filter_helpers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698