Mercurial > libavcodec.hg
annotate i386/fft_3dn.c @ 7667:ce3402b964cd libavcodec
fix decoding of coupling leak info for normal AC-3
author | jbr |
---|---|
date | Sat, 23 Aug 2008 03:30:08 +0000 |
parents | a8a8205a9081 |
children |
rev | line source |
---|---|
3175 | 1 /* |
2 * FFT/MDCT transform with 3DNow! optimizations | |
7542 | 3 * Copyright (c) 2008 Loren Merritt |
3175 | 4 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3590
diff
changeset
|
5 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3590
diff
changeset
|
6 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3590
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
3175 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3590
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
3175 | 11 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3590
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
3175 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Lesser General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3590
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
3175 | 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
20 */ | |
6763 | 21 |
7542 | 22 #define EMULATE_3DNOWEXT |
23 #include "fft_3dn2.c" |