Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (107)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

Sur d’autres sites (5294)

  • avfilter/vf_signature : Avoid cast from function pointer to void*

    25 août 2020, par Andreas Rheinhardt
    avfilter/vf_signature : Avoid cast from function pointer to void*
    

    The signature filter uses qsort, but its compare function doesn't have
    the signature required of such a function ; therefore it casts the
    function pointer to void. Yet this is wrong :
    C90 only guarantees that one can convert a pointer to any incomplete
    type or object type to void* and back with the result comparing equal
    to the original which makes pointers to void generic pointers to
    incomplete or object type. Yet C90 lacks a generic function pointer
    type.
    C99 additionally guarantees that a pointer to a function of one type may
    be converted to a pointer to a function of another type with the result
    and the original comparing equal when converting back.
    This makes any function pointer type a generic function pointer type.
    Yet even this does not make pointers to void generic function pointers.

    Both GCC and Clang emit warnings for this when in pedantic mode.

    This commit fixes this by modifying the compare function to comply with
    the expected signature.

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

    • [DH] libavfilter/vf_signature.c
  • lavfi/movie : free packet on decoder error

    25 juin 2013, par Michael Niedermayer
    lavfi/movie : free packet on decoder error
    

    Prevents infinite loop, see Ticket2556

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/src_movie.c
  • lavu/hwcontext_d3d : Cast src pointers calling av_image_copy*().

    18 avril 2019, par Carl Eugen Hoyos
    lavu/hwcontext_d3d : Cast src pointers calling av_image_copy*().
    

    Silences several warnings :
    libavutil/hwcontext_d3d11va.c:413:49 : warning : passing argument 3 of ‘av_image_copy’ from incompatible pointer type
    libavutil/hwcontext_d3d11va.c:425:47 : warning : passing argument 3 of ‘av_image_copy’ from incompatible pointer type
    libavutil/hwcontext_dxva2.c:351:45 : warning : passing argument 3 of ‘av_image_copy’ from incompatible pointer type
    libavutil/hwcontext_dxva2.c:382:52 : warning : passing argument 3 of ‘av_image_copy_uc_from’ from incompatible pointer type

    • [DH] libavutil/hwcontext_d3d11va.c
    • [DH] libavutil/hwcontext_dxva2.c