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

Unified Diff: media/formats/mp2t/ts_section.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/mp2t/ts_section.h
diff --git a/media/formats/mp2t/ts_section.h b/media/formats/mp2t/ts_section.h
index 9273733d357fcae3d6de75e92a4cf2c2bb2c7524..7451b9e0c24b2b3f963f524917aa4d27c85d44df 100644
--- a/media/formats/mp2t/ts_section.h
+++ b/media/formats/mp2t/ts_section.h
@@ -24,7 +24,8 @@ class TsSection {
// Parse the data bytes of the TS packet.
// Return true if parsing is successful.
virtual bool Parse(bool payload_unit_start_indicator,
- const uint8* buf, int size) = 0;
+ const uint8_t* buf,
+ int size) = 0;
// Process bytes that have not been processed yet (pending buffers in the
// pipe). Flush might thus results in frame emission, as an example.

Powered by Google App Engine
This is Rietveld 408576698