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

Unified Diff: media/formats/mp2t/es_parser_h264_unittest.cc

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/mp2t/es_parser_h264_unittest.cc
diff --git a/media/formats/mp2t/es_parser_h264_unittest.cc b/media/formats/mp2t/es_parser_h264_unittest.cc
index 65f9a37be96b388674ea181860b80a62bb947150..c134f44cdee16c4c9579099c5f507a18143f8ba3 100644
--- a/media/formats/mp2t/es_parser_h264_unittest.cc
+++ b/media/formats/mp2t/es_parser_h264_unittest.cc
@@ -104,10 +104,10 @@ void EsParserH264Test::GetAccessUnits() {
}
void EsParserH264Test::InsertAUD() {
- uint8 aud[] = { 0x00, 0x00, 0x01, 0x09 };
+ uint8_t aud[] = {0x00, 0x00, 0x01, 0x09};
- std::vector<uint8> stream_with_aud(
- stream_.size() + access_units_.size() * sizeof(aud));
+ std::vector<uint8_t> stream_with_aud(stream_.size() +
+ access_units_.size() * sizeof(aud));
std::vector<EsParserTestBase::Packet> access_units_with_aud(
access_units_.size());

Powered by Google App Engine
This is Rietveld 408576698