Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (81)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (7475)

  • avformat/segment : Fix leak of duration/framenumber lists upon error

    5 septembre 2020, par Andreas Rheinhardt
    avformat/segment : Fix leak of duration/framenumber lists upon error
    

    The code to free them is not in the segment muxer's deinit function,
    but in its write_trailer function which means that these lists leak if
    write_trailer isn't called after their allocation. This happens e.g. if
    the given lists are invalid (e.g. consisting only of ',' (which delimit
    entries)), so that parsing them fails and so does the muxer's init
    function ; write_trailer is then never called.

    This has been fixed by moving the code to free them to the deinit
    function.

    Reviewed-by : Ridley Combs <rcombs@rcombs.me>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/segment.c
  • avutil/hwcontext_d3d11va : Fix leak when wrapping texture in AVD3D11FrameDescriptor

    5 novembre 2017, par Greg Wessels
    avutil/hwcontext_d3d11va : Fix leak when wrapping texture in AVD3D11FrameDescriptor
    

    Reviewed-by : Aaron Levinson <alevinsn_dev@levland.net>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavutil/hwcontext_d3d11va.c
  • avcodec/avpacket : fix leak on realloc in av_packet_add_side_data()

    19 novembre 2016, par James Almer
    avcodec/avpacket : fix leak on realloc in av_packet_add_side_data()
    

    If realloc fails, the pointer is overwritten and the previously allocated
    buffer is leaked, which goes against the expected behavior of keeping the
    packet unchanged in case of error.

    Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/avpacket.c