Recherche avancée

Médias (91)

Autres articles (57)

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

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (7029)

  • avformat/matroskaenc : Fix memleak upon failure

    16 octobre 2019, par Andreas Rheinhardt
    avformat/matroskaenc : Fix memleak upon failure
    

    The Matroska muxer up until now leaked memory in two scenarios :

    1. If an error happened during writing the trailer, as
    mkv_write_trailer() returned early without cleaning up.
    2. If mkv_write_header() indicated success despite an error in the
    underlying AVIOContext. In this case avformat_write_header() returned
    the IO error and according to the API the caller is not allowed to call
    av_write_trailer(), so that no cleanup happened for the allocations made
    in mkv_write_header().

    This has been fixed by using a dedicated deinit function.

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

    • [DH] libavformat/matroskaenc.c
  • libfdk-aacdec : Clean up properly if the init fails

    14 août 2015, par Martin Storsjö
    libfdk-aacdec : Clean up properly if the init fails
    

    Previously most of the error paths leaked.

    Also add FF_CODEC_CAP_INIT_THREADSAFE while adding caps_internal ;
    this decoder wrapper doesn’t have any static data that is initialized.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavcodec/libfdk-aacdec.c
  • avformat/utils : Fix memleaks

    24 septembre 2019, par Andreas Rheinhardt
    avformat/utils : Fix memleaks
    

    ff_read_packet had potential memleaks :
    1. If av_packet_make_refcounted fails, it means that the packet is not
    refcounted, but it could nevertheless carry side data and therefore
    needs to be unreferenced.
    2. If putting a packet on a packet list fails, it wasn't unreferenced.

    Furthermore, read_frame_internal leaked a packet's (side) data if a
    context update was required and failed.

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

    • [DH] libavformat/utils.c