Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (100)

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

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (12366)

  • avfilter/af_afir : Fix leak of AVFilterChannelLayout in case of error

    7 août 2020, par Andreas Rheinhardt
    avfilter/af_afir : Fix leak of AVFilterChannelLayout in case of error
    

    If an error happens between the allocation of an AVFilterChannelLayout
    and its usage (which involves attaching said object to a more permanent
    object), the channel layout array leaks. This can simply be fixed by
    making sure that nothing is between the allocation and the
    aforementioned usage.

    Fixes Coverity issue #1250334.

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

    • [DH] libavfilter/af_afir.c
  • av_dict_set : fix potential memory leak with AV_DICT_DONT_OVERWRITE

    8 juin 2014, par Janne Grunau
    av_dict_set : fix potential memory leak with AV_DICT_DONT_OVERWRITE
    

    av_dict_set leaks it key/value arguments if AV_DICT_DONT_OVERWRITE is
    combined with AV_DICT_DONT_STRDUP_KEY,VAL and the key exists.

    • [DBH] libavutil/dict.c
  • avcodec/wavpack : Fix leak and segfault on reallocation error

    24 mars 2024, par Andreas Rheinhardt
    avcodec/wavpack : Fix leak and segfault on reallocation error
    

    av_realloc_f() frees the buffer it is given on allocation
    failure. But in this case, the buffer is an array of
    ownership pointers, causing leaks on error. Furthermore,
    the count of pointers is unchanged on error and the codec's
    close function uses it to free said ownership pointers,
    causing a NPD.
    This is a regression since 46412a8935e4632b2460988bfce4152c7dccce22.

    Fix this by switching to av_realloc_array().

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

    • [DH] libavcodec/wavpack.c