-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1) add SSE2 simd for dwt_shift_rem and diff_count make dwt_shift_rem easier to read move common rlgr defines to common file move common dwt defines to common file 2) Fix 'make distcheck' 3) Fix compiler warnings on tests
- Loading branch information
1 parent
b45630e
commit cb50f18
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule librfxcodec
updated
18 files
+9 −0 | include/rfxcodec_encode.h | |
+13 −4 | src/Makefile.am | |
+25 −0 | src/rfxencode.c | |
+10 −0 | src/rfxencode.h | |
+31 −12 | src/rfxencode_compose.c | |
+5 −0 | src/rfxencode_compose.h | |
+106 −0 | src/rfxencode_diff_count_sse2.c | |
+28 −0 | src/rfxencode_diff_count_sse2.h | |
+1 −75 | src/rfxencode_diff_rlgr1.c | |
+1 −75 | src/rfxencode_diff_rlgr3.c | |
+97 −0 | src/rfxencode_diff_rlgr_common.h | |
+177 −237 | src/rfxencode_dwt_shift_rem.c | |
+2 −2 | src/rfxencode_dwt_shift_rem.h | |
+116 −0 | src/rfxencode_dwt_shift_rem_common.h | |
+693 −0 | src/rfxencode_dwt_shift_rem_sse2.c | |
+26 −0 | src/rfxencode_dwt_shift_rem_sse2.h | |
+5 −1 | tests/Makefile.am | |
+122 −0 | tests/test_dwt_rem.c |