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

Side by Side Diff: source/libvpx/vp8/common/ppc/systemdependent.c

Issue 11555023: libvpx: Add VP9 decoder. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 8 years 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
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
11 11
12 #include "subpixel.h" 12 #include "subpixel.h"
13 #include "loopfilter.h" 13 #include "loopfilter.h"
14 #include "recon.h" 14 #include "recon.h"
15 #include "idct.h"
16 #include "onyxc_int.h" 15 #include "onyxc_int.h"
17 16
18 void (*vp8_short_idct4x4)(short *input, short *output, int pitch);
19 void (*vp8_short_idct4x4_1)(short *input, short *output, int pitch);
20 void (*vp8_dc_only_idct)(short input_dc, short *output, int pitch);
21
22 extern void (*vp8_post_proc_down_and_across_mb_row)( 17 extern void (*vp8_post_proc_down_and_across_mb_row)(
23 unsigned char *src_ptr, 18 unsigned char *src_ptr,
24 unsigned char *dst_ptr, 19 unsigned char *dst_ptr,
25 int src_pixels_per_line, 20 int src_pixels_per_line,
26 int dst_pixels_per_line, 21 int dst_pixels_per_line,
27 int cols, 22 int cols,
28 unsigned char *f, 23 unsigned char *f,
29 int size 24 int size
30 ); 25 );
31 26
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 vp8_post_proc_down_and_across_mb_row = vp8_post_proc_down_and_across_mb_row_ c; 156 vp8_post_proc_down_and_across_mb_row = vp8_post_proc_down_and_across_mb_row_ c;
162 vp8_mbpost_proc_down = vp8_mbpost_proc_down_c; 157 vp8_mbpost_proc_down = vp8_mbpost_proc_down_c;
163 vp8_mbpost_proc_across_ip = vp8_mbpost_proc_across_ip_c; 158 vp8_mbpost_proc_across_ip = vp8_mbpost_proc_across_ip_c;
164 vp8_plane_add_noise = vp8_plane_add_noise_c; 159 vp8_plane_add_noise = vp8_plane_add_noise_c;
165 160
166 vp8_copy_mem16x16 = copy_mem16x16_ppc; 161 vp8_copy_mem16x16 = copy_mem16x16_ppc;
167 vp8_copy_mem8x8 = vp8_copy_mem8x8_c; 162 vp8_copy_mem8x8 = vp8_copy_mem8x8_c;
168 vp8_copy_mem8x4 = vp8_copy_mem8x4_c; 163 vp8_copy_mem8x4 = vp8_copy_mem8x4_c;
169 164
170 } 165 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698