Recherche avancée

Médias (91)

Autres articles (63)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (7815)

  • avcodec/pngdec : Do not pass AVFrame into global header decode

    16 avril 2023, par Michael Niedermayer
    avcodec/pngdec : Do not pass AVFrame into global header decode
    

    The global header should not contain a frame, and decoding it
    would result in leaks

    Fixes : memleak
    Fixes : 45982/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APNG_fuzzer-6603443149340672

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

    • [DH] libavcodec/pngdec.c
  • avcodec/wrapped_avframe : Don't leak frame metadata, side-data

    18 juillet 2022, par Andreas Rheinhardt
    avcodec/wrapped_avframe : Don't leak frame metadata, side-data
    

    wrapped_avframe_decode() uses an AVFrame as dst in av_frame_move_ref()
    after having called ff_decode_frame_props() to attach side-date
    to this very frame. This leaks all the side-data and metadata
    that ff_decode_frame_props() has attached.

    This happens in various fate-filter-metadata tests since
    6ca43a9675d651d7ea47c7ba2fafb1bf831c4d0b.

    These particular leaks (which affect metadata-only)
    could be fixed by not adding metadata side-data to AVPackets
    in libavdevice if they are also available from the AVFrames.
    Yet this would break users that extract the metadata from
    AVPackets.

    The changes to FATE happen because of the way av_dict_set()
    works when it overwrites an already existing entry :
    It overwrites the entry to be overwritten with the last entry
    and adds the new entry at the end. The end result is that
    the first entry of the dict is the second-to-last-entry of
    the original dict, the last entry of the dict is the last
    entry of the old dict and the first count - 2 entries
    of the original dict are at positions 1..count - 2 in their
    original order.

    Reviewed-by : Timo Rothenpieler <timo@rothenpieler.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/wrapped_avframe.c
    • [DH] tests/ref/fate/filter-metadata-cropdetect
    • [DH] tests/ref/fate/filter-metadata-freezedetect
    • [DH] tests/ref/fate/filter-metadata-scdet
    • [DH] tests/ref/fate/filter-metadata-signalstats-yuv420p
    • [DH] tests/ref/fate/filter-metadata-signalstats-yuv420p10
  • avfilter/af_amix : Don't needlessly reallocate table

    7 août 2020, par Andreas Rheinhardt
    avfilter/af_amix : Don't needlessly reallocate table
    

    Replace using ff_add_format() repeatedly by a single call to
    ff_make_format_list(). (Right now this also fixes a memleak : If the
    first ff_add_format() succeeds and a subsequent call fails, the list
    leaks.)

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/af_amix.c