Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (25)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (7577)

  • x86inc : AVX-512 support

    25 mars 2017, par Henrik Gramner
    x86inc : AVX-512 support
    

    AVX-512 consists of a plethora of different extensions, but in order to keep
    things a bit more manageable we group together the following extensions
    under a single baseline cpu flag which should cover SKL-X and future CPUs :
    * AVX-512 Foundation (F)
    * AVX-512 Conflict Detection Instructions (CD)
    * AVX-512 Byte and Word Instructions (BW)
    * AVX-512 Doubleword and Quadword Instructions (DQ)
    * AVX-512 Vector Length Extensions (VL)

    On x86-64 AVX-512 provides 16 additional vector registers, prefer using
    those over existing ones since it allows us to avoid using `vzeroupper`
    unless more than 16 vector registers are required. They also happen to
    be volatile on Windows which means that we don't need to save and restore
    existing xmm register contents unless more than 22 vector registers are
    required.

    Big thanks to Intel for their support.

    • [DH] libavutil/x86/x86inc.asm
  • avcodec/mips : Improve hevc uni weighted vert mc msa functions

    11 octobre 2017, par Kaustubh Raste
    avcodec/mips : Improve hevc uni weighted vert mc msa functions
    

    Pack the data to half word before clipping.
    Use immediate unsigned saturation for clip to max saving one vector register.

    Signed-off-by : Kaustubh Raste <kaustubh.raste@imgtec.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mips/hevc_mc_uniw_msa.c
  • avcodec/dca_parser : improve frame end search

    13 mai 2016, par foo86
    avcodec/dca_parser : improve frame end search
    

    Parse core frame size directly when searching for frame end instead of
    using value extracted from previous frame.

    Account for unused bits when calculating sync word distance for 14-bit
    streams to avoid alias sync detection.

    Parse EXSS frame size and skip over EXSS frame to avoid alias sync
    detection.

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

    • [DH] libavcodec/dca_parser.c