Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (59)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

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

Sur d’autres sites (11856)

  • Merge commit '2170017a1cd033b6f28e16476921022712a522d8'

    13 avril 2017, par James Almer
    Merge commit '2170017a1cd033b6f28e16476921022712a522d8'
    

    * commit '2170017a1cd033b6f28e16476921022712a522d8' :
    avutil : fix data race in av_get_cpu_flags()

    This commit is a noop, see fed50c4304eecb352e29ce789cdb96ea84d6162f

    Merged-by : James Almer <jamrial@gmail.com>

    • [DH] libavutil/Makefile
  • h264 : don’t re-call ff_h264_direct_ref_list_init() w/ frame-mt.

    6 avril 2017, par Ronald S. Bultje
    h264 : don’t re-call ff_h264_direct_ref_list_init() w/ frame-mt.
    

    I’m hoping that this will address the remaining tsan fate-h264 issues :

    WARNING : ThreadSanitizer : data race (pid=24478)
    Read of size 8 at 0x7dbc0001c828 by main thread (mutexes : write M3243) :
    #0 ff_h264_ref_picture src/libavcodec/h264_picture.c:107 (ffmpeg+0x0000013b78d8)
    [..]
    Previous write of size 1 at 0x7dbc0001c82e by thread T2 (mutexes : write M3245) :
    #0 ff_h264_direct_ref_list_init src/libavcodec/h264_direct.c:137 (ffmpeg+0x000001382c93)

    But I’m not sure because I haven’t been able to reproduce locally.

    • [DH] libavcodec/h264_slice.c
  • pthread_frame : make accesses to debug field be protected by owner lock.

    6 avril 2017, par Ronald S. Bultje
    pthread_frame : make accesses to debug field be protected by owner lock.
    

    The av_log() is done outside the lock, but this way the accesses to the
    field (reads and writes) are always protected by a mutex. The av_log()
    is not run inside the lock context because it may involve user callbacks
    and doing that in performance-sensitive code is probably not a good idea.

    This should fix occasional tsan warnings when running fate-h264, like :

    WARNING : ThreadSanitizer : data race (pid=10916)
    Write of size 4 at 0x7d64000174fc by main thread (mutexes : write M2313) :
    #0 update_context_from_user src/libavcodec/pthread_frame.c:335 (ffmpeg+0x000000df7b06)
    [..]
    Previous read of size 4 at 0x7d64000174fc by thread T1 (mutexes : write M2311) :
    #0 ff_thread_await_progress src/libavcodec/pthread_frame.c:592 (ffmpeg+0x000000df8b3e)

    • [DH] libavcodec/pthread_frame.c