Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (67)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (6848)

  • avformat/tests/fifo_muxer : Fix memleak on error, fix API violation

    19 mars 2021, par Andreas Rheinhardt
    avformat/tests/fifo_muxer : Fix memleak on error, fix API violation
    

    The test program for the FIFO muxer allocates a buffer without padding
    and wraps it into a packet via av_packet_from_data(). This is an API
    violation. Furthermore, said buffer leaks in case av_packet_from_data()
    fails. Fix both of these issues by using av_new_packet() instead.

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

    • [DH] libavformat/tests/fifo_muxer.c
  • avfilter/af_afir : Fix leak of AVFilterChannelLayout in case of error

    7 août 2020, par Andreas Rheinhardt
    avfilter/af_afir : Fix leak of AVFilterChannelLayout in case of error
    

    If an error happens between the allocation of an AVFilterChannelLayout
    and its usage (which involves attaching said object to a more permanent
    object), the channel layout array leaks. This can simply be fixed by
    making sure that nothing is between the allocation and the
    aforementioned usage.

    Fixes Coverity issue #1250334.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/af_afir.c
  • av_dict_set : fix potential memory leak with AV_DICT_DONT_OVERWRITE

    8 juin 2014, par Janne Grunau
    av_dict_set : fix potential memory leak with AV_DICT_DONT_OVERWRITE
    

    av_dict_set leaks it key/value arguments if AV_DICT_DONT_OVERWRITE is
    combined with AV_DICT_DONT_STRDUP_KEY,VAL and the key exists.

    • [DBH] libavutil/dict.c