Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (46)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (6616)

  • avdevice/iec61883 : free the private context at the end

    18 avril 2018, par James Almer
    avdevice/iec61883 : free the private context at the end
    

    Fixes part of ticket #7146.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavdevice/iec61883.c
  • avfilter/vf_showpalette : Fix double-free of AVFilterFormats on error

    7 août 2020, par Andreas Rheinhardt
    avfilter/vf_showpalette : Fix double-free of AVFilterFormats on error
    

    The query_formats function of the showpalette filter tries to allocate
    two lists of formats which on success are attached to more permanent objects
    (AVFilterLinks) for storage afterwards. If attaching a list to an
    AVFilterLink succeeds, the link becomes one (in this case the only one)
    of the owners of the list. Yet if attaching the first list to its link
    succeeds and attaching the second list fails, both lists were manually
    freed, which means that the first link's pointer to the first list
    becomes dangling and there will be a double-free when the first link is
    cleaned up automatically.

    This commit fixes this by removing the custom free code ; this will
    temporarily add a leaking codepath (if attaching a list to a link fails,
    the list will leak), but this will be fixed shortly by making sure that
    an AVFilterFormats without owner will be automatically freed when
    attaching it to an AVFilterLink fails. Notice at most one list leaks
    because as of this commit a new list is only allocated after the old list
    has been successfully attached to a link.

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

    • [DH] libavfilter/vf_showpalette.c
  • dashdec : Only free url string if being reused

    21 janvier 2018, par Brendan McGrath
    dashdec : Only free url string if being reused
    

    If no representation bandwidth value is set, the url value returned
    by get_content_url is corrupt (as it has been freed).
    This change ensures the url string is not freed unless it is about
    to be reused
    Changes since v1 :
    1 removed the unneeded 'if' statement (as pointed out by Michael Niedermayer
    2 added comment to make it clear why the av_free was required
    Signed-off-by : Brendan McGrath <redmcg@redmandi.dyndns.org>

    • [DH] libavformat/dashdec.c