comparison libvo/jpeg_enc.h @ 26739:2a34d9fa52ab

Use standard license headers with standard formatting.
author diego
date Wed, 14 May 2008 17:22:53 +0000
parents 4129c8cfa742
children 0f1b5b68af32
comparison
equal deleted inserted replaced
26738:588ce97b44f2 26739:2a34d9fa52ab
1 /* Straightforward (to be) optimized JPEG encoder for the YUV422 format 1 /*
2 * based on mjpeg code from ffmpeg. 2 * straightforward (to be) optimized JPEG encoder for the YUV422 format
3 * based on MJPEG code from FFmpeg
4 *
5 * For an excellent introduction to the JPEG format, see:
6 * http://www.ece.purdue.edu/~bouman/grad-labs/lab8/pdf/lab.pdf
3 * 7 *
4 * Copyright (c) 2002, Rik Snel 8 * Copyright (c) 2002, Rik Snel
5 * Parts from ffmpeg Copyright (c) 2000-2002 Fabrice Bellard 9 * parts from FFmpeg Copyright (c) 2000-2002 Fabrice Bellard
6 * 10 *
7 * This program is free software; you can redistribute it and/or modify 11 * This file is part of MPlayer.
12 *
13 * MPlayer is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by 14 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or 15 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version. 16 * (at your option) any later version.
11 * 17 *
12 * This program is distributed in the hope that it will be useful, 18 * MPlayer is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details. 21 * GNU General Public License for more details.
16 * 22 *
17 * You should have received a copy of the GNU General Public License 23 * You should have received a copy of the GNU General Public License along
18 * along with this program; if not, write to the Free Software 24 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * For an excellent introduction to the JPEG format, see:
22 * http://www.ece.purdue.edu/~bourman/grad-labs/lab8/pdf/lab.pdf
23 */ 26 */
24 27
25 #ifndef MPLAYER_JPEG_ENC_H 28 #ifndef MPLAYER_JPEG_ENC_H
26 #define MPLAYER_JPEG_ENC_H 29 #define MPLAYER_JPEG_ENC_H
27 30