Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (108)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10388)

  • avformat/avisynth : remove mutex lock from avisynth_read_close

    16 juillet 2024, par Stephen Hutchinson
    avformat/avisynth : remove mutex lock from avisynth_read_close
    

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

    • [DH] libavformat/avisynth.c
  • riscv : probe for Zbb extension at load time

    8 juin 2024, par Rémi Denis-Courmont
    riscv : probe for Zbb extension at load time
    

    Due to hysterical raisins, most RISC-V Linux distributions target a
    RV64GC baseline excluding the Bit-manipulation ISA extensions, most
    notably :
    - Zba : address generation extension and
    - Zbb : basic bit manipulation extension.
    Most CPUs that would make sense to run FFmpeg on support Zba and Zbb
    (including the current FATE runner), so it makes sense to optimise for
    them. In fact a large chunk of existing assembler optimisations relies
    on Zba and/or Zbb.

    Since we cannot patch shared library code, the next best thing is to
    carry a flag initialised at load-time and check it on need basis.
    This results in 3 instructions overhead on isolated use, e.g. :
    1 : AUIPC rd, %pcrel_hi(ff_rv_zbb_supported)
    LBU rd, %pcrel_lo(1b)(rd)
    BEQZ rd, non_Zbb_fallback_code
    // Zbb code here

    The C compiler will typically load the flag ahead of time to reducing
    latency, and can also keep it around if Zbb is used multiple times in a
    single optimisation scope. For this to work, the flag symbol must be
    hidden ; otherwise the optimisation degrades with a GOT look-up to
    support interposition :
    1 : AUIPC rd, GOT_OFFSET_HI
    LD rd, GOT_OFFSET_LO(rd)
    LBU rd, (rd)
    BEQZ rd, non_Zbb_fallback_code
    // Zbb code here

    This patch adds code to provision the flag in libraries using bit
    manipulation functions from libavutil : byte-swap, bit-weight and
    counting leading or trailing zeroes.

    • [DH] libavcodec/riscv/Makefile
    • [DH] libavcodec/riscv/cpu_common.c
    • [DH] libavdevice/riscv/Makefile
    • [DH] libavdevice/riscv/cpu_common.c
    • [DH] libavfilter/riscv/Makefile
    • [DH] libavfilter/riscv/cpu_common.c
    • [DH] libavformat/riscv/Makefile
    • [DH] libavformat/riscv/cpu_common.c
    • [DH] libavutil/riscv/Makefile
    • [DH] libavutil/riscv/cpu.h
    • [DH] libavutil/riscv/cpu_common.c
    • [DH] libswscale/riscv/Makefile
    • [DH] libswscale/riscv/cpu_common.c
    • [DH] tests/ref/fate/source
  • lavc/flacdsp : fix sign extension in R-V V wasted33

    6 juin 2024, par Rémi Denis-Courmont
    lavc/flacdsp : fix sign extension in R-V V wasted33
    

    We need to use either VWCVT.X.X.V or VSEXT.VF2. The later is preferable
    to avoid changing VTYPE.

    • [DH] libavcodec/riscv/flacdsp_rvv.S