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

Unified Diff: talk/media/devices/filevideocapturer.h

Issue 1362503003: Use suffixed {uint,int}{8,16,32,64}_t types. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase + revert basictypes.h (to be landed separately just in case of a revert due to unexpected us… Created 5 years, 2 months 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
« no previous file with comments | « talk/media/devices/carbonvideorenderer.cc ('k') | talk/media/devices/filevideocapturer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/media/devices/filevideocapturer.h
diff --git a/talk/media/devices/filevideocapturer.h b/talk/media/devices/filevideocapturer.h
index f72c638df14f375c2efb4030695e9a7c2db6abf2..cc41c39b5db7804479c7f2374fb6be541bc92660 100644
--- a/talk/media/devices/filevideocapturer.h
+++ b/talk/media/devices/filevideocapturer.h
@@ -122,7 +122,7 @@ class FileVideoCapturer : public VideoCapturer {
protected:
// Override virtual methods of parent class VideoCapturer.
- virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs);
+ virtual bool GetPreferredFourccs(std::vector<uint32_t>* fourccs);
// Read the frame header from the file stream, video_file_.
rtc::StreamResult ReadFrameHeader(CapturedFrame* frame);
@@ -146,10 +146,10 @@ class FileVideoCapturer : public VideoCapturer {
rtc::FileStream video_file_;
CapturedFrame captured_frame_;
// The number of bytes allocated buffer for captured_frame_.data.
- uint32 frame_buffer_size_;
+ uint32_t frame_buffer_size_;
FileReadThread* file_read_thread_;
int repeat_; // How many times to repeat the file.
- int64 last_frame_timestamp_ns_; // Timestamp of last read frame.
+ int64_t last_frame_timestamp_ns_; // Timestamp of last read frame.
bool ignore_framerate_;
RTC_DISALLOW_COPY_AND_ASSIGN(FileVideoCapturer);
« no previous file with comments | « talk/media/devices/carbonvideorenderer.cc ('k') | talk/media/devices/filevideocapturer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698