summaryrefslogtreecommitdiffstats
path: root/media/base/media_format.h
diff options
context:
space:
mode:
authorscherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-03 00:27:49 +0000
committerscherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-03 00:27:49 +0000
commitf8db8138e0bf38e223af520e721f1b18c2338586 (patch)
treefed715fb20dd16998c16ca54b4c7da7ae94372f1 /media/base/media_format.h
parent1937df51d1bdcabbad5523243108d4bba40a1695 (diff)
downloadchromium_src-f8db8138e0bf38e223af520e721f1b18c2338586.zip
chromium_src-f8db8138e0bf38e223af520e721f1b18c2338586.tar.gz
chromium_src-f8db8138e0bf38e223af520e721f1b18c2338586.tar.bz2
Rename MediaFilter and MediaFilterCollection to Filter and FilterCollection, respectively.
BUG=none TEST=compiles Review URL: http://codereview.chromium.org/5527003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68115 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/base/media_format.h')
-rw-r--r--media/base/media_format.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/media/base/media_format.h b/media/base/media_format.h
index 8b9cdb0..7b53d63 100644
--- a/media/base/media_format.h
+++ b/media/base/media_format.h
@@ -26,10 +26,10 @@ extern const char kMajorTypeAudio[];
extern const char kMajorTypeVideo[];
} // namespace mime_type
-// MediaFormat is used to describe the output of a MediaFilterInterface to
-// determine whether a downstream filter can accept the output from an upstream
-// filter. In general, every MediaFormat contains a MIME type describing
-// its output as well as additional key-values describing additional details.
+// MediaFormat is used to describe the output of a Filter to determine whether
+// a downstream filter can accept the output from an upstream filter.
+// In general, every MediaFormat contains a MIME type describing its output as
+// well as additional key-values describing additional details.
//
// For example, an audio decoder could output audio/x-uncompressed and include
// additional key-values such as the number of channels and the sample rate.