Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (77)

  • 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 (15115)

  • swscale/input : Avoid calls to av_pix_fmt_desc_get()

    8 septembre 2022, par Andreas Rheinhardt
    swscale/input : Avoid calls to av_pix_fmt_desc_get()
    

    Up until now, libswscale/input.c used a macro to read
    an input pixel which involved a call to av_pix_fmt_desc_get()
    to find out whether the input pixel format is BE or LE
    despite this being known at compile-time (there are templates
    per pixfmt). Even worse, these calls are made in a loop,
    so that e.g. there are six calls to av_pix_fmt_desc_get()
    for every pair of UV pixel processed in
    rgb64ToUV_half_c_template().

    This commit modifies these macros to ensure that isBE()
    is evaluated at compile-time. This saved 9743B of .text
    for me (GCC 11.2, -O3). For a simple RGB64LE->YUV420P
    transformation like
    ffmpeg -f lavfi -i haldclutsrc,format=rgba64le -pix_fmt yuv420p \
    - threads 1 -t 1:00 -f null -
    the amount of decicycles spent in rgb64LEToUV_half_c
    (which is created via the template mentioned above)
    decreases from 19751 to 5341 ; for RGBA64BE the number
    went down from 11945 to 5393. For shared builds (where
    the call to av_pix_fmt_desc_get() is indirect) the old numbers
    are 15230 for RGBA64BE and 27502 for RGBA64LE, whereas
    the numbers with this patch are indistinguishable from
    the numbers from a static build.

    Also make the macros that are touched conform to the
    usual convention of using uppercase names while just at it.

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libswscale/input.c
  • avfilter/vf_bwdif : Add neon for filter_line

    4 juillet 2023, par John Cox
    avfilter/vf_bwdif : Add neon for filter_line
    

    Exports C filter_line needed for tail fixup of neon code
    Adds neon for filter_line

    Signed-off-by : John Cox <jc@kynesim.co.uk>
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavfilter/aarch64/vf_bwdif_init_aarch64.c
    • [DH] libavfilter/aarch64/vf_bwdif_neon.S
    • [DH] libavfilter/bwdif.h
    • [DH] libavfilter/vf_bwdif.c
  • avfilter/vf_bwdif : Add neon for filter_edge

    4 juillet 2023, par John Cox
    avfilter/vf_bwdif : Add neon for filter_edge
    

    Adds clip and spatial macros for aarch64 neon
    Exports C filter_edge needed for tail fixup of neon code
    Adds neon for filter_edge

    Signed-off-by : John Cox <jc@kynesim.co.uk>
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavfilter/aarch64/vf_bwdif_init_aarch64.c
    • [DH] libavfilter/aarch64/vf_bwdif_neon.S
    • [DH] libavfilter/bwdif.h
    • [DH] libavfilter/vf_bwdif.c