From b10c35e0ed2aa34af57905eb1e8cf1cf8963898e Mon Sep 17 00:00:00 2001 From: diego Date: Wed, 14 May 2008 18:02:27 +0000 Subject: Use standard license headers with standard formatting. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26775 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libao2/ao_dsound.c | 21 ++++++++++++--------- libao2/ao_ivtv.c | 37 ++++++++++++++++++++----------------- libao2/ao_pulse.c | 7 ++++--- libao2/ao_v4l2.c | 31 +++++++++++++++++-------------- libao2/ao_win32.c | 22 ++++++++++++---------- 5 files changed, 65 insertions(+), 53 deletions(-) (limited to 'libao2') diff --git a/libao2/ao_dsound.c b/libao2/ao_dsound.c index d66de37ec5..acd59983dd 100644 --- a/libao2/ao_dsound.c +++ b/libao2/ao_dsound.c @@ -1,22 +1,25 @@ -/****************************************************************************** - * ao_dsound.c: Windows DirectSound interface for MPlayer +/* + * Windows DirectSound interface + * * Copyright (c) 2004 Gabor Szecsi * - * This program is free software; you can redistribute it and/or modify + * 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. * - * This program is distributed in the hope that it will be useful, + * 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 this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - *****************************************************************************/ + * 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. + */ + /** \todo verify/extend multichannel support */ diff --git a/libao2/ao_ivtv.c b/libao2/ao_ivtv.c index ea57bcf9c4..4d1d578ba0 100644 --- a/libao2/ao_ivtv.c +++ b/libao2/ao_ivtv.c @@ -1,25 +1,28 @@ /* - * Copyright (C) 2006 Benjamin Zores - * Audio output for WinTV PVR-150/250/350 (a.k.a IVTV) cards. - * through Connexant hardware MPEG decoder. - * See http://ivtvdriver.org/index.php/Main_Page for more details on the - * cards supported by the ivtv driver. + * audio output for WinTV PVR-150/250/350 (a.k.a IVTV) cards + * through Connexant hardware MPEG decoder + * See http://ivtvdriver.org/index.php/Main_Page for more details on the + * cards supported by the ivtv driver. * - * This program 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. + * WARNING: You need to force -ac hwmpa for audio output to work. * - * This program 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. + * Copyright (C) 2006 Benjamin Zores * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * This file is part of MPlayer. * - * WARNING: you need to force -ac hwmpa for audio output to work. + * 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 diff --git a/libao2/ao_pulse.c b/libao2/ao_pulse.c index 4fbd0fc5c4..827dab92db 100644 --- a/libao2/ao_pulse.c +++ b/libao2/ao_pulse.c @@ -15,10 +15,11 @@ * 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 + * 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 #include diff --git a/libao2/ao_v4l2.c b/libao2/ao_v4l2.c index 6dca333c1d..dc63003b06 100644 --- a/libao2/ao_v4l2.c +++ b/libao2/ao_v4l2.c @@ -1,22 +1,25 @@ /* - * Copyright (C) 2007 Benjamin Zores - * Audio output for V4L2 hardware MPEG decoders. + * audio output for V4L2 hardware MPEG decoders * - * This program 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. + * WARNING: You need to force -ac hwmpa for audio output to work. * - * This program 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. + * Copyright (C) 2007 Benjamin Zores * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * This file is part of MPlayer. * - * WARNING: you need to force -ac hwmpa for audio output to work. + * 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 diff --git a/libao2/ao_win32.c b/libao2/ao_win32.c index 71146b43a2..40830eb233 100644 --- a/libao2/ao_win32.c +++ b/libao2/ao_win32.c @@ -1,22 +1,24 @@ -/****************************************************************************** - * ao_win32.c: Windows waveOut interface for MPlayer - * Copyright (c) 2002 - 2004 Sascha Sommer . +/* + * Windows waveOut interface * - * This program is free software; you can redistribute it and/or modify + * Copyright (c) 2002 - 2004 Sascha Sommer + * + * 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. * - * This program is distributed in the hope that it will be useful, + * 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 this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - *****************************************************************************/ + * 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 #include -- cgit v1.2.3