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

Side by Side Diff: source/libvpx/vp8/encoder/x86/quantize_sse4.asm

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 and patent 4 ; Use of this source code is governed by a BSD-style license and patent
5 ; grant that can be found in the LICENSE file in the root of the source 5 ; grant that can be found in the LICENSE file in the root of the source
6 ; tree. All contributing project authors may be found in the AUTHORS 6 ; tree. All contributing project authors may be found in the AUTHORS
7 ; file in the root of the source tree. 7 ; file in the root of the source tree.
8 ; 8 ;
9 9
10 10
11 %include "vpx_ports/x86_abi_support.asm" 11 %include "vpx_ports/x86_abi_support.asm"
12 %include "asm_enc_offsets.asm" 12 %include "vp8_asm_enc_offsets.asm"
13 13
14 14
15 ; void vp8_regular_quantize_b_sse4 | arg 15 ; void vp8_regular_quantize_b_sse4 | arg
16 ; (BLOCK *b, | 0 16 ; (BLOCK *b, | 0
17 ; BLOCKD *d) | 1 17 ; BLOCKD *d) | 1
18 18
19 global sym(vp8_regular_quantize_b_sse4) PRIVATE 19 global sym(vp8_regular_quantize_b_sse4) PRIVATE
20 sym(vp8_regular_quantize_b_sse4): 20 sym(vp8_regular_quantize_b_sse4):
21 21
22 %if ABI_IS_32BIT 22 %if ABI_IS_32BIT
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 %endif 247 %endif
248 %endif 248 %endif
249 249
250 ret 250 ret
251 251
252 SECTION_RODATA 252 SECTION_RODATA
253 align 16 253 align 16
254 ; vp8/common/entropy.c: vp8_default_zig_zag1d 254 ; vp8/common/entropy.c: vp8_default_zig_zag1d
255 zig_zag1d: 255 zig_zag1d:
256 db 0, 1, 4, 8, 5, 2, 3, 6, 9, 12, 13, 10, 7, 11, 14, 15 256 db 0, 1, 4, 8, 5, 2, 3, 6, 9, 12, 13, 10, 7, 11, 14, 15
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698