Recherche avancée

Médias (91)

Autres articles (60)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (9551)

  • avformat/rtsp : add av_assert0() to clarify that the else case is supposed to be unrea...

    23 octobre 2014, par Michael Niedermayer
    avformat/rtsp : add av_assert0() to clarify that the else case is supposed to be unreachable
    

    If its reachable then theres a bug as err would be uninitialized

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/rtsp.c
  • avutil/dict : Error out in case of key == NULL

    14 septembre 2022, par Andreas Rheinhardt
    avutil/dict : Error out in case of key == NULL
    

    Up until now, using NULL as key in av_dict_get() on a non-empty
    AVDictionary would crash ; using NULL as key in av_dict_set()
    would also crash for a non-empty AVDictionary unless AV_DICT_MULTIKEY
    was set ; in case the dictionary was initially empty or AV_DICT_MULTIKEY
    was set, it was even possible for av_dict_set() to succeed when
    adding a NULL key, namely when one uses a value != NULL and
    the AV_DICT_DONT_STRDUP_VAL flag. Using av_dict_get() on such
    an AVDictionary will usually lead to crashes, though.

    Fix this by actually checking for key in both functions ; error out
    if they are NULL.

    While just at it, also stop relying on av_strdup(NULL) to return NULL
    in av_dict_set().

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

    • [DH] libavutil/dict.c
    • [DH] libavutil/tests/dict.c
  • avcodec/av1dec : Fix leak in case of failure

    4 décembre 2020, par Andreas Rheinhardt
    avcodec/av1dec : Fix leak in case of failure
    

    A reference to an AV1RawFrameHeader and consequently the
    AV1RawFrameHeader itself and everything it has a reference to leak
    if the hardware has no AV1 decoding capabilities or if some other error
    happens. It happens e.g. in the cbs-av1-av1-1-b8-02-allintra FATE-test ;
    it has just been masked because the return value of ffmpeg (which
    indicates failure when using Valgrind or ASAN) is ignored when doing
    tests of type md5.

    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/av1dec.c