diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-12-09 19:32:11 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-12-09 19:32:11 +0000 |
commit | 496345c735f09021f04c7f96cbc4e1876ae87ec5 (patch) | |
tree | 3242b8d586060a63151b6828fc0f583c12c9cdad | |
parent | 6f49c2a444293fa406970f91e4bc897245fde7cc (diff) | |
download | xine-lib-496345c735f09021f04c7f96cbc4e1876ae87ec5.tar.gz xine-lib-496345c735f09021f04c7f96cbc4e1876ae87ec5.tar.bz2 |
small avi time-seek bugfix
CVS patchset: 1198
CVS date: 2001/12/09 19:32:11
-rw-r--r-- | src/demuxers/demux_avi.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/demuxers/demux_avi.c b/src/demuxers/demux_avi.c index 3e9cbf6e2..6203a81b3 100644 --- a/src/demuxers/demux_avi.c +++ b/src/demuxers/demux_avi.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_avi.c,v 1.57 2001/12/02 21:19:21 guenter Exp $ + * $Id: demux_avi.c,v 1.58 2001/12/09 19:32:11 guenter Exp $ * * demultiplexer for avi streams * @@ -944,6 +944,9 @@ static void demux_avi_start (demux_plugin_t *this_gen, return; } } + + video_pts = get_video_pts (this, this->avi->video_posf); + } /* seek audio */ |