From d326d756b824c4fd37c36de1d47dae18144c1ca6 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Thu, 12 Apr 2012 23:41:32 -0500 Subject: [PATCH] Fix inadvertent "TQ" conversions. --- kttsd/players/gstplayer/gstreamerplayer.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kttsd/players/gstplayer/gstreamerplayer.cpp b/kttsd/players/gstplayer/gstreamerplayer.cpp index efc1916..35dc92d 100644 --- a/kttsd/players/gstplayer/gstreamerplayer.cpp +++ b/kttsd/players/gstplayer/gstreamerplayer.cpp @@ -94,18 +94,18 @@ bool GStreamerPlayer::paused() const int GStreamerPlayer::totalTime() const { - return time(GST_TQUERY_TOTAL) / GST_SECOND; + return time(GST_QUERY_TOTAL) / GST_SECOND; } int GStreamerPlayer::currentTime() const { - return time(GST_TQUERY_POSITION) / GST_SECOND; + return time(GST_QUERY_POSITION) / GST_SECOND; } int GStreamerPlayer::position() const { - long long total = time(GST_TQUERY_TOTAL); - long long current = time(GST_TQUERY_POSITION); + long long total = time(GST_QUERY_TOTAL); + long long current = time(GST_QUERY_POSITION); return total > 0 ? int((double(current) / double(total)) * double(1000) + 0.5) : 0; } @@ -117,7 +117,7 @@ void GStreamerPlayer::seek(int seekTime) void GStreamerPlayer::seekPosition(int position) { - long long total = time(GST_TQUERY_TOTAL); + long long total = time(GST_QUERY_TOTAL); if(total > 0) seek(int(double(position) / double(1000) * double(totalTime()) + 0.5)); }