Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (58)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (7715)

  • avfilter/vf_libplacebo : suppress cast warning

    30 janvier 2023, par Niklas Haas
    avfilter/vf_libplacebo : suppress cast warning
    

    This warning was introduced when ee65039 removed the cast.

    • [DH] libavfilter/vf_libplacebo.c
  • avutil/opt : Don't cast when the result might be misaligned

    25 mars 2024, par Andreas Rheinhardt
    avutil/opt : Don't cast when the result might be misaligned
    

    A pointer conversion is UB if the resulting pointer is not
    correctly aligned for the resultant type, even if no
    load/store is ever performed through that pointer (C11 6.3.2.3 (7)).

    This may happen in opt_copy_elem(), because the pointers are
    converted even when they belong to a type that does not guarantee
    sufficient alignment.

    Fix this by deferring the cast after having checked the type.
    Also make the casts -Wcast-qual safe and avoid an indirection
    for src.

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

    • [DH] libavutil/opt.c
  • avcodec/aac/aacdec_usac : remove unnecessary cast

    2 juin 2024, par James Almer
    avcodec/aac/aacdec_usac : remove unnecessary cast
    

    Fixes "libavcodec/aac/aacdec_usac.c(543) : error C2440 : 'type cast' : cannot convert from 'GetBitContext' to 'GetBitContext'"
    from msvc.

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

    • [DH] libavcodec/aac/aacdec_usac.c