Index: media/formats/mp2t/ts_section_pes.h |
diff --git a/media/formats/mp2t/ts_section_pes.h b/media/formats/mp2t/ts_section_pes.h |
index 3be879c3a197faacfabfcf942ccc378febbfa33e..ec12c8f2227b3e54d2b8aab798a40c83d477eda4 100644 |
--- a/media/formats/mp2t/ts_section_pes.h |
+++ b/media/formats/mp2t/ts_section_pes.h |
@@ -5,7 +5,6 @@ |
#ifndef MEDIA_FORMATS_MP2T_TS_SECTION_PES_H_ |
#define MEDIA_FORMATS_MP2T_TS_SECTION_PES_H_ |
-#include "base/basictypes.h" |
#include "base/compiler_specific.h" |
#include "base/memory/scoped_ptr.h" |
#include "media/base/byte_queue.h" |
@@ -25,7 +24,8 @@ class TsSectionPes : public TsSection { |
// TsSection implementation. |
bool Parse(bool payload_unit_start_indicator, |
- const uint8* buf, int size) override; |
+ const uint8_t* buf, |
+ int size) override; |
void Flush() override; |
void Reset() override; |
@@ -37,7 +37,7 @@ class TsSectionPes : public TsSection { |
bool Emit(bool emit_for_unknown_size); |
// Parse a PES packet, return true if successful. |
- bool ParseInternal(const uint8* raw_pes, int raw_pes_size); |
+ bool ParseInternal(const uint8_t* raw_pes, int raw_pes_size); |
void ResetPesState(); |