diff options
author | Thibaut Mattern <tmattern@users.sourceforge.net> | 2003-07-19 00:18:49 +0000 |
---|---|---|
committer | Thibaut Mattern <tmattern@users.sourceforge.net> | 2003-07-19 00:18:49 +0000 |
commit | 9eb254f79cb45faa856284ee4e577f6e555fadaa (patch) | |
tree | 33f74a74a3cdaff54abfbcdddb70e99932599f61 | |
parent | 93991c06e5f7aa1235dfbef1186567487c6b2676 (diff) | |
download | xine-lib-9eb254f79cb45faa856284ee4e577f6e555fadaa.tar.gz xine-lib-9eb254f79cb45faa856284ee4e577f6e555fadaa.tar.bz2 |
Do not try to seek with reference files.
CVS patchset: 5181
CVS date: 2003/07/19 00:18:49
-rw-r--r-- | src/demuxers/demux_asf.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/demuxers/demux_asf.c b/src/demuxers/demux_asf.c index 6ebe7d705..14731fb1b 100644 --- a/src/demuxers/demux_asf.c +++ b/src/demuxers/demux_asf.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: demux_asf.c,v 1.124 2003/07/16 00:13:55 tmattern Exp $ + * $Id: demux_asf.c,v 1.125 2003/07/19 00:18:49 tmattern Exp $ * * demultiplexer for asf streams * @@ -1783,6 +1783,10 @@ static int demux_asf_seek (demux_plugin_t *this_gen, this->status = DEMUX_OK; + if (this->reference_mode) { + return this->status; + } + /* * seek to start position */ |