Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (101)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (9780)

  • lavc/libkvazaar : fix incompatible pointer type.

    20 août 2018, par Jun Zhao
    lavc/libkvazaar : fix incompatible pointer type.
    

    fix the waring : libavcodec/libkvazaar.c:210:27 : warning : passing argument 3 of ‘av_image_copy’ from incompatible pointer type [-Wincompatible-pointer-types]
    frame->data, frame->linesize,

    In file included from libavcodec/libkvazaar.c:31:0 :
    ./libavutil/imgutils.h:119:6 : note : expected ‘const uint8_t ** aka const unsigned char **’ but argument is of type ‘uint8_t * const* aka unsigned char * const*
    void av_image_copy(uint8_t *dst_data[4], int dst_linesizes[4],

    Signed-off-by : Jun Zhao <mypopydev@gmail.com>

    • [DH] libavcodec/libkvazaar.c
  • avfilter/af_aphaser : Change type to int as its accessed as int via AVOptions

    2 février 2015, par Michael Niedermayer
    avfilter/af_aphaser : Change type to int as its accessed as int via AVOptions
    

    This fixes depending on implementation defined behavior

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

    • [DH] libavfilter/af_aphaser.c
  • swscale/vscale : Increase type strictness

    26 avril 2020, par Andreas Rheinhardt
    swscale/vscale : Increase type strictness
    

    libswscale/vscale.c makes extensive use of function pointers and in
    doing so it converts these function pointers to and from a pointer to
    void. Yet this is actually against the C standard :
    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 using a union that can hold one member of any
    of the required function pointer types to store the function pointer.
    This works even for C90.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libswscale/vscale.c