diff options
119 files changed, 2099 insertions, 96 deletions
@@ -128,7 +128,7 @@ License: GNU General Public License Name: dvbstream Version: 0.4.3-pre3 (CVS checkout) URL: http://sourceforge.net/projects/dvbtools/ -Directory: stream/dvbin.h stream/rtp.[ch] stream/stream_dvb.c +Directory: stream/dvbin.h stream/rtp.c stream/stream_dvb.c Copyright: 2001-2002 Dave Chapman <dave@dchapman.com> License: GNU General Public License diff --git a/DOCS/man/en/mplayer.1 b/DOCS/man/en/mplayer.1 index 5239a0e39a..6e9282ae25 100644 --- a/DOCS/man/en/mplayer.1 +++ b/DOCS/man/en/mplayer.1 @@ -413,8 +413,6 @@ Switch teletext on/\:off. Go to next/\:prev teletext page. .RE .PD 1 -.PP -.RS . .TP .B mouse control @@ -4478,7 +4476,7 @@ Specify advanced audio filter options: .IPs force=<0\-7> Forces the insertion of audio filters to one of the following: .RSss -0: Use completely automatic filter insertion. +0: Use completely automatic filter insertion (currently identical to 1). .br 1: Optimize for accuracy (default). .br diff --git a/access_mpcontext.h b/access_mpcontext.h index c975a90fe6..23bfcfb0ce 100644 --- a/access_mpcontext.h +++ b/access_mpcontext.h @@ -1,3 +1,21 @@ +/* + * This file is part of MPlayer. + * + * MPlayer is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * MPlayer is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with MPlayer; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + #ifndef MPLAYER_ACCESS_MPCONTEXT_H #define MPLAYER_ACCESS_MPCONTEXT_H diff --git a/asxparser.c b/asxparser.c index ba9ba45354..6005987d87 100644 --- a/asxparser.c +++ b/asxparser.c @@ -1,3 +1,21 @@ +/* + * This file is part of MPlayer. + * + * MPlayer is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * MPlayer is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with MPlayer; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + #include "config.h" #include <stdlib.h> diff --git a/asxparser.h b/asxparser.h index 7b148a7775..c5a3b18fc7 100644 --- a/asxparser.h +++ b/asxparser.h @@ -1,3 +1,21 @@ +/* + * This file is part of MPlayer. + * + * MPlayer is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * MPlayer is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with MPlayer; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + #ifndef MPLAYER_ASXPARSER_H #define MPLAYER_ASXPARSER_H diff --git a/cfg-common-opts.h b/cfg-common-opts.h index 1770d2bd59..7a32b2101a 100644 --- a/cfg-common-opts.h +++ b/cfg-common-opts.h @@ -1,3 +1,21 @@ +/* + * This file is part of MPlayer. + * + * MPlayer is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * MPlayer is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with MPlayer; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + // ------------------------- common options -------------------- {"quiet", &quiet, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL}, {"noquiet", &quiet, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL}, diff --git a/cfg-common.h b/cfg-common.h index 831bd5b435..e4f3af7efd 100644 --- a/cfg-common.h +++ b/cfg-common.h @@ -1,3 +1,21 @@ +/* + * This file is part of MPlayer. + * + * MPlayer is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * MPlayer is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with MPlayer; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + #ifndef MPLAYER_CFG_COMMON_H #define MPLAYER_CFG_COMMON_H diff --git a/cfg-mencoder.h b/cfg-mencoder.h index 6318453ae2..4d390bfdcc 100644 --- a/cfg-mencoder.h +++ b/cfg-mencoder.h @@ -1,3 +1,21 @@ |