Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (63)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

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

Sur d’autres sites (12171)

  • Revision a652048efd : Add vp9_ prefix to init_macroblockd Change-Id : I202d4924e627eec94838741df004ed9

    7 juillet 2015, par Jingning Han

    Changed Paths :
     Modify /vp9/common/vp9_onyxc_int.h


     Modify /vp9/decoder/vp9_decodeframe.c


     Modify /vp9/encoder/vp9_encoder.c



    Add vp9_ prefix to init_macroblockd

    Change-Id : I202d4924e627eec94838741df004ed9259d38b88

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