Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (35)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

Sur d’autres sites (6792)

  • tiff : fix overflows when calling av_reduce

    13 décembre 2016, par Andreas Cadhalpun
    tiff : fix overflows when calling av_reduce
    

    The arguments of av_reduce are signed, so the cast to uint64_t is misleading.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] libavcodec/tiff.c
  • flac/encode.c : Fix an integer overflow

    14 février 2017, par Erik de Castro Lopo
    flac/encode.c : Fix an integer overflow
    

    When encoding a 24 bit multichannel W64 file on a 32 bit system, a
    calculation could overflow resulting in a "got partial sample"
    error and early termination of the encoding process.

    The fix was to replace the cast to `size_t` (which is only 32 bits
    on a 32 bit system) with a cast to `uin64_t`.

    Thanks to Janne Hyvärinen for helping to track down the problem.

    Closes : https://sourceforge.net/p/flac/bugs/453

    • [DH] src/flac/encode.c
  • avcodec/bmp : Fix runtime error : negation of -2147483648 cannot be represented in...

    21 février 2017, par Michael Niedermayer
    avcodec/bmp : Fix runtime error : negation of -2147483648 cannot be represented in type ’int’ ; cast to an unsigned type to negate this value to itself
    

    There is code checking height and width later, leaving an invalid value invalid
    is thus fine.

    Fixes : 635/clusterfuzz-testcase-6225161437052928
    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/bmp.c