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

Side by Side Diff: source/libvpx/vp8/common/x86/vp8_asm_stubs.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 "vpx_config.h" 12 #include "vpx_config.h"
13 #include "vpx_rtcd.h" 13 #include "vp8_rtcd.h"
14 #include "vpx_ports/mem.h" 14 #include "vpx_ports/mem.h"
15 #include "filter_x86.h" 15 #include "filter_x86.h"
16 16
17 extern const short vp8_six_tap_mmx[8][6*8]; 17 extern const short vp8_six_tap_mmx[8][6*8];
18 18
19 extern void vp8_filter_block1d_h6_mmx 19 extern void vp8_filter_block1d_h6_mmx
20 ( 20 (
21 unsigned char *src_ptr, 21 unsigned char *src_ptr,
22 unsigned short *output_ptr, 22 unsigned short *output_ptr,
23 unsigned int src_pixels_per_line, 23 unsigned int src_pixels_per_line,
(...skipping 596 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 *(uint32_t *)dst_ptr = *(uint32_t *)src_ptr ; 620 *(uint32_t *)dst_ptr = *(uint32_t *)src_ptr ;
621 #endif 621 #endif
622 dst_ptr += dst_pitch; 622 dst_ptr += dst_pitch;
623 src_ptr += src_pixels_per_line; 623 src_ptr += src_pixels_per_line;
624 } 624 }
625 } 625 }
626 } 626 }
627 } 627 }
628 628
629 #endif 629 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698