Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (74)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (16197)

  • Refactoring of win_utf8_io

    31 janvier 2016, par Erik de Castro Lopo
    Refactoring of win_utf8_io
    

    * Simplifies *print functions.
    * Improves file related functions.
    * Preparation to move all file related functions into libFLAC.

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] include/share/compat.h
    • [DH] include/share/win_utf8_io.h
    • [DH] src/share/win_utf8_io/win_utf8_io.c
  • libFLAC : Add a workaround for a bug in MSVC2105 update2

    5 mai 2016, par Erik de Castro Lopo
    libFLAC : 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], rax

    With this patch, MSVC emits :

    movq QWORD PTR [rsi], xmm2
    mov DWORD PTR [rsi+4], r9d

    so the price of this workaround is 1 extra write instruction per
    partition.

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/libFLAC/stream_encoder_intrin_avx2.c
    • [DH] src/libFLAC/stream_encoder_intrin_sse2.c
    • [DH] src/libFLAC/stream_encoder_intrin_ssse3.c
  • SIMD : remove outdated SSE2 code

    21 février 2017, par Erik de Castro Lopo
    SIMD : 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>

    • [DH] src/libFLAC/include/private/lpc.h
    • [DH] src/libFLAC/lpc_intrin_sse2.c
    • [DH] src/libFLAC/stream_decoder.c