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

Unified Diff: media/base/media_format.h

Issue 18546: Implementation of Pipeline and FilterHost interfaces. This is a large change... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 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/base/filters.h ('k') | media/base/media_format.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/media_format.h
===================================================================
--- media/base/media_format.h (revision 8731)
+++ media/base/media_format.h (working copy)
@@ -5,19 +5,24 @@
#ifndef MEDIA_BASE_MEDIA_FORMAT_H_
#define MEDIA_BASE_MEDIA_FORMAT_H_
+#include <map>
+#include <string>
+
#include "base/values.h"
namespace media {
// Common MIME types.
namespace mime_type {
-extern const char kURI[];
+extern const char kURL[];
extern const char kApplicationOctetStream[];
extern const char kMPEGAudio[];
extern const char kAACAudio[];
extern const char kH264AnnexB[];
extern const char kUncompressedAudio[];
extern const char kUncompressedVideo[];
+extern const char kMajorTypeAudio[];
+extern const char kMajorTypeVideo[];
} // namespace mime_type
// MediaFormat is used to describe the output of a MediaFilterInterface to
@@ -40,7 +45,7 @@
public:
// Common keys.
static const char kMimeType[];
- static const char kURI[];
+ static const char kURL[];
static const char kSurfaceFormat[];
static const char kSampleRate[];
static const char kSampleBits[];
« no previous file with comments | « media/base/filters.h ('k') | media/base/media_format.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698