You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kaffeine/kaffeine/src/player-parts/gstreamer-part/timer.cpp

210 lines
4.0 KiB

/*
* timer.cpp
*
* Copyright (C) 2006 Christophe Thommeret <hftom@free.fr>
* Copyright (C) 2004-2005 Jürgen Kofler <kaffeine@gmx.net>
*
* heavily based on kiss by Ronald Bultje <rbultje@ronald.bitfreak.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <tdelocale.h>
#include <kdebug.h>
#include <tqslider.h>
#include <tqlabel.h>
#include <tqtimer.h>
#include "timer.h"
#include "timer.moc"
Timer::Timer() : TQObject()
{
m_label = new TQLabel( "0:00 / 0:00", 0 );
m_slider = new TQSlider( Qt::Horizontal, 0 );
m_slider->setMinValue( 0 );
m_slider->setEnabled( false );
connect( &updateTimer, TQT_SIGNAL(timeout()), TQT_SLOT(slotUpdate()) );
m_pos = GST_CLOCK_TIME_NONE;
m_len = GST_CLOCK_TIME_NONE;
m_play = NULL;
seeking = false;
connect( m_slider, TQT_SIGNAL(sliderPressed()), this, TQT_SLOT(slotSeekStart()) );
connect( m_slider, TQT_SIGNAL(sliderReleased()), this, TQT_SLOT(slotSeek()) );
}
void Timer::setPlaybin( GstElement *play )
{
m_play = play;
m_slider->setEnabled( false );
m_slider->setValue( 0 );
}
Timer::~Timer()
{
}
static char *niceTime( guint64 t )
{
if ( t >= GST_SECOND*60*60 ) {
return g_strdup_printf("%d:%02d:%02d",
(int) (t / (GST_SECOND * 60 * 60)),
(int) ((t / (GST_SECOND * 60)) % 60),
(int) ((t / GST_SECOND) % 60));
}
else {
return g_strdup_printf("%d:%02d",
(int) ((t / (GST_SECOND * 60)) % 60),
(int) ((t / GST_SECOND) % 60));
}
}
void Timer::slotSeekStart()
{
seeking = true;
}
void Timer::slotSeek()
{
if ( !m_play )
return;
gint64 gval = m_slider->value();
GstSeekFlags flags = (GstSeekFlags)(GST_SEEK_FLAG_FLUSH|GST_SEEK_FLAG_KEY_UNIT);
gst_element_seek( m_play, 1.0, GST_FORMAT_TIME, flags,
GST_SEEK_TYPE_SET, gval*GST_SECOND, GST_SEEK_TYPE_NONE, GST_CLOCK_TIME_NONE);
gst_element_get_state( m_play, NULL, NULL, 100*GST_MSECOND);
seeking = false;
}
void Timer::seekPercent( uint percent )
{
//slotSeek( (m_slider->maxValue() * percent) / 100 );
}
void Timer::slotUpdate()
{
gint64 t;
GstFormat fmt = GST_FORMAT_TIME;
char *txt;
if ( seeking )
return;
if ( !m_play )
return;
if ( gst_element_query_duration( m_play,
#if GST_CHECK_VERSION(1,0,0)
fmt,
#else
&fmt,
#endif
&t ) ) {
m_len = t;
m_slider->setMaxValue( m_len / GST_SECOND );
}
if ( !gst_element_query_position( m_play,
#if GST_CHECK_VERSION(1,0,0)
fmt,
#else
&fmt,
#endif
&t ) )
return;
m_pos = t;
m_currentTimeMS = m_pos/1000000;
m_totalTimeMS = m_len/1000000;
if ( GST_CLOCK_TIME_IS_VALID (m_len) ) {
gchar *t1 = niceTime( m_pos ), *t2 = niceTime( m_len );
txt = g_strdup_printf( "%s / %s", t1, t2) ;
g_free(t1);
g_free(t2);
}
else {
txt = niceTime( m_pos );
}
m_label->setText( txt );
g_free( txt );
m_slider->setValue( m_pos / GST_SECOND );
}
void Timer::start()
{
if ( updateTimer.isActive() )
return;
m_slider->setEnabled( true);
seeking = false;
updateTimer.start( 1000 );
}
void Timer::stop()
{
if ( !updateTimer.isActive() )
return;
updateTimer.stop();
m_slider->setEnabled( false );
m_slider->setValue(0);
}
TQLabel* Timer::getLabel() const
{
return m_label;
}
TQSlider* Timer::getSlider() const
{
return m_slider;
}