Recherche avancée

Médias (91)

Autres articles (64)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (9879)

  • vp8 : change mv_{min,max}.{x,y} type to int

    8 juin 2015, par Andreas Cadhalpun
    vp8 : change mv_min,max.x,y type to int
    

    If one of the dimensions is larger than 8176, s->mb_width or
    s->mb_height is larger than 511, leading to an int16_t overflow of
    s->mv_max.x,y. This then causes av_clip to be called with amin > amax.

    Changing the type to int avoids the overflow and has no negative
    effect, because s->mv_max is only used in clamp_mv for clipping.
    Since mv_max.x,y is positive and mv_min.x,y negative, av_clip can’t
    increase the absolute value. The input to av_clip is an int16_t, and
    thus the output fits into int16_t as well.

    For additional safety, s->mv_min,max.x,y are clipped to int16_t range
    before use.

    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] libavcodec/vp8.c
    • [DH] libavcodec/vp8.h
  • Revision 35fadf1d25 : bilinearpredict_neon : fix type conversion warnings make bifilter4_coeff[][] uin

    11 juillet 2014, par James Zern

    Changed Paths :
     Modify /vp8/common/arm/neon/bilinearpredict_neon.c



    bilinearpredict_neon : fix type conversion warnings

    make bifilter4_coeff[][] uint8_t, no values exceed this range and
    they’re loaded with vdup_n_u8().

    Change-Id : I921983e9edd828d29820e40ac30a7801dbe0fb4f

  • avfilter/buffersrc : make channel_layout a CHLAYOUT type AVOption

    2 janvier, par James Almer
    avfilter/buffersrc : make channel_layout a CHLAYOUT type AVOption
    

    The string type is a remnant of the old channel layout API implementation.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavfilter/buffersrc.c