
Recherche avancée
Autres articles (59)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (6777)
-
Refactoring of win_utf8_io
31 janvier 2016, par Erik de Castro Lopo -
libFLAC : Add a workaround for a bug in MSVC2105 update2
5 mai 2016, par Erik de Castro LopolibFLAC : Add a workaround for a bug in MSVC2105 update2
MSVC2105 update2 compiles the C code :
abs_residual_partition_sums[partition] =
(FLAC__uint32)_mm_cvtsi128_si32(mm_sum) ;into this :
movq QWORD PTR [rsi], xmm2
while it should be :
movd eax, xmm2
mov QWORD PTR [rsi], raxWith this patch, MSVC emits :
movq QWORD PTR [rsi], xmm2
mov DWORD PTR [rsi+4], r9dso the price of this workaround is 1 extra write instruction per
partition.Patch-from : lvqcl <lvqcl.mail@gmail.com>
-
SIMD : remove outdated SSE2 code
21 février 2017, par Erik de Castro LopoSIMD : remove outdated SSE2 code
Removes FLAC__lpc_restore_signal_16_intrin_sse2() which was faster
than than C code, but not faster than MMX-accelerated ASM functions.
It’s also slower than the new SSE4.1 functions that were added by
the previous patch.Patch-from : lvqcl <lvqcl.mail@gmail.com>