From f85a943fdff3f12db8faf4b84e4f63aafdc60db3 Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Sun, 13 Jun 2004 21:28:52 +0000 Subject: implement steps 1, 2, 3 and 4 of the seeking proposal: http://article.gmane.org/gmane.comp.video.xine.devel/9532 it is now up to demuxers to decide what the 0..65535 position means. demuxers tested: ogg, voc, flac, rm, asf, vqa, vob, avi, y4m, au, mov, ts, mp3, mpg, wav, ra, mve CVS patchset: 6686 CVS date: 2004/06/13 21:28:52 --- src/xine-engine/video_out.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/xine-engine/video_out.c') diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index f3a566934..8a9873f53 100644 --- a/src/xine-engine/video_out.c +++ b/src/xine-engine/video_out.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: video_out.c,v 1.197 2004/06/02 19:46:11 tmattern Exp $ + * $Id: video_out.c,v 1.198 2004/06/13 21:28:57 miguelfreitas Exp $ * * frame allocation / queuing / scheduling / output functions */ @@ -1169,7 +1169,7 @@ int xine_get_next_video_frame (xine_video_port_t *this_gen, frame->duration = img->duration; frame->width = img->width; frame->height = img->height; - frame->pos_stream = img->extra_info->input_pos; + frame->pos_stream = img->extra_info->input_normpos; frame->pos_time = img->extra_info->input_time; frame->aspect_ratio = img->ratio; frame->colorspace = img->format; -- cgit v1.2.3