summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_real.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-07-25 21:02:04 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-07-25 21:02:04 +0000
commit5f6ef66926fa50d9ee781b0addba7f6f3b6f8424 (patch)
tree3a16daff65d23e6ee485e379a4dccbaef27e5c28 /src/demuxers/demux_real.c
parent0c68d092f36d8f714be4f9a359097e06f6a65af7 (diff)
downloadxine-lib-5f6ef66926fa50d9ee781b0addba7f6f3b6f8424.tar.gz
xine-lib-5f6ef66926fa50d9ee781b0addba7f6f3b6f8424.tar.bz2
small housekeeping: demuxer api seeks in miliseconds
CVS patchset: 5211 CVS date: 2003/07/25 21:02:04
Diffstat (limited to 'src/demuxers/demux_real.c')
-rw-r--r--src/demuxers/demux_real.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/demuxers/demux_real.c b/src/demuxers/demux_real.c
index c317b269c..fe5dbb6c1 100644
--- a/src/demuxers/demux_real.c
+++ b/src/demuxers/demux_real.c
@@ -30,7 +30,7 @@
*
* Based on FFmpeg's libav/rm.c.
*
- * $Id: demux_real.c,v 1.64 2003/07/22 20:36:51 jstembridge Exp $
+ * $Id: demux_real.c,v 1.65 2003/07/25 21:02:05 miguelfreitas Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -1199,7 +1199,6 @@ static int demux_real_seek (demux_plugin_t *this_gen,
while((index[i+1].offset < start_pos) && (i < entries - 1))
i++;
} else if(start_time) {
- start_time *= 1000;
while((index[i+1].timestamp < start_time) && (i < entries - 1))
i++;
}
@@ -1411,6 +1410,6 @@ static void *init_class (xine_t *xine, void *data) {
plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
- { PLUGIN_DEMUX, 21, "real", XINE_VERSION_CODE, NULL, init_class },
+ { PLUGIN_DEMUX, 22, "real", XINE_VERSION_CODE, NULL, init_class },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
};