Recherche avancée

Médias (91)

Autres articles (104)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

  • 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 ;

Sur d’autres sites (13041)

  • avcodec/cinepak : Check slice_size before allocating image

    27 avril 2019, par Michael Niedermayer
    avcodec/cinepak : Check slice_size before allocating image
    

    Fixes : Timeout (16sec -> 125msec)
    Fixes : 14283/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CINEPAK_fuzzer-5742851457024000

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/cinepak.c
  • avcodec/jpeg2000 : Simplify exp2fi for numbers used here

    17 février 2024, par Andreas Rheinhardt
    avcodec/jpeg2000 : Simplify exp2fi for numbers used here
    

    The call to ff_exp2fi() here always uses arguments in the normal
    range, so that the branches in ff_exp2fi() are unnecessary.
    This is so because JPEG2000 itself only supports up to
    128 bits per component per pixel (we only support far less) ;
    furthermore, expn is always 0..31 for the decoder and also
    sane for the encoder, so that the difference between these
    two values is always in the normal range of -126..128.

    Reviewed-by : Tomas Härdin <git@haerdin.se>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/jpeg2000.c
  • avformat/mxfdec : Fix memleak when adding element to array fails

    20 juillet 2020, par Andreas Rheinhardt
    avformat/mxfdec : Fix memleak when adding element to array fails
    

    Said array contains pointers to other structs and both the designated
    new element as well as other stuff contained in it (e.g. strings) leak
    if the new element can't be added to the array.

    Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/mxfdec.c