summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2009-01-23 20:56:50 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-01-23 20:56:50 +0200
commit0406d951209df261970424256d76f293649ec140 (patch)
tree622259272e33995869f234cf18f76201e5272241
parent79e1aa7cc7a9ac695c3af361bca72013ef272885 (diff)
parent39b7c1576d826cfd72f34a3491a094d07b3d7041 (diff)
downloadmpv-0406d951209df261970424256d76f293649ec140.tar.bz2
mpv-0406d951209df261970424256d76f293649ec140.tar.xz
Merge svn changes up to r28348
-rw-r--r--DOCS/man/fr/mplayer.15
-rw-r--r--DOCS/tech/mirrors/mirror_howto.txt7
-rwxr-xr-xconfigure2
-rw-r--r--etc/codecs.conf12
-rw-r--r--libmpdemux/demux_ts.c1
-rw-r--r--libswscale/swscale.c4
-rw-r--r--libvo/vo_md5sum.c2
-rw-r--r--libvo/vo_sdl.c2
-rw-r--r--vidix/cyberblade_regs.h2
-rw-r--r--vidix/dhahelperwin/dhahelper.c2
-rw-r--r--vidix/dhahelperwin/dhahelper.h2
-rw-r--r--vidix/sis_bridge.c4
-rw-r--r--vidix/sis_vid.c4
13 files changed, 32 insertions, 17 deletions
diff --git a/DOCS/man/fr/mplayer.1 b/DOCS/man/fr/mplayer.1
index 250f131ce3..3294871447 100644
--- a/DOCS/man/fr/mplayer.1
+++ b/DOCS/man/fr/mplayer.1
@@ -1,4 +1,4 @@
-.\" synced with r28279
+.\" synced with r28341
.\" Encoding: iso-8859-1
.\" MPlayer (C) 2000-2009 MPlayer Team
.\" The English man page was/is done by Gabucino, Diego Biurrun, Jonas Jermann
@@ -3738,7 +3738,8 @@ pilote de sortie vidéo CoreVideo pour Mac OS X
.PD 0
.RSs
.IPs device_id=<numéro>
-Choisir le moniteur à utiliser en plein-écran.
+Choisir le moniteur à utiliser en plein-écran (par défaut\ : -1).
+La valeur -1 laisse la vidéo sur le même écran.
.IPs shared_buffer
Écrit la sortie dans un tampon partagé au lieu de l'afficher, et essaye
d'établir une NSConnection avec une IHM existante.
diff --git a/DOCS/tech/mirrors/mirror_howto.txt b/DOCS/tech/mirrors/mirror_howto.txt
index 054e8971b9..37a3d9cdfd 100644
--- a/DOCS/tech/mirrors/mirror_howto.txt
+++ b/DOCS/tech/mirrors/mirror_howto.txt
@@ -160,15 +160,13 @@ Setting up a webserver
Set up Apache or whatever web server you prefer. We just have static pages,
so no fancy configuration is necessary. However, we need a few aliases so that
links on our pages work correctly. /MPlayer and /DOCS should redirect to the
-directory with the downloadable files and /homepage should redirect to the
-directory with the HTML pages.
+directory with the downloadable files.
Here is an example stanza to paste into your Apache configuration:
<VirtualHost www#.mplayerhq.hu>
DocumentRoot /path/to/htdocs
Options FollowSymLinks Indexes
- Alias /homepage /path/to/htdocs
Alias /MPlayer /path/to/MPlayer
Alias /DOCS /path/to/MPlayer/DOCS
AddDefaultCharset off
@@ -177,7 +175,6 @@ Here is an example stanza to paste into your Apache configuration:
<VirtualHost www.mplayerhq.hu>
DocumentRoot /path/to/htdocs
Options FollowSymLinks Indexes
- Alias /homepage /path/to/htdocs
Alias /MPlayer /path/to/MPlayer
Alias /DOCS /path/to/MPlayer/DOCS
AddDefaultCharset off
@@ -205,7 +202,7 @@ both for your mirror address (www#.mplayerhq.hu) and the DNS round-robin
address (www.mplayerhq.hu):
- The virtual host is reachable by its address.
-- The subdirectories MPlayer, DOCS and homepage work.
+- The MPlayer and DOCS subdirectories work.
- The man pages and documentation are served with the correct content-type.
Try Russian or Chinese, you will notice breakage immediately.
diff --git a/configure b/configure
index ad1780c72a..283915f84f 100755
--- a/configure
+++ b/configure
@@ -523,7 +523,7 @@ _libavcodec_a=auto
_libamr_nb=auto
_libamr_wb=auto
_libavdecoders_all=`sed -n 's/^[^#]*DEC.*(.*, *\(.*\)).*/\1_decoder/p' ffmpeg/libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
-_libavdecoders=` echo $_libavdecoders_all | sed -e 's/ LIB[A-Z0-9_]*_DECODER//g' -e s/MPEG4AAC_DECODER// -e s/H264_VDPAU_DECODER// -e s/MPEG_VDPAU_DECODER// -e s/MPEG1_VDPAU_DECODER//`
+_libavdecoders=` echo $_libavdecoders_all | sed -e 's/ LIB[A-Z0-9_]*_DECODER//g' -e s/MPEG4AAC_DECODER// -e s/H264_VDPAU_DECODER// -e s/MPEG_VDPAU_DECODER// -e s/MPEG1_VDPAU_DECODER// -e s/VC1_VDPAU_DECODER// -e s/WMV3_VDPAU_DECODER// `
_libavencoders_all=`sed -n 's/^[^#]*ENC.*(.*, *\(.*\)).*/\1_encoder/p' ffmpeg/libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
_libavencoders=` echo $_libavencoders_all | sed 's/ LIB[A-Z0-9_]*_ENCODER//g'`
_libavparsers_all=`sed -n 's/^[^#]*PARSER.*(.*, *\(.*\)).*/\1_parser/p' ffmpeg/libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
diff --git a/etc/codecs.conf b/etc/codecs.conf
index 0a1371148a..ae5e201ade 100644
--- a/etc/codecs.conf
+++ b/etc/codecs.conf
@@ -826,6 +826,7 @@ videocodec ffodivx
fourcc FFDS
fourcc DCOD,MVXM,EM4A,PM4V
fourcc M4T3,DMK2,DIGI,INMC
+ fourcc EPHV
driver ffmpeg
dll mpeg4 ;opendivx
out YV12,I420,IYUV
@@ -876,6 +877,7 @@ videocodec xvid
fourcc FFDS
fourcc DCOD,MVXM,EM4A,PM4V
fourcc M4T3,DMK2,DIGI,INMC
+ fourcc EPHV
format 0x10000004 ; mpeg 4 es
driver xvid
out YV12
@@ -1319,6 +1321,7 @@ videocodec ffh263
fourcc H263,U263,h263,X263,M263
fourcc viv1 h263
fourcc s263,S263
+ fourcc T263
fourcc D263 ; DEC H263
fourcc L263 ; Lead H263
fourcc ILVR ; ITU H263+
@@ -1726,6 +1729,15 @@ videocodec midivid3
dll "MV3.dll"
out BGR24,BGR16
+videocodec moyea
+ info "Moyea Flash to Video Converter"
+ comment "requires zlib1.dll" ; c7d4d685a0af2a09cbc21cb474358595
+ status working
+ fourcc MFZ0
+ driver vfw
+ dll "MyFlashZip0.ax"
+ out BGR24 flip
+
videocodec nsvideo
info "Power VideoWorks video"
status working
diff --git a/libmpdemux/demux_ts.c b/libmpdemux/demux_ts.c
index 3de0ce404b..94de6fbc28 100644
--- a/libmpdemux/demux_ts.c
+++ b/libmpdemux/demux_ts.c
@@ -1762,6 +1762,7 @@ static int parse_pat(ts_priv_t * priv, int is_start, unsigned char *buff, int si
priv->pat.progs[idx].id = progid;
priv->pat.progs[idx].pmt_pid = ((base[2] & 0x1F) << 8) | base[3];
mp_msg(MSGT_DEMUX, MSGL_V, "PROG: %d (%d-th of %d), PMT: %d\n", priv->pat.progs[idx].id, i+1, entries, priv->pat.progs[idx].pmt_pid);
+ mp_msg(MSGT_IDENTIFY, MSGL_V, "PROGRAM_ID=%d (0x%02X), PMT_PID: %d(0x%02X)\n", progid, priv->pat.progs[idx].pmt_pid );
}
return 1;
diff --git a/libswscale/swscale.c b/libswscale/swscale.c
index 52b709aaa0..a22bf64b71 100644
--- a/libswscale/swscale.c
+++ b/libswscale/swscale.c
@@ -458,6 +458,10 @@ const char *sws_format_name(enum PixelFormat format)
return "vdpau_mpeg1";
case PIX_FMT_VDPAU_MPEG2:
return "vdpau_mpeg2";
+ case PIX_FMT_VDPAU_WMV3:
+ return "vdpau_wmv3";
+ case PIX_FMT_VDPAU_VC1:
+ return "vdpau_vc1";
default:
return "Unknown format";
}
diff --git a/libvo/vo_md5sum.c b/libvo/vo_md5sum.c
index 4eae0fb11b..be325f133a 100644
--- a/libvo/vo_md5sum.c
+++ b/libvo/vo_md5sum.c
@@ -3,7 +3,7 @@
/*
* md5sum video output driver
*
- * Written by Ivo van Poorten. (C) Copyright 2004, 2005, 2006.
+ * Copyright (C) 2004, 2005, 2006 Ivo van Poorten
*
* This file is part of MPlayer.
*
diff --git a/libvo/vo_sdl.c b/libvo/vo_sdl.c
index a1880c0f02..ab9ab8935e 100644
--- a/libvo/vo_sdl.c
+++ b/libvo/vo_sdl.c
@@ -3,7 +3,7 @@
*
* (was video_out_sdl.c from OMS project/mpeg2dec -> http://linuxvideo.org)
*
- * Copyright (C) Ryan C. Gordon <icculus@lokigames.com> - April 22, 2000.
+ * Copyright (C) Ryan C. Gordon <icculus@lokigames.com> - April 22, 2000
*
* Copyright (C) Felix Buenemann <atmosfear@users.sourceforge.net> - 2001
*
diff --git a/vidix/cyberblade_regs.h b/vidix/cyberblade_regs.h
index 07063262cb..b2fbcb1670 100644
--- a/vidix/cyberblade_regs.h
+++ b/vidix/cyberblade_regs.h
@@ -1,5 +1,5 @@
/*
- * Copyright 1992-2000 by Alan Hourihane, Wigan, England.
+ * Copyright 1992-2000 by Alan Hourihane, Wigan, England
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
diff --git a/vidix/dhahelperwin/dhahelper.c b/vidix/dhahelperwin/dhahelper.c
index 0b68791c85..2289738792 100644
--- a/vidix/dhahelperwin/dhahelper.c
+++ b/vidix/dhahelperwin/dhahelper.c
@@ -1,7 +1,7 @@
/*
* direct hardware access under Windows NT/2000/XP
*
- * Copyright (c) 2004 Sascha Sommer <saschasommer@freenet.de>.
+ * Copyright (c) 2004 Sascha Sommer <saschasommer@freenet.de>
* Patched to compile with MinGW by Kevin Kofler:
* Copyright (c) 2007 Kevin Kofler
*
diff --git a/vidix/dhahelperwin/dhahelper.h b/vidix/dhahelperwin/dhahelper.h
index eb96ea4c4d..a41880a97d 100644
--- a/vidix/dhahelperwin/dhahelper.h
+++ b/vidix/dhahelperwin/dhahelper.h
@@ -1,7 +1,7 @@
/*
* direct hardware access under Windows NT/2000/XP
*
- * Copyright (c) 2004 Sascha Sommer <saschasommer@freenet.de>.
+ * Copyright (c) 2004 Sascha Sommer <saschasommer@freenet.de>
*
* This file is part of MPlayer.
*
diff --git a/vidix/sis_bridge.c b/vidix/sis_bridge.c
index 4dd8fe92c3..f143754a9a 100644
--- a/vidix/sis_bridge.c
+++ b/vidix/sis_bridge.c
@@ -2,9 +2,9 @@
* VIDIX driver for SiS chipsets.
* Video bridge detection for SiS 300 and 310/325 series.
*
- * Copyright (C) 2003 Jake Page, Sugar Media.
+ * Copyright (C) 2003 Jake Page, Sugar Media
* Based on SiS Xv driver
- * Copyright 2002-2003 by Thomas Winischhofer, Vienna, Austria.
+ * Copyright 2002-2003 by Thomas Winischhofer, Vienna, Austria
*
* This file is part of MPlayer.
*
diff --git a/vidix/sis_vid.c b/vidix/sis_vid.c
index a2d1d98919..c47f1fb603 100644
--- a/vidix/sis_vid.c
+++ b/vidix/sis_vid.c
@@ -2,8 +2,8 @@
* VIDIX driver for SiS chipsets.
* Based on SiS Xv driver
*
- * Copyright (C) 2003 Jake Page, Sugar Media.
- * Copyright 2002-2003 by Thomas Winischhofer, Vienna, Austria.
+ * Copyright (C) 2003 Jake Page, Sugar Media
+ * Copyright 2002-2003 by Thomas Winischhofer, Vienna, Austria
* 2003/10/08 integrated into mplayer/vidix architecture -- Alex Beregszaszi
*
* This file is part of MPlayer.