From 154dbbefa2071b224187538b9586bc808be7842a Mon Sep 17 00:00:00 2001 From: "stefan@webrtc.org" Date: Fri, 17 Aug 2012 14:07:49 +0000 Subject: [PATCH] Make VP8 timestamp int64_t to be represented with the same type as in libvpx. BUG= Review URL: https://webrtc-codereview.appspot.com/731011 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2628 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/modules/video_coding/codecs/vp8/include/vp8.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/video_coding/codecs/vp8/include/vp8.h b/src/modules/video_coding/codecs/vp8/include/vp8.h index 9ab90fb4d0..e6416f504d 100644 --- a/src/modules/video_coding/codecs/vp8/include/vp8.h +++ b/src/modules/video_coding/codecs/vp8/include/vp8.h @@ -132,7 +132,7 @@ class VP8Encoder : public VideoEncoder { EncodedImageCallback* encoded_complete_callback_; VideoCodec codec_; bool inited_; - uint32_t timestamp_; + int64_t timestamp_; uint16_t picture_id_; bool feedback_mode_; int cpu_speed_;