Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (58)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (8278)

  • configure : drop yasm support

    3 octobre 2024, par Lynne
    configure : drop yasm support
    

    We started defauling to nasm 8 years ago.
    We are still compatible with yasm 0.8.0, released in 2009. **15 years ago**.
    The time has more than come to remove support for it.

    Maintaining compatibility started cutting into writing new code long ago.
    We still can't have 2-argument instructions, preprocessor booleans, and all
    AVX2 code must still be wrapped in ifdefs. Newly added code often breaks this.

    • [DH] Changelog
    • [DH] configure
    • [DH] doc/developer.texi
    • [DH] doc/optimization.txt
    • [DH] doc/platform.texi
  • avformat/avisynth : remove atexit() handler

    7 juillet 2024, par Stephen Hutchinson
    avformat/avisynth : remove atexit() handler
    

    The atexit() handler in the avisynth demuxer was added because
    there was a conflict in AvxSynth that arose due to their use
    of C++ global objects, particularly in relation to having
    added a logging function relying on log4cpp.

    This conflict was responsible for causing a segfault on exit.
    It did not affect Windows with the (at the time) upstream
    AviSynth 2.5 and 2.6, nor does it affect AviSynth+.

    Unfortunately, none of this was actually shielded by ifdefs
    indicating the fact it was only needed for AvxSynth, so four
    years ago when AviSynth+ replaced AvxSynth as the handler
    for AviSynth scripts on Unix-like OSes, the fact that the
    atexit handler was no longer necessary was overlooked.

    Signed-off-by : Stephen Hutchinson <qyot27@gmail.com>

    • [DH] libavformat/avisynth.c
  • lavu/riscv : grok B as an extension

    22 juillet 2024, par Rémi Denis-Courmont
    lavu/riscv : grok B as an extension
    

    The RISC-V B bit manipulation extension was ratified only two months ago.
    But it is strictly equivalent to the union of the zba, zbb and zbs
    extensions which were defined almost 3 years earlier. Rather than require
    new assembler, we can just match the extension name manually and translate
    it into its constituent parts.

    • [DH] libavutil/riscv/asm.S