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

Unified Diff: media/formats/mp4/cenc.h

Issue 1534273002: Switch to standard integer types in media/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 5 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 side-by-side diff with in-line comments
Download patch
Index: media/formats/mp4/cenc.h
diff --git a/media/formats/mp4/cenc.h b/media/formats/mp4/cenc.h
index 9eb3358a1755f39283166a668e0d86cbc12f8959..44670f3e9219a906197ad28a06e0088b436a09d4 100644
--- a/media/formats/mp4/cenc.h
+++ b/media/formats/mp4/cenc.h
@@ -7,7 +7,6 @@
#include <vector>
-#include "base/basictypes.h"
#include "media/base/decrypt_config.h"
namespace media {
@@ -16,7 +15,7 @@ namespace mp4 {
class BufferReader;
struct FrameCENCInfo {
- uint8 iv[16];
+ uint8_t iv[16];
std::vector<SubsampleEntry> subsamples;
FrameCENCInfo();

Powered by Google App Engine
This is Rietveld 408576698