Fixed warning.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38663 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2010-09-15 19:58:48 +00:00
parent f7eb8be930
commit 8eb72c7217
1 changed files with 1 additions and 1 deletions

View File

@ -463,7 +463,7 @@ VideoProducer::Connect(status_t error, const media_source& source,
+ (bigtime_t)((fFrame - fFrameBase)
* 1000000LL / fConnectedFormat.field_rate);
fFrameBase = fFrame;
fBufferDuration = 1000000LL / fConnectedFormat.field_rate;
fBufferDuration = bigtime_t(1000000LL / fConnectedFormat.field_rate);
}
if (fConnectedFormat.display.bytes_per_row == 0) {