Recherche avancée

Médias (91)

Autres articles (78)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (7615)

  • libavutil : Add av_clip_intp2

    20 février 2015, par Peter Meerwald
    libavutil : Add av_clip_intp2
    

    there already is a function, av_clip_uintp2() that clips a signed integer
    to an unsigned power-of-two range, i.e. 0,2^p-1

    this patch adds a function av_clip_intp2() that clips a signed integer
    to a signed power-of-two range, i.e. -(2^p),(2^p-1)

    the new function can be used as a special case for av_clip(), e.g.
    av_clip(x, -8192, 8191) can be rewritten as av_clip_intp2(x, 13)

    there are ARM instructions, usat and ssat resp., which map nicely to these
    functions (see next patch)

    Signed-off-by : Peter Meerwald <pmeerw@pmeerw.net>
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavutil/common.h
  • aarch64 : relax byte-swap assembler constraints

    3 septembre 2022, par Rémi Denis-Courmont
    aarch64 : relax byte-swap assembler constraints
    

    There are no particular reasons to force the compiler to use the same
    register as output and input operand. This forces an extra MOV
    instruction if the input value needs to be reused after the swap.

    In most cases, this makes no differences, as the compiler will seleect
    the same register for both operands either way.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavutil/aarch64/bswap.h
  • sparc : VIS mnemonics

    16 mai 2013, par Michael Kostylev
    sparc : VIS mnemonics
    

    Currently, if VIS is enabled by configure, it will also be enabled at
    run-time regardless of its support in the hardware. Thus, masking VIS
    usage as it is done in vis.h by constructing binary instructions is
    pointless. Using normal VIS mnemonics in inline assembly allows to take
    advantage of automatic register allocation, gets rid of register
    variables, which are unsupported by suncc for SPARC, and improves code
    readability.

    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DBH] libavcodec/sparc/vis.h