time.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * time.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: c0fe90a1f5095d94aef154841f482b421026e0df $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <ipkiss@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #include "time.hpp"
  25. #include <vlc_input.h>
  26. void StreamTime::set( float percentage, bool updateVLC )
  27. {
  28.     VarPercent::set( percentage );
  29.     // Avoid looping forever...
  30.     if( updateVLC && getIntf()->p_sys->p_input )
  31.     {
  32.         vlc_value_t pos;
  33.         pos.f_float = percentage;
  34.         var_Set( getIntf()->p_sys->p_input, "position", pos );
  35.     }
  36. }
  37. const string StreamTime::getAsStringPercent() const
  38. {
  39.     int value = (int)(100. * get());
  40.     // 0 <= value <= 100, so we need 4 chars
  41.     char *str = new char[4];
  42.     snprintf( str, 4, "%d", value );
  43.     string ret = str;
  44.     delete[] str;
  45.     return ret;
  46. }
  47. const string StreamTime::getAsStringCurrTime( bool bShortFormat ) const
  48. {
  49.     if( getIntf()->p_sys->p_input == NULL )
  50.     {
  51.         return "-:--:--";
  52.     }
  53.     vlc_value_t pos; pos.f_float = 0.0;
  54.     var_Get( getIntf()->p_sys->p_input, "position", &pos );
  55.     if( pos.f_float == 0.0 )
  56.     {
  57.         return "-:--:--";
  58.     }
  59.     vlc_value_t time; time.i_time = 0L;
  60.     var_Get( getIntf()->p_sys->p_input, "time", &time );
  61.     return formatTime( time.i_time / 1000000, bShortFormat );
  62. }
  63. const string StreamTime::getAsStringTimeLeft( bool bShortFormat ) const
  64. {
  65.     if( getIntf()->p_sys->p_input == NULL )
  66.     {
  67.         return "-:--:--";
  68.     }
  69.     vlc_value_t pos;
  70.     var_Get( getIntf()->p_sys->p_input, "position", &pos );
  71.     if( pos.f_float == 0.0 )
  72.     {
  73.         return "-:--:--";
  74.     }
  75.     vlc_value_t time, duration;
  76.     var_Get( getIntf()->p_sys->p_input, "time", &time );
  77.     var_Get( getIntf()->p_sys->p_input, "length", &duration );
  78.     return formatTime( (duration.i_time - time.i_time) / 1000000,
  79.                        bShortFormat );
  80. }
  81. const string StreamTime::getAsStringDuration( bool bShortFormat ) const
  82. {
  83.     if( getIntf()->p_sys->p_input == NULL )
  84.     {
  85.         return "-:--:--";
  86.     }
  87.     vlc_value_t pos; pos.f_float = 0.0;
  88.     var_Get( getIntf()->p_sys->p_input, "position", &pos );
  89.     if( pos.f_float == 0.0 )
  90.     {
  91.         return "-:--:--";
  92.     }
  93.     vlc_value_t time;
  94.     var_Get( getIntf()->p_sys->p_input, "length", &time );
  95.     return formatTime( time.i_time / 1000000, bShortFormat );
  96. }
  97. const string StreamTime::formatTime( int seconds, bool bShortFormat ) const
  98. {
  99.     char *psz_time = new char[MSTRTIME_MAX_SIZE];
  100.     if( bShortFormat && (seconds < 60 * 60) )
  101.     {
  102.         snprintf( psz_time, MSTRTIME_MAX_SIZE, "%02d:%02d",
  103.                   (int) (seconds / 60 % 60),
  104.                   (int) (seconds % 60) );
  105.     }
  106.     else
  107.     {
  108.         snprintf( psz_time, MSTRTIME_MAX_SIZE, "%d:%02d:%02d",
  109.                   (int) (seconds / (60 * 60)),
  110.                   (int) (seconds / 60 % 60),
  111.                   (int) (seconds % 60) );
  112.     }
  113.     string ret = psz_time;
  114.     delete[] psz_time;
  115.     return ret;
  116. }