From 2cc529f0d55ce2768945b8009c9b3013ca077e0e Mon Sep 17 00:00:00 2001 From: "pbos@webrtc.org" Date: Tue, 14 May 2013 14:27:15 +0000 Subject: Remove const for plain data types in common_video/ BUG=1644 R=holmer@google.com, stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1464004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@4028 4adac7df-926f-26a2-2b94-8c16560cd09d --- common_video/interface/i420_video_frame.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common_video') diff --git a/common_video/interface/i420_video_frame.h b/common_video/interface/i420_video_frame.h index 09ee9d03..9ca31004 100644 --- a/common_video/interface/i420_video_frame.h +++ b/common_video/interface/i420_video_frame.h @@ -93,7 +93,7 @@ class I420VideoFrame { int height() const {return height_;} // Set frame timestamp (90kHz). - void set_timestamp(const uint32_t timestamp) {timestamp_ = timestamp;} + void set_timestamp(uint32_t timestamp) {timestamp_ = timestamp;} // Get frame timestamp (90kHz). uint32_t timestamp() const {return timestamp_;} -- cgit v1.2.3