|
From: Lasse Kärkkäi. <tr...@us...> - 2009-07-25 02:50:29
|
Module: performous
Branch: master
Commit: 183f933b1a2370d1c56e5414534302404eab441a
Author: Lasse Karkkainen <tro...@tr...>
Date: Sat Jul 25 04:33:27 2009 +0300
Remove debug.
---
game/ffmpeg.cc | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/game/ffmpeg.cc b/game/ffmpeg.cc
index a291d34..df38b23 100644
--- a/game/ffmpeg.cc
+++ b/game/ffmpeg.cc
@@ -43,7 +43,6 @@ FFmpeg::~FFmpeg() {
}
double FFmpeg::duration() const {
- std::cout << m_running << ", " << pFormatCtx->duration << ", " << AV_TIME_BASE << std::endl;
double d = m_running ? pFormatCtx->duration / double(AV_TIME_BASE) : getNaN();
return d >= 0.0 ? d : getInf();
}
|