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

Side by Side Diff: media/base/filter_collection.h

Issue 8686010: <video> decode in hardware! (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Drop INTRA/CONSTRAINED in profile, add missing 'virtual', add MEDIA_EXPORT, fix RemoveFilter loop Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MEDIA_BASE_FILTER_COLLECTION_H_ 5 #ifndef MEDIA_BASE_FILTER_COLLECTION_H_
6 #define MEDIA_BASE_FILTER_COLLECTION_H_ 6 #define MEDIA_BASE_FILTER_COLLECTION_H_
7 7
8 #include <list> 8 #include <list>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 22 matching lines...) Expand all
33 33
34 // Is the collection empty? 34 // Is the collection empty?
35 bool IsEmpty() const; 35 bool IsEmpty() const;
36 36
37 // Remove remaining filters. 37 // Remove remaining filters.
38 void Clear(); 38 void Clear();
39 39
40 // Selects a filter of the specified type from the collection. 40 // Selects a filter of the specified type from the collection.
41 // If the required filter cannot be found, NULL is returned. 41 // If the required filter cannot be found, NULL is returned.
42 // If a filter is returned it is removed from the collection. 42 // If a filter is returned it is removed from the collection.
43 // Filters are selected in FIFO order.
43 void SelectVideoDecoder(scoped_refptr<VideoDecoder>* filter_out); 44 void SelectVideoDecoder(scoped_refptr<VideoDecoder>* filter_out);
44 void SelectAudioDecoder(scoped_refptr<AudioDecoder>* filter_out); 45 void SelectAudioDecoder(scoped_refptr<AudioDecoder>* filter_out);
45 void SelectVideoRenderer(scoped_refptr<VideoRenderer>* filter_out); 46 void SelectVideoRenderer(scoped_refptr<VideoRenderer>* filter_out);
46 void SelectAudioRenderer(scoped_refptr<AudioRenderer>* filter_out); 47 void SelectAudioRenderer(scoped_refptr<AudioRenderer>* filter_out);
47 48
48 private: 49 private:
49 // Identifies the type of filter implementation. Each filter has to be one of 50 // Identifies the type of filter implementation. Each filter has to be one of
50 // the following types. This is used to mark, identify, and support 51 // the following types. This is used to mark, identify, and support
51 // downcasting of different filter types stored in the filters_ list. 52 // downcasting of different filter types stored in the filters_ list.
52 enum FilterType { 53 enum FilterType {
(...skipping 19 matching lines...) Expand all
72 73
73 // Helper function that searches the filters list for a specific filter type. 74 // Helper function that searches the filters list for a specific filter type.
74 void SelectFilter(FilterType filter_type, scoped_refptr<Filter>* filter_out); 75 void SelectFilter(FilterType filter_type, scoped_refptr<Filter>* filter_out);
75 76
76 DISALLOW_COPY_AND_ASSIGN(FilterCollection); 77 DISALLOW_COPY_AND_ASSIGN(FilterCollection);
77 }; 78 };
78 79
79 } // namespace media 80 } // namespace media
80 81
81 #endif // MEDIA_BASE_FILTER_COLLECTION_H_ 82 #endif // MEDIA_BASE_FILTER_COLLECTION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698