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

Unified Diff: media/formats/mp2t/ts_section_pes.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_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();

Powered by Google App Engine
This is Rietveld 408576698