Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (44)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (7480)

  • avformat/iamf : Don't mix ownership and non-ownership pointers

    19 février 2024, par Andreas Rheinhardt
    avformat/iamf : Don't mix ownership and non-ownership pointers
    

    IAMFAudioElement and IAMFMixPresentation currently contain
    pointers to independently allocated objects that are sometimes
    owned by said structures and sometimes not.

    More precisely, upon success the demuxer transfers ownership
    of these other objects newly created AVStreamGroups, but it
    keeps its pointers. iamf_read_close() therefore always resets
    these pointers (because the cleanup code always treats them
    as ownership pointers). This leads to memory leaks in case
    iamf_read_header() without having attached all of these
    objects to stream groups.

    The muxer has a similar issue : It also clears these pointers
    (pointing to objects owned by stream groups created by the user)
    in its deinit function.

    This commit fixes this memleak by explicitly adding non-ownership
    pointers ; this also allows to remove the code to reset the
    ownership pointers.

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

    • [DH] libavformat/iamf.h
    • [DH] libavformat/iamf_parse.c
    • [DH] libavformat/iamf_writer.c
    • [DH] libavformat/iamfdec.c
    • [DH] libavformat/iamfenc.c
  • fftools/textformat : Apply quality improvements

    29 avril, par softworkz
    fftools/textformat : Apply quality improvements
    

    Perform multiple improvements to increase code robustness.
    In particular :
    - favor unsigned counters for loops
    - add missing checks
    - avoid possible leaks
    - move variable declarations to inner scopes when feasible
    - provide explicit type-casting when needed

    Signed-off-by : softworkz <softworkz@hotmail.com>

    • [DH] fftools/textformat/avtextformat.c
    • [DH] fftools/textformat/avtextformat.h
    • [DH] fftools/textformat/tf_default.c
    • [DH] fftools/textformat/tf_ini.c
    • [DH] fftools/textformat/tf_json.c
    • [DH] fftools/textformat/tf_xml.c
    • [DH] fftools/textformat/tw_avio.c
  • avcodec/vulkan_decode : Factor creating session params out, fix leak

    14 septembre 2023, par Andreas Rheinhardt
    avcodec/vulkan_decode : Factor creating session params out, fix leak
    

    All Vulkan HWAccels share the same boilerplate code for creating
    session params and this includes a common bug : In case actually
    creating the video session parameters fails, the buffer destined
    to hold them leaks ; in case of HEVC this is also true if
    get_data_set_buf() fails.

    This commit factors this code out and fixes the leak.

    Reviewed-by : Lynne <dev@lynne.ee>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/vulkan_av1.c
    • [DH] libavcodec/vulkan_decode.c
    • [DH] libavcodec/vulkan_decode.h
    • [DH] libavcodec/vulkan_h264.c
    • [DH] libavcodec/vulkan_hevc.c