Recherche avancée

Médias (1)

Mot : - Tags -/géodiversité

Autres articles (85)

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

  • Les sons

    15 mai 2013, par
  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

Sur d’autres sites (6051)

  • avformat/rtpdec_rfc4175 : fix interlace format

    3 février 2022, par Patrick Keroulas
    avformat/rtpdec_rfc4175 : fix interlace format
    

    In previous state, a new frame was allocated on each timestamp step,
    i.e. each frame/field transition. However, for interlace, a new frame
    should be allocated on 1st field, completed with the 2nd and finally
    freed.

    This commit fixes the frame allocation and the detection of missing RTP
    markers.

    Signed-off-by : Patrick Keroulas <patrick.keroulas@radio-canada.ca>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavformat/rtpdec_rfc4175.c
  • tests : Fix bash errors in lavf_container tests.

    28 août 2019, par Andrey Semashev
    tests : Fix bash errors in lavf_container tests.
    

    Because the lavf_container is sometimes called with only 2 arguments,
    fate tests produce bash errors like this :

    tests/fate-run.sh : 299 : test : = : unexpected operator

    This commit fixes this.

    Reviewed-by : Limin Wang <lance.lmwang@gmail.com>
    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tests/fate-run.sh
  • avcodec/iirfilter : Fix memleak

    15 juin 2020, par Andreas Rheinhardt
    avcodec/iirfilter : Fix memleak
    

    Commit 17e88bf0df21906633a7d36d9f2aeeeb5b6d3267 created a memleak by
    removing a call to ff_iir_filter_free_coeffsp on error ; this has been
    found by Coverity (ID 1464159). This commit fixes the memleak by
    readding the call to ff_iir_filter_free_coeffsp.

    Notice that this is not a simple revert, because several macros that
    were used before 17e88bf0df21906633a7d36d9f2aeeeb5b6d3267 were replaced
    in commit 44863b2c2d5a31d82aafa71cdbd180d6bfbed5b4 and completely removed
    in 2658680df4fc606522e5f65899afb9a98b47d287.

    Reviewed-by : Limin Wang <lance.lmwang@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/iirfilter.c