Recherche avancée

Médias (91)

Autres articles (38)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

Sur d’autres sites (5782)

  • Revision 17cfee3cb5 : fastssim : Add stdlib.h for malloc/free Change-Id : I4d734febc14c534dba20b67cf6bd

    6 août 2015, par Alex Converse

    Changed Paths :
     Modify /vpx_dsp/fastssim.c



    fastssim : Add stdlib.h for malloc/free

    Change-Id : I4d734febc14c534dba20b67cf6bd628996cc9ab7

  • libavformat/flvdec.c : free always the packet after a resync.

    28 septembre 2015, par Thierry Foucu
    libavformat/flvdec.c : free always the packet after a resync.
    

    In case of resync, always free the packet, but retry only if the resync
    did not get to the end of the file. Otherwise, there is a memory leak when the
    last packet in the file is corrupted.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/flvdec.c
  • avfilter/vf_paletteuse : Fix potential double-free of AVFrame

    27 janvier 2020, par Andreas Rheinhardt
    avfilter/vf_paletteuse : Fix potential double-free of AVFrame
    

    apply_palette() would free an AVFrame given to it only via an AVFrame *
    (and not via AVFrame **) in three of its four exists (namely in the
    normal path and in two error paths). So upon error the caller has no way
    to know whether the frame has already been freed or not ;
    load_apply_palette(), the only caller, opted to free the frame in this
    scenario.

    This commit changes this by making apply_palette not freeing the frame
    at all, which is left to load_apply_palette().

    Fixes Coverity issue #1452434.

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

    • [DH] libavfilter/vf_paletteuse.c