Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (84)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (12237)

  • 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
  • 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 a filter_line3 method for optimisation

    4 juillet 2023, par John Cox
    avfilter/vf_bwdif : Add a filter_line3 method for optimisation
    

    Add an optional filter_line3 to the available optimisations.

    filter_line3 is equivalent to filter_line, memcpy, filter_line

    filter_line shares quite a number of loads and some calculations in
    common with its next iteration and testing shows that using aarch64
    neon filter_line3s performance is 30% better than two filter_lines
    and a memcpy.

    Adds a test for vf_bwdif filter_line3 to checkasm

    Rounds job start lines down to a multiple of 4. This means that if
    filter_line3 exists then filter_line will not sometimes be called
    once at the end of a slice depending on thread count. The final slice
    may do up to 3 extra lines but filter_edge is faster than filter_line
    so it is unlikely to create any noticable thread load variation.

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

    • [DH] libavfilter/bwdif.h
    • [DH] libavfilter/vf_bwdif.c
    • [DH] tests/checkasm/vf_bwdif.c