wok view orc/description.txt @ rev 25466

Update some web_site
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 01 09:32:27 2022 +0000 (19 months ago)
parents
children
line source
1 Orc is basically a simplified assembly language for data processing
2 (no loops, jumps etc.), it's supposed to map to SIMD instructions on
3 various architectures curently there are two things:
5 - liborc, which is a JIT compiler that will at run-time take orc code
6 (in some byte format) and generate machine code for the architecture
7 in question on the fly and then execute that whenever there's a
8 function call
9 - we have C backup functions as .c files in the gstreamer source code,
10 which are also compiled in when orc can't compile some code (for
11 various reasons), or liborc is not available, then the C backup
12 function will be used that's the current state of things.