Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (55)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8874)

  • avcodec/movtextdec : Switch to smaller type

    8 décembre 2021, par Andreas Rheinhardt
    avcodec/movtextdec : Switch to smaller type
    

    The base size of a box refers to the size the box has in a file,
    not in memory ; so size_t is not their natural type. Therefore use
    a plain unsigned which is smaller on 64bit systems and still big
    enough to represent any conceivable base size.

    Reviewed-by : Philip Langdale <philipl@overt.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/movtextdec.c
  • configure : Set the thread type after resolving dependencies

    23 décembre 2013, par Diego Biurrun
    configure : Set the thread type after resolving dependencies
    

    A threading type might be detected originally, but later disabled
    if one of its dependencies is unavailable.

    This makes sure that the threading support item in the configure
    output is right for setups where w32threads are available but
    native atomics aren’t.

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

    • [DBH] configure
  • avcodec/dvdsub : Fix warning about incompatible pointer type

    14 février 2020, par Andreas Rheinhardt
    avcodec/dvdsub : Fix warning about incompatible pointer type
    

    Fixes "passing argument 2 of ‘strtoul’ from incompatible pointer
    type [-Wincompatible-pointer-types]" ("expected ‘char ** restrict’ but
    argument is of type ‘const char **’") for GCC and "passing 'const char
    **' to parameter of type 'char **' discards qualifiers in nested pointer
    types [-Wincompatible-pointer-types-discards-qualifiers]" for Clang.

    The cast itself is safe ; it is only needed because strtoul itself is not
    const-correct.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/dvdsub.c