diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-05-30 02:09:24 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-05-30 02:09:24 +0000 |
commit | e15e6e8d897798fc20041e032b0a30d7374953e0 (patch) | |
tree | 46645855d82d0996b3ca8b646ba230bdb7763aca /src/input/input_file.c | |
parent | d0ca54350cfff5d52b7d7e835082062c46fce353 (diff) | |
download | xine-lib-e15e6e8d897798fc20041e032b0a30d7374953e0.tar.gz xine-lib-e15e6e8d897798fc20041e032b0a30d7374953e0.tar.bz2 |
Fixed demux* get current position calls.
Fixed stdin/fifo input plugin, new mrl style: fifo://[mpeg1|mpeg2]/location
Fixed dvd input plugin.
xine core, update cur_input_pos position.
call the gui status callback now.
CVS patchset: 102
CVS date: 2001/05/30 02:09:24
Diffstat (limited to 'src/input/input_file.c')
-rw-r--r-- | src/input/input_file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/input/input_file.c b/src/input/input_file.c index 0c56efa7c..8aee06d10 100644 --- a/src/input/input_file.c +++ b/src/input/input_file.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: input_file.c,v 1.9 2001/05/07 01:31:44 f1rmb Exp $ + * $Id: input_file.c,v 1.10 2001/05/30 02:09:24 f1rmb Exp $ */ #ifdef HAVE_CONFIG_H @@ -114,6 +114,7 @@ static int file_plugin_open (input_plugin_t *this_gen, char *mrl) { */ static off_t file_plugin_read (input_plugin_t *this_gen, char *buf, off_t len) { file_input_plugin_t *this = (file_input_plugin_t *) this_gen; + return read (this->fh, buf, len); } |