]> git.sesse.net Git - vlc/blobdiff - modules/gui/beos/VlcWrapper.cpp
* beos/* : fixed a bug in the progress bar with big files
[vlc] / modules / gui / beos / VlcWrapper.cpp
index f8d2bf3d3f2cb3b22e31fef691eb0114f75aed0e..71dd44dc1cdd453535293d76f142e6fd10f58a1f 100644 (file)
@@ -2,7 +2,7 @@
  * VlcWrapper.cpp: BeOS plugin for vlc (derived from MacOS X port)
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: VlcWrapper.cpp,v 1.16 2003/01/11 19:33:09 stippi Exp $
+ * $Id: VlcWrapper.cpp,v 1.17 2003/01/12 02:08:39 titer Exp $
  *
  * Authors: Florian G. Pflug <fgp@phlo.org>
  *          Jon Lech Johansen <jon-vl@nanocrew.net>
@@ -129,26 +129,6 @@ int VlcWrapper::InputRate()
     return p_input->stream.control.i_rate;
 }
 
-/* tell: location in the current stream (in arbitrary units) */
-int VlcWrapper::InputTell()
-{
-    if( !p_input )
-    {
-        return -1;
-    }
-    return p_input->stream.p_selected_area->i_tell;
-}
-
-/* size: total size of the current stream (in arbitrary units) */
-int VlcWrapper::InputSize()
-{
-    if( !p_input )
-    {
-        return -1;
-    }
-    return p_input->stream.p_selected_area->i_size;
-}
-
 void VlcWrapper::InputSlower()
 {
     if( p_input != NULL )