Erik Lunchpail | 3 Jun 2005 01:28
Picon
Favicon

[PATCH] vo_winvidix.c: regain window focus in fullscreen

Self explanitory.

Regards,
Erik

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
Attachment (winvidix_fullscreen_fix.diff): application/octet-stream, 466 bytes
_______________________________________________
MPlayer-cygwin mailing list
MPlayer-cygwin <at> mplayerhq.hu
http://mplayerhq.hu/mailman/listinfo/mplayer-cygwin
Sascha Sommer | 3 Jun 2005 07:16
Picon
Favicon

Re: [PATCH] vo_winvidix.c: regain window focus in fullscreen

Am Donnerstag, den 02.06.2005, 19:28 -0400 schrieb Erik Lunchpail:
> Self explanitory.
> 

Applied.

Sascha
Gianluigi Tiesi | 3 Jun 2005 07:44
Picon
Favicon

pthreads support for mingw32

This patch enables pthreads support for mingw32 needed to use x264
multithreading stuff on mingw buils (cygwin includes by itself pthreads)

Btw I'm still compiling with network enabled to see if mplayer will be
forced to have pthreads dll dep, so in this case it would be better
to add a --disable-pthreads configure option.

Bye

-- 
Gianluigi Tiesi <sherpya <at> netfarm.it>
EDP Project Leader
Netfarm S.r.l. - http://www.netfarm.it/
Free Software: http://oss.netfarm.it/
diff -NubBr -xCVS -xhelp_mp.h -x'*.a' -x'*.exe' -x'*.o' -xconfigure.log -xconfig.mak -x.cvsignore
-xconfig.h -xcodecs.conf.h -xversion.h -x.depend main/configure sherpya/configure
--- main/configure	2005-06-03 05:32:59.328300800 +0200
+++ sherpya/configure	2005-06-03 07:20:03.736145600 +0200
 <at>  <at>  -2793,10 +2793,10  <at>  <at> 
 void* func(void *arg) { return arg; }
 int main(void) { pthread_t tid; return pthread_create (&tid, 0, func, 0) == 0 ? 0 : 1; }
 EOF
-if mingw32 ; then
-  _ld_pthread=''
-elif hpux ; then
+if hpux ; then
   _ld_pthread=''
+elif ( cc_check -lpthreadGC2 && $TMPO ) ; then # mingw pthreads-win32
(Continue reading)

Gianluigi Tiesi | 3 Jun 2005 09:23
Picon
Favicon

Re: pthreads support for mingw32

My usual builds are ok, only mencoder gets pthreads dep, anyway it would
be usefull a disable-pthreads configure option
Bye
--

-- 
Gianluigi Tiesi <sherpya <at> netfarm.it>
EDP Project Leader
Netfarm S.r.l. - http://www.netfarm.it/
Free Software: http://oss.netfarm.it/
zeitnot | 3 Jun 2005 20:27
Picon

Re: GUI frontends for Windows comparison

You might want to try this one:
http://zeitnot.org/zeitMPlayer/

Cheers
z.

2005/5/30, Diego Biurrun <diego <at> biurrun.de>:
> Hi!
> 
> Nowadays we have a ton of GUI frontends for Windows, just see
> 
> http://mplayerhq.hu/homepage/design7/projects.html#windows
> 
> I often get asked for Windows GUIs, but I hardly ever use Windows these days
> and haven't tried the frontends in ages.
> 
> So has anybody compared them lately and/or would like to try them out and
> report?
> 
> Diego
> 
> _______________________________________________
> MPlayer-cygwin mailing list
> MPlayer-cygwin <at> mplayerhq.hu
> http://mplayerhq.hu/mailman/listinfo/mplayer-cygwin
>
zeitnot | 3 Jun 2005 20:43
Picon

Re: GUI frontends for Windows comparison

oups, i think i screwed up my last post.
I wrote a gui  and tested it on win98/XP. Seems to work fine. Wanna try? 
http://zeitnot.org/zeitMPlayer/

cheers,
z

2005/5/30, Diego Biurrun <diego <at> biurrun.de>:
> Hi!
> 
> Nowadays we have a ton of GUI frontends for Windows, just see
> 
> http://mplayerhq.hu/homepage/design7/projects.html#windows
> 
> I often get asked for Windows GUIs, but I hardly ever use Windows these days
> and haven't tried the frontends in ages.
> 
> So has anybody compared them lately and/or would like to try them out and
> report?
> 
> Diego
> 
> _______________________________________________
> MPlayer-cygwin mailing list
> MPlayer-cygwin <at> mplayerhq.hu
> http://mplayerhq.hu/mailman/listinfo/mplayer-cygwin
>
Diego Biurrun | 4 Jun 2005 20:54
Picon
Gravatar

Re: GUI frontends for Windows comparison

On Fri, Jun 03, 2005 at 02:43:30PM -0400, zeitnot wrote:
> oups, i think i screwed up my last post.
> I wrote a gui  and tested it on win98/XP. Seems to work fine. Wanna try? 
> http://zeitnot.org/zeitMPlayer/

Looks interesting, I added it to the projects page.

Diego
Gianluigi Tiesi | 5 Jun 2005 03:28
Picon
Favicon

Re: pthreads support for mingw32

On Fri, Jun 03, 2005 at 09:23:52AM +0200, Gianluigi Tiesi wrote:
> My usual builds are ok, only mencoder gets pthreads dep, anyway it would
> be usefull a disable-pthreads configure option
> Bye
> -- 
This patches adds the support to configure to disable pthreads using
--disable-pthreads, this because I've hacked a bit x264 to use
native threads on win32, I'll forward the patch to x264 developers
but I'm attaching also the x264 patch if someone want to make
some tests with it.

Bye

--

-- 
Gianluigi Tiesi <sherpya <at> netfarm.it>
EDP Project Leader
Netfarm S.r.l. - http://www.netfarm.it/
Free Software: http://oss.netfarm.it/
diff -NubBr -xCVS -xhelp_mp.h -x'*.a' -x'*.exe' -x'*.o' -xconfigure.log -xconfig.mak -x.cvsignore
-xconfig.h -xcodecs.conf.h -xversion.h -x.depend main/configure sherpya/configure
--- main/configure	2005-06-05 02:50:25.647393600 +0200
+++ sherpya/configure	2005-06-05 03:23:33.515808000 +0200
 <at>  <at>  -195,6 +195,7  <at>  <at> 
                             library [autodetect]
   --disable-ftp          Disable ftp support [enabled]
   --disable-vstream      Disable tivo vstream client support [autodetect]
+  --disable-pthreads     Disable Posix threads support [autodetect]

(Continue reading)

Gianluigi Tiesi | 5 Jun 2005 04:13
Picon
Favicon

Re: pthreads support for mingw32

Sorry I've confused my sources, this patch enable pthreads on win32
using mingw and also adds the --disable-pthreads option

By
-- 
Gianluigi Tiesi <sherpya <at> netfarm.it>
EDP Project Leader
Netfarm S.r.l. - http://www.netfarm.it/
Free Software: http://oss.netfarm.it/
diff -NubBr -xCVS -xhelp_mp.h -x'*.a' -x'*.exe' -x'*.o' -xconfigure.log -xconfig.mak -x.cvsignore
-xconfig.h -xcodecs.conf.h -xversion.h -x.depend main/configure sherpya/configure
--- main/configure	2005-06-05 04:06:18.373892800 +0200
+++ sherpya/configure	2005-06-05 04:08:58.143630400 +0200
 <at>  <at>  -195,6 +195,7  <at>  <at> 
                             library [autodetect]
   --disable-ftp          Disable ftp support [enabled]
   --disable-vstream      Disable tivo vstream client support [autodetect]
+  --disable-pthreads     Disable Posix threads support [autodetect]

 Codecs:
   --enable-gif		 enable gif support [autodetect]
 <at>  <at>  -1472,6 +1473,7  <at>  <at> 
 _gethostbyname2=auto
 _ftp=yes
 _vstream=auto
+_pthreads=yes
 for ac_option do
   case "$ac_option" in
(Continue reading)

Vizi Gabor | 5 Jun 2005 18:57

Some problems


first at all, sry for my english :)

I use mplayer on platform cygwin many years, but now have problems with 
the fresh downloaded cvs.

1) ffmpeg compile error: in the vorbis.c line 1111 used uint_fast64t 
variable type, but that nowhere definiated (make throw error and dont 
compile) this variable type no elsewhere can i find in the source...

2) the compiled mplayer dont load any codecs from the codecsdir (from 
/usr/local/lib/codecs, and ofc the codecs are there). The mplayer output u 
can see belove. This i thin a cygwin problem, can anybody give me some 
help, how can i solve this?

KWS

E:\Mp3\Radio>mplayer radio1.rm
MPlayer dev-CVS-050605-15:34-3.2 (C) 2000-2005 MPlayer Team
CPU: Intel Pentium 4/Xeon/Celeron Foster (Family: 8, Stepping: 7)
Detected cache-line size is 64 bytes
CPUflags:  MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled for x86 CPU with extensions: MMX MMX2 SSE SSE2

85 audio & 199 video codecs
Playing radio1.rm.
REAL file format detected.
Stream description: Audio Stream
Stream mimetype: audio/x-pn-realaudio
==========================================================================
(Continue reading)


Gmane