Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: source/libvpx/vp8/encoder/x86/dct_x86.h

Issue 7671004: Update libvpx snapshot to v0.9.7-p1 (Cayuga). (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: '' Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « source/libvpx/vp8/encoder/x86/dct_sse2.asm ('k') | source/libvpx/vp8/encoder/x86/encodeopt.asm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 13 matching lines...) Expand all
24 extern prototype_fdct(vp8_short_fdct8x4_mmx); 24 extern prototype_fdct(vp8_short_fdct8x4_mmx);
25 25
26 #if !CONFIG_RUNTIME_CPU_DETECT 26 #if !CONFIG_RUNTIME_CPU_DETECT
27 27
28 #undef vp8_fdct_short4x4 28 #undef vp8_fdct_short4x4
29 #define vp8_fdct_short4x4 vp8_short_fdct4x4_mmx 29 #define vp8_fdct_short4x4 vp8_short_fdct4x4_mmx
30 30
31 #undef vp8_fdct_short8x4 31 #undef vp8_fdct_short8x4
32 #define vp8_fdct_short8x4 vp8_short_fdct8x4_mmx 32 #define vp8_fdct_short8x4 vp8_short_fdct8x4_mmx
33 33
34 #undef vp8_fdct_fast4x4
35 #define vp8_fdct_fast4x4 vp8_short_fdct4x4_mmx
36
37 #undef vp8_fdct_fast8x4
38 #define vp8_fdct_fast8x4 vp8_short_fdct8x4_mmx
39
34 #endif 40 #endif
35 41
36 #endif 42 #endif
37 43
38 44
39 #if HAVE_SSE2 45 #if HAVE_SSE2
40 extern prototype_fdct(vp8_short_fdct8x4_sse2); 46 extern prototype_fdct(vp8_short_fdct8x4_sse2);
41 extern prototype_fdct(vp8_short_walsh4x4_sse2); 47 extern prototype_fdct(vp8_short_walsh4x4_sse2);
42 48
43 extern prototype_fdct(vp8_short_fdct4x4_sse2); 49 extern prototype_fdct(vp8_short_fdct4x4_sse2);
(...skipping 14 matching lines...) Expand all
58 64
59 #undef vp8_fdct_walsh_short4x4 65 #undef vp8_fdct_walsh_short4x4
60 #define vp8_fdct_walsh_short4x4 vp8_short_walsh4x4_sse2 66 #define vp8_fdct_walsh_short4x4 vp8_short_walsh4x4_sse2
61 67
62 #endif 68 #endif
63 69
64 70
65 #endif 71 #endif
66 72
67 #endif 73 #endif
OLDNEW
« no previous file with comments | « source/libvpx/vp8/encoder/x86/dct_sse2.asm ('k') | source/libvpx/vp8/encoder/x86/encodeopt.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698