Recherche avancée

Médias (91)

Autres articles (29)

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

Sur d’autres sites (7228)

  • avcodec/decode : Fix leaks upon subtitle decoding errors

    10 décembre 2021, par Andreas Rheinhardt
    avcodec/decode : Fix leaks upon subtitle decoding errors
    

    Up until now, various subtitle decoders have not cleaned up
    the AVSubtitle on error ; this task must not be left to the user
    because the documentation explicitly states that the AVSubtitle
    "must be freed with avsubtitle_free if *got_sub_ptr is set"
    (which it isn't on error).
    Leaks happen upon failure in ff_ass_add_rect() or in
    ass_decode_frame() ; freeing generically also allows to remove
    now redundant freeing code in pgssubdec and dvbsubdec.
    While just at it, also reset got_sub_ptr generically on error.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/decode.c
    • [DH] libavcodec/dvbsubdec.c
    • [DH] libavcodec/pgssubdec.c
  • avformat/tee : Fix leaks in tee muxer when open_slave fails

    20 avril 2016, par Jan Sebechlebsky
    avformat/tee : Fix leaks in tee muxer when open_slave fails
    

    In open_slave failure can happen before bsfs array is initialized,
    close_slave must check that bsfs is not NULL before accessing
    tee_slave->bsfs[i] element.

    Slave muxer expects write_trailer to be called if it’s
    write_header suceeded (so resources allocated in write_header
    are freed). Therefore if failure happens after successfull
    write_header call, we must ensure that write_trailer of
    that particular slave is called.

    Some cleanups are made by Marton Balint.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Jan Sebechlebsky <sebechlebskyjan@gmail.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/tee.c
  • avformat/rtspdec : fix mem leaks in listen mode if init fails

    12 octobre 2020, par Andriy Gelman
    avformat/rtspdec : fix mem leaks in listen mode if init fails
    

    Reviewed-by : Martin Storsjö <martin@martin.st>
    Signed-off-by : Andriy Gelman <andriy.gelman@gmail.com>

    • [DH] libavformat/rtspdec.c