comparison i386/mpegvideo_mmx.c @ 429:718a22dc121f libavcodec

license/copyright change
author glantau
date Sat, 25 May 2002 22:45:33 +0000
parents 6ebbecc10063
children a5aa53b6e648
comparison
equal deleted inserted replaced
428:dd4f4c3d7171 429:718a22dc121f
1 /* 1 /*
2 * The simplest mpeg encoder (well, it was the simplest!) 2 * The simplest mpeg encoder (well, it was the simplest!)
3 * Copyright (c) 2000,2001 Gerard Lantau. 3 * Copyright (c) 2000,2001 Fabrice Bellard.
4 * 4 *
5 * This program is free software; you can redistribute it and/or modify 5 * This library is free software; you can redistribute it and/or
6 * it under the terms of the GNU General Public License as published by 6 * modify it under the terms of the GNU Lesser General Public
7 * the Free Software Foundation; either version 2 of the License, or 7 * License as published by the Free Software Foundation; either
8 * (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This program is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * GNU General Public License for more details. 13 * Lesser General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU General Public License 15 * You should have received a copy of the GNU Lesser General Public
16 * along with this program; if not, write to the Free Software 16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 * 18 *
19 * Optimized for ia32 cpus by Nick Kurshev <nickols_k@mail.ru> 19 * Optimized for ia32 cpus by Nick Kurshev <nickols_k@mail.ru>
20 * h263, mpeg1, mpeg2 dequantizer & draw_edges by Michael Niedermayer <michaelni@gmx.at> 20 * h263, mpeg1, mpeg2 dequantizer & draw_edges by Michael Niedermayer <michaelni@gmx.at>
21 */ 21 */
22 22
23 #include "../dsputil.h" 23 #include "../dsputil.h"
24 #include "../mpegvideo.h" 24 #include "../mpegvideo.h"
25 #include "../avcodec.h" 25 #include "../avcodec.h"
26 #include "../mangle.h"
27 26
28 extern UINT8 zigzag_end[64]; 27 extern UINT8 zigzag_end[64];
29 28
30 extern UINT8 zigzag_direct_noperm[64]; 29 extern UINT8 zigzag_direct_noperm[64];
31 extern UINT16 inv_zigzag_direct16[64]; 30 extern UINT16 inv_zigzag_direct16[64];