Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (112)

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

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (18095)

  • avfilter/vf_vpp_qsv : Fix leak of AVFilterFormats on error

    7 août 2020, par Andreas Rheinhardt
    avfilter/vf_vpp_qsv : Fix leak of AVFilterFormats on error
    

    The vpp_qsv's query_formats function allocated two AVFilterFormats,
    before storing them permanently. If storing the first of them fails,
    the function simply returns and the second leaks. This has been fixed by
    only allocating the second AVFilterFormats structure after the first one
    has been successfully stored.

    Fixes Coverity issue #1422231.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/vf_vpp_qsv.c
  • avutil/dict : Fix memleak when using AV_DICT_APPEND

    13 septembre 2022, par Andreas Rheinhardt
    avutil/dict : Fix memleak when using AV_DICT_APPEND
    

    If a key already exists in an AVDictionary and the AV_DICT_APPEND flag
    is set, the old entry is at first discarded from the dictionary, but
    a pointer to the value is kept. Lateron enough memory to store the
    appended string is allocated ; should this allocation fail, the old string
    is not freed and hence leaks. This commit changes this by moving
    creating the combined value to an earlier point in the function,
    which also ensures that the AVDictionary is unchanged in case of errors.

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

    • [DH] libavutil/dict.c
  • vp9_raw_reorder_bsf : Remove a redundant allocation

    26 avril 2017, par Mark Thompson
    vp9_raw_reorder_bsf : Remove a redundant allocation
    

    This was left over from an earlier version which created the new
    packet inside the current frame structure. Now it just leaks an
    unused packet, so remove the allocation entirely.

    • [DBH] libavcodec/vp9_raw_reorder_bsf.c