diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-09-05 23:20:20 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-09-05 23:20:20 +0000 |
commit | 9645b979e6de33baa8533c151134dade85c50118 (patch) | |
tree | 2951757108246738e8325899f7d03e07f4c2741b /src/xine-engine/xine.c | |
parent | 838e2ccc6d52abef0eeb06952780cacc21c860c7 (diff) | |
download | xine-lib-9645b979e6de33baa8533c151134dade85c50118.tar.gz xine-lib-9645b979e6de33baa8533c151134dade85c50118.tar.bz2 |
removed obsolete stream_seekable function, implemented some parts of get_streaminfo instead, added missing parameters/properties noted by daniel
CVS patchset: 2620
CVS date: 2002/09/05 23:20:20
Diffstat (limited to 'src/xine-engine/xine.c')
-rw-r--r-- | src/xine-engine/xine.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index f3768099e..69435755f 100644 --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.c,v 1.150 2002/09/05 12:51:18 guenter Exp $ + * $Id: xine.c,v 1.151 2002/09/05 23:20:21 guenter Exp $ * * top-level xine functions * @@ -1035,14 +1035,6 @@ int xine_get_spu_channel (xine_t *this) { return this->spu_channel_user; } -int xine_is_stream_seekable (xine_t *this) { - - if (this->cur_input_plugin) - return this->cur_input_plugin->get_capabilities (this->cur_input_plugin) & INPUT_CAP_SEEKABLE; - - return -1; -} - osd_renderer_t *xine_get_osd_renderer (xine_t *this) { return this->osd_renderer; |