From syncmail at mplayerhq.hu Mon Jun 21 18:03:57 2004 From: syncmail at mplayerhq.hu (Ivan Kalvachev CVS) Date: Mon, 21 Jun 2004 18:03:57 +0200 (CEST) Subject: [MPlayer-G2-dev] CVS: main/libmpeg2 header.c,1.13,1.14 Message-ID: <20040621160357.E5FDF375AA@mail.mplayerhq.hu> CVS change done by Ivan Kalvachev CVS Update of /cvsroot/mplayer/main/libmpeg2 In directory mail:/var2/tmp/cvs-serv11903 Modified Files: header.c Log Message: width and height in seq_header could never be 0 Index: header.c =================================================================== RCS file: /cvsroot/mplayer/main/libmpeg2/header.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- header.c 3 Aug 2003 12:04:57 -0000 1.13 +++ header.c 21 Jun 2004 16:03:55 -0000 1.14 @@ -111,6 +111,10 @@ i = (buffer[0] << 16) | (buffer[1] << 8) | buffer[2]; sequence->display_width = sequence->picture_width = width = i >> 12; sequence->display_height = sequence->picture_height = height = i & 0xfff; + + if(width == 0 || height == 0) + return 1; + decoder->width = sequence->width = width = (width + 15) & ~15; decoder->height = sequence->height = height = (height + 15) & ~15; decoder->vertical_position_extension = (height > 2800); From ivan at cacad.com Mon Jun 21 23:10:16 2004 From: ivan at cacad.com (Ivan Kalvachev) Date: Tue, 22 Jun 2004 00:10:16 +0300 (EEST) Subject: [MPlayer-G2-dev] CVS: main/libmpeg2 header.c,1.13,1.14 In-Reply-To: <20040621160357.E5FDF375AA@mail.mplayerhq.hu> References: <20040621160357.E5FDF375AA@mail.mplayerhq.hu> Message-ID: <1192.213.16.61.44.1087852216.squirrel@mail.cacad.com> WTH is that? Arpi would you fix your mess!!!! I'm gonna send you 20l pepsi and 2 "gorillas" to watch you drinking it. And as I have send you mails with other problems with cvs log. Ivan Ivan Kalvachev CVS said: > CVS change done by Ivan Kalvachev CVS > > Update of /cvsroot/mplayer/main/libmpeg2 > In directory mail:/var2/tmp/cvs-serv11903 > > Modified Files: > header.c > Log Message: > width and height in seq_header could never be 0 > > Index: header.c > =================================================================== > RCS file: /cvsroot/mplayer/main/libmpeg2/header.c,v > retrieving revision 1.13 > retrieving revision 1.14 > diff -u -r1.13 -r1.14 > --- header.c 3 Aug 2003 12:04:57 -0000 1.13 > +++ header.c 21 Jun 2004 16:03:55 -0000 1.14 > @@ -111,6 +111,10 @@ > i = (buffer[0] << 16) | (buffer[1] << 8) | buffer[2]; > sequence->display_width = sequence->picture_width = width = i >> 12; > sequence->display_height = sequence->picture_height = height = i & 0xfff; > + > + if(width == || height == 0) > + return 1; > + > decoder->width = sequence->width = width = (width + 15) & ~15; > decoder->height = sequence->height = height = (height + 15) & ~15; > decoder->vertical_position_extension = (height > 2800); > > _______________________________________________ > MPlayer-G2-dev mailing list > MPlayer-G2-dev at mplayerhq.hu > http://mplayerhq.hu/mailman/listinfo/mplayer-g2-dev > From syncmail at mplayerhq.hu Thu Jun 24 14:52:18 2004 From: syncmail at mplayerhq.hu (Alex Beregszaszi) Date: Thu, 24 Jun 2004 14:52:18 +0200 (CEST) Subject: [MPlayer-G2-dev] CVS: main/libmpeg2 Makefile,1.11,1.12 Message-ID: <20040624125218.1FAA33750E@mail.mplayerhq.hu> CVS change done by Alex Beregszaszi Update of /cvsroot/mplayer/main/libmpeg2 In directory mail:/var2/tmp/cvs-serv16243/libmpeg2 Modified Files: Makefile Log Message: ranlib cleanup by Dan Christiansen Index: Makefile =================================================================== RCS file: /cvsroot/mplayer/main/libmpeg2/Makefile,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- Makefile 11 Aug 2003 20:52:53 -0000 1.11 +++ Makefile 24 Jun 2004 12:52:16 -0000 1.12 @@ -22,6 +22,7 @@ $(LIBNAME): $(OBJS) $(AR) r $(LIBNAME) $(OBJS) + $(RANLIB) $(LIBNAME) all: $(LIBNAME)