Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (58)

  • 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

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

  • avcodec/lsp : Move ff_lsp2polyf() upwards in lsp.c

    25 septembre 2022, par Andreas Rheinhardt
    avcodec/lsp : Move ff_lsp2polyf() upwards in lsp.c
    

    Will avoid a forward declaration lateron.
    Also adapt the function to modern style while at it.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/lsp.c
  • avcodec/vp3 : Don't try to decode VP4 when VP4 decoder is disabled

    8 mai 2021, par Andreas Rheinhardt
    avcodec/vp3 : Don't try to decode VP4 when VP4 decoder is disabled
    

    Otherwise decoding will crash lateron ; e.g. because dct_tokens
    is never set or because a VLC that has not been allocated is used.

    Reviewed-by : Peter Ross <pross@xvid.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/vp3.c
  • avcodec/cbs : Use put_bits63()

    18 avril, par Andreas Rheinhardt
    avcodec/cbs : Use put_bits63()
    

    It is better when BUF_BITS == 64 (i.e. on x64), because
    the underlying put_bits can then handle 0..63 bits naturally.
    It does not worsen the code when BUF_BITS != 64, because
    the compiler can optimize this to the same code as now
    (due to the assert).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/cbs.c