Fix typo in mac-avcapture

This commit is contained in:
Palana 2014-05-13 00:10:57 +02:00
parent 29443eaa15
commit e9b6d1d189

View File

@ -104,9 +104,8 @@ static inline void update_frame_size(struct source_frame *frame,
target_pts = info.presentationTimeStamp;
}
CMTime target_pts_nano =
CMTimeConvertScale(info.presentationTimeStamp, NANO_TIMESCALE,
kCMTimeRoundingMethod_Default);
CMTime target_pts_nano = CMTimeConvertScale(target_pts, NANO_TIMESCALE,
kCMTimeRoundingMethod_Default);
frame->timestamp = target_pts_nano.value;
CVPixelBufferLockBaseAddress(img, kCVPixelBufferLock_ReadOnly);