[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: mplayer (preview)



Peter Valchev wrote:
> I have made some changes to the port, and put it here:
> 
> http://www.sightly.net/pvalchev/ports/mplayer.tar.gz
> 
> It contains various cleanups and fixes that I did...
> Björn, please look at them and pick them up for your port.  They add
> flavors and try to disable everything by default unless a flavor is
> specified (have not covered them all yet most likely).  Also I noticed
> you had not set MAINTAINER to the port - do you not want to maintain it
> or was it an oversight?

Works nice for me on a K6II-350 with src/XF4-current.

I have attached one additional small patch to make -vo md5 work on
OpenBSD.

-- 
Free your mind and your ass will follow -- http://www.funkaffair.de
--- libvo/vo_md5.c.orig	Tue May  7 15:42:39 2002
+++ libvo/vo_md5.c	Tue May  7 15:42:56 2002
@@ -62,7 +62,7 @@
 
     video_out_pgm.flip_page();
 
-    snprintf (buf2, 100, "md5sum %s", vo_pgm_filename);
+    snprintf (buf2, 100, "md5 %s", vo_pgm_filename);
     f = popen (buf2, "r");
     i = fread (buf2, 1, sizeof(buf2), f);
     pclose (f);