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

Unified Diff: media/formats/mpeg/adts_stream_parser.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/mpeg/adts_stream_parser.h
diff --git a/media/formats/mpeg/adts_stream_parser.h b/media/formats/mpeg/adts_stream_parser.h
index d08351b93f0c83946f75ad97a7ca062fe247393a..a8ecdbb286f1f1d0919efbfedca52130224c372d 100644
--- a/media/formats/mpeg/adts_stream_parser.h
+++ b/media/formats/mpeg/adts_stream_parser.h
@@ -5,7 +5,6 @@
#ifndef MEDIA_FORMATS_MPEG_ADTS_STREAM_PARSER_H_
#define MEDIA_FORMATS_MPEG_ADTS_STREAM_PARSER_H_
-#include "base/basictypes.h"
#include "media/base/media_export.h"
#include "media/formats/mpeg/mpeg_audio_stream_parser_base.h"
@@ -18,7 +17,7 @@ class MEDIA_EXPORT ADTSStreamParser : public MPEGAudioStreamParserBase {
private:
// MPEGAudioStreamParserBase overrides.
- int ParseFrameHeader(const uint8* data,
+ int ParseFrameHeader(const uint8_t* data,
int size,
int* frame_size,
int* sample_rate,

Powered by Google App Engine
This is Rietveld 408576698