# HG changeset patch # User Min Chen <[email protected]> # Date 1406940971 25200 # Node ID c1d8dda4f1f17c679655156c3cd55805ad9eca4d # Parent 3db5fda6abf08721efe7dcaf0ca57ff2965284fb update header and support Intel IACA marker
diff -r 3db5fda6abf0 -r c1d8dda4f1f1 source/common/x86/x86inc.asm --- a/source/common/x86/x86inc.asm Fri Aug 01 16:31:20 2014 +0530 +++ b/source/common/x86/x86inc.asm Fri Aug 01 17:56:11 2014 -0700 @@ -2,11 +2,13 @@ ;* x86inc.asm: x264asm abstraction layer ;***************************************************************************** ;* Copyright (C) 2005-2014 x264 project +;* 2013-2014 x265 project ;* ;* Authors: Loren Merritt <[email protected]> ;* Anton Mitrofanov <[email protected]> ;* Jason Garrett-Glaser <[email protected]> ;* Henrik Gramner <[email protected]> +;* Min Chen <[email protected]> ;* ;* Permission to use, copy, modify, and/or distribute this software for any ;* purpose with or without fee is hereby granted, provided that the above @@ -1466,3 +1468,13 @@ %endif %endmacro %endif + +%macro IACA_START 0 + mov ebx, 111 + db 0x64, 0x67, 0x90 +%endmacro + +%macro IACA_END 0 + mov ebx, 222 + db 0x64, 0x67, 0x90 +%endmacro _______________________________________________ x265-devel mailing list [email protected] https://mailman.videolan.org/listinfo/x265-devel
