Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (82)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

Sur d’autres sites (11772)

  • 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
  • avcodec/hevc_ps : do cleanup in case of unsupported bit depth

    20 août 2014, par Michael Niedermayer
    avcodec/hevc_ps : do cleanup in case of unsupported bit depth
    

    Fixes memleak
    Fixes CID1231989

    Reviewed-by : Timothy Gu <timothygu99@gmail.com>
    Reviewed-by : Mickaël Raulet <mraulet@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/hevc_ps.c