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

Side by Side Diff: source/libvpx/vp8/encoder/x86/quantize_sse2.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_sse2 | arg 15 ; void vp8_regular_quantize_b_sse2 | 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_sse2) PRIVATE 19 global sym(vp8_regular_quantize_b_sse2) PRIVATE
20 sym(vp8_regular_quantize_b_sse2): 20 sym(vp8_regular_quantize_b_sse2):
21 push rbp 21 push rbp
22 mov rbp, rsp 22 mov rbp, rsp
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 pop rbp 377 pop rbp
378 ret 378 ret
379 379
380 SECTION_RODATA 380 SECTION_RODATA
381 align 16 381 align 16
382 inv_zig_zag: 382 inv_zig_zag:
383 dw 0x0001, 0x0002, 0x0006, 0x0007 383 dw 0x0001, 0x0002, 0x0006, 0x0007
384 dw 0x0003, 0x0005, 0x0008, 0x000d 384 dw 0x0003, 0x0005, 0x0008, 0x000d
385 dw 0x0004, 0x0009, 0x000c, 0x000e 385 dw 0x0004, 0x0009, 0x000c, 0x000e
386 dw 0x000a, 0x000b, 0x000f, 0x0010 386 dw 0x000a, 0x000b, 0x000f, 0x0010
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698