Use standard license headers with standard formatting.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26771 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-05-14 17:22:53 +00:00
parent ce01f2052c
commit 8ba8cac28d
15 changed files with 197 additions and 185 deletions

View File

@ -1,25 +1,28 @@
/* Straightforward (to be) optimized JPEG encoder for the YUV422 format /*
* based on mjpeg code from ffmpeg. * straightforward (to be) optimized JPEG encoder for the YUV422 format
* based on MJPEG code from FFmpeg
*
* For an excellent introduction to the JPEG format, see:
* http://www.ece.purdue.edu/~bouman/grad-labs/lab8/pdf/lab.pdf
* *
* Copyright (c) 2002, Rik Snel * Copyright (c) 2002, Rik Snel
* Parts from ffmpeg Copyright (c) 2000-2002 Fabrice Bellard * parts from FFmpeg Copyright (c) 2000-2002 Fabrice Bellard
* *
* 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 * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. * (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 * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License along
* along with this program; if not, write to the Free Software * with MPlayer; if not, write to the Free Software Foundation, Inc.,
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* For an excellent introduction to the JPEG format, see:
* http://www.ece.purdue.edu/~bouman/grad-labs/lab8/pdf/lab.pdf
*/ */

View File

@ -1,25 +1,28 @@
/* Straightforward (to be) optimized JPEG encoder for the YUV422 format /*
* based on mjpeg code from ffmpeg. * straightforward (to be) optimized JPEG encoder for the YUV422 format
* based on MJPEG code from FFmpeg
*
* For an excellent introduction to the JPEG format, see:
* http://www.ece.purdue.edu/~bouman/grad-labs/lab8/pdf/lab.pdf
* *
* Copyright (c) 2002, Rik Snel * Copyright (c) 2002, Rik Snel
* Parts from ffmpeg Copyright (c) 2000-2002 Fabrice Bellard * parts from FFmpeg Copyright (c) 2000-2002 Fabrice Bellard
* *
* 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 * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. * (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 * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License along
* along with this program; if not, write to the Free Software * with MPlayer; if not, write to the Free Software Foundation, Inc.,
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* For an excellent introduction to the JPEG format, see:
* http://www.ece.purdue.edu/~bourman/grad-labs/lab8/pdf/lab.pdf
*/ */
#ifndef MPLAYER_JPEG_ENC_H #ifndef MPLAYER_JPEG_ENC_H

View File

@ -9,20 +9,21 @@
* *
* Samuel Hocevar <sam@via.ecp.fr> and Michel Lespinasse <walken@via.ecp.fr> * Samuel Hocevar <sam@via.ecp.fr> and Michel Lespinasse <walken@via.ecp.fr>
* *
* 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 * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. * (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 * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License along
* along with this program; if not, write to the Free Software * with MPlayer; if not, write to the Free Software Foundation, Inc.,
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
*/ */
#include <stdio.h> #include <stdio.h>

View File

@ -3,20 +3,21 @@
* *
* Copyright (C) 2000 Alejandro J. Cura <alecu@protocultura.net> * Copyright (C) 2000 Alejandro J. Cura <alecu@protocultura.net>
* *
* 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 * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. * (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 * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License along
* along with this program; if not, write to the Free Software * with MPlayer; if not, write to the Free Software Foundation, Inc.,
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
*/ */
#ifndef MPLAYER_SPUENC_H #ifndef MPLAYER_SPUENC_H

View File

@ -1,23 +1,21 @@
/* /*
* video_out_internal.h * Copyright (C) Aaron Holtzman - Aug 1999
* *
* Copyright (C) Aaron Holtzman - Aug 1999 * This file is part of MPlayer.
* *
* This file is part of mpeg2dec, a free MPEG-2 video stream decoder. * MPlayer is free software; you can redistribute it and/or modify
* * it under the terms of the GNU General Public License as published by
* mpeg2dec is free software; you can redistribute it and/or modify * the Free Software Foundation; either version 2 of the License, or
* it under the terms of the GNU General Public License as published by * (at your option) any later version.
* the Free Software Foundation; either version 2, 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
* mpeg2dec is distributed in the hope that it will be useful, * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* but WITHOUT ANY WARRANTY; without even the implied warranty of * GNU General Public License for more details.
* 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.,
* You should have received a copy of the GNU General Public License * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* along with mpeg2dec; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#ifndef MPLAYER_VIDEO_OUT_INTERNAL_H #ifndef MPLAYER_VIDEO_OUT_INTERNAL_H

View File

@ -1,24 +1,24 @@
/* /*
* video_out_3dfx.c * video_out_3dfx.c
* Heavily based on video_out_mga.c of Aaron Holtzman's mpeg2dec.
* *
* Copyright (C) Colin Cross Apr 2000 * Copyright (C) Colin Cross Apr 2000
* *
* This file heavily based off of video_out_mga.c of Aaron Holtzman's * This file is part of MPlayer.
* mpeg2dec *
* * MPlayer is free software; you can redistribute it and/or modify
* mpeg2dec is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
* it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or
* the Free Software Foundation; either version 2, or (at your option) * (at your option) any later version.
* any later version. *
* * MPlayer is distributed in the hope that it will be useful,
* mpeg2dec is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of
* but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details.
* GNU General Public License for more details. *
* * You should have received a copy of the GNU General Public License along
* You should have received a copy of the GNU General Public License * with MPlayer; if not, write to the Free Software Foundation, Inc.,
* along with mpeg2dec; if not, write to the Free Software * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <stdio.h> #include <stdio.h>

View File

@ -1,22 +1,24 @@
/****************************************************************************** /*
* vo_directx.c: Directx v2 or later DirectDraw interface for MPlayer * Directx v2 or later DirectDraw interface
* Copyright (c) 2002 - 2005 Sascha Sommer <saschasommer@freenet.de>.
* *
* This program is free software; you can redistribute it and/or modify * Copyright (c) 2002 - 2005 Sascha Sommer <saschasommer@freenet.de>
*
* 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 * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. * (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 * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License along
* along with this program; if not, write to the Free Software * with MPlayer; if not, write to the Free Software Foundation, Inc.,
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* */
*****************************************************************************/
#include <windows.h> #include <windows.h>
#include <windowsx.h> #include <windowsx.h>

View File

@ -1,24 +1,27 @@
/* /*
* Copyright (C) 2006 Benjamin Zores * video output for WinTV PVR-150/250/350 (a.k.a IVTV) cards
* Video output for WinTV PVR-150/250/350 (a.k.a IVTV) cards. * TV-Out through hardware MPEG decoder
* TV-Out through hardware MPEG decoder. * Based on some old code from ivtv driver authors.
* Based on some old code from ivtv driver authors. * See http://ivtvdriver.org/index.php/Main_Page for more details on the
* See http://ivtvdriver.org/index.php/Main_Page for more details on the * cards supported by the ivtv driver.
* cards supported by the ivtv driver.
* *
* This program is free software; you can redistribute it and/or modify * Copyright (C) 2006 Benjamin Zores
* 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, * This file is part of MPlayer.
* 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 * MPlayer is free software; you can redistribute it and/or modify
* along with this program; if not, write to the Free Software Foundation, * it under the terms of the GNU General Public License as published by
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * 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 "config.h"

View File

@ -1,26 +1,25 @@
/* ------------------------------------------------------------------------- */ /*
* JPEG Renderer for MPlayer
/*
* vo_jpeg.c, JPEG Renderer for MPlayer
* *
* Copyright (C) 2002 by Pontscho <pontscho@makacs.poliod.hu> * Copyright (C) 2002 by Pontscho <pontscho@makacs.poliod.hu>
* Copyright (C) 2003 by Alex * Copyright (C) 2003 by Alex
* Copyright (C) 2004, 2005 by Ivo van Poorten <ivop@euronet.nl> * Copyright (C) 2004, 2005 by Ivo van Poorten <ivop@euronet.nl>
* *
* This program is free software; you can redistribute it and/or * This file is part of MPlayer.
* 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 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 * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License along
* along with this program; if not, write to the Free Software * with MPlayer; if not, write to the Free Software Foundation, Inc.,
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
*/ */
/* ------------------------------------------------------------------------- */ /* ------------------------------------------------------------------------- */

View File

@ -1,24 +1,25 @@
/* ------------------------------------------------------------------------- */ /* ------------------------------------------------------------------------- */
/* /*
* vo_md5sum.c, md5sum Video Output Driver for MPlayer * md5sum video output driver
* *
* Written by Ivo van Poorten. (C) Copyright 2004, 2005, 2006. * Written by Ivo van Poorten. (C) Copyright 2004, 2005, 2006.
* *
* This program is free software; you can redistribute it and/or * This file is part of MPlayer.
* 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 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 * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License along
* along with this program; if not, write to the Free Software * with MPlayer; if not, write to the Free Software Foundation, Inc.,
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
*/ */
/* ------------------------------------------------------------------------- */ /* ------------------------------------------------------------------------- */

View File

@ -1,23 +1,23 @@
/* /*
* video_out_null.c * based on video_out_null.c from mpeg2dec
* *
* Copyright (C) Aaron Holtzman - June 2000 * Copyright (C) Aaron Holtzman - June 2000
* *
* This file is part of mpeg2dec, a free MPEG-2 video stream decoder. * This file is part of MPlayer.
* *
* mpeg2dec is free software; you can redistribute it and/or modify * MPlayer is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option) * the Free Software Foundation; either version 2 of the License, or
* any later version. * (at your option) any later version.
* *
* mpeg2dec 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 * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License along
* along with mpeg2dec; if not, write to the Free Software * with MPlayer; if not, write to the Free Software Foundation, Inc.,
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#include <stdio.h> #include <stdio.h>

View File

@ -1,24 +1,23 @@
/* ------------------------------------------------------------------------- */ /*
* PPM/PGM/PGMYUV video output driver
/*
* vo_pnm.c, PPM/PGM/PGMYUV Video Output Driver for MPlayer
* *
* Written by Ivo van Poorten. (C) Copyright 2004, 2005. * Written by Ivo van Poorten. (C) Copyright 2004, 2005.
* *
* This program is free software; you can redistribute it and/or * This file is part of MPlayer.
* 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 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 * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License along
* along with this program; if not, write to the Free Software * with MPlayer; if not, write to the Free Software Foundation, Inc.,
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
*/ */
/* ------------------------------------------------------------------------- */ /* ------------------------------------------------------------------------- */

View File

@ -23,23 +23,23 @@
* and BeOS support, too. Yay. SDL info, source, and binaries can be found * and BeOS support, too. Yay. SDL info, source, and binaries can be found
* at http://slouken.devolution.com/SDL/ * at http://slouken.devolution.com/SDL/
* *
* This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
*
* mpeg2dec 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, or (at your option)
* any later version.
*
* mpeg2dec 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 mpeg2dec; see the file COPYING. If not, write to
* the Free Software Foundation.
*
* -- end old disclaimer -- * -- end old disclaimer --
*
* 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.
*/ */
/* define to force software-surface (video surface stored in system memory)*/ /* define to force software-surface (video surface stored in system memory)*/

View File

@ -1,20 +1,23 @@
/* /*
* Copyright (C) 2007 Benjamin Zores * video output for V4L2 hardware MPEG decoders
* Video output for V4L2 hardware MPEG decoders.
* *
* This program is free software; you can redistribute it and/or modify * Copyright (C) 2007 Benjamin Zores
* 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, * This file is part of MPlayer.
* 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 * MPlayer is free software; you can redistribute it and/or modify
* along with this program; if not, write to the Free Software Foundation, * it under the terms of the GNU General Public License as published by
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * 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 "config.h"

View File

@ -28,10 +28,9 @@
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License along
* along with MPlayer; if not, write to the Free Software * with MPlayer; if not, write to the Free Software Foundation, Inc.,
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
*/ */
#include <stdlib.h> #include <stdlib.h>