Recherche avancée

Médias (91)

Autres articles (59)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (7248)

  • avformat/mxfdec : Don't use wrong type of pointer

    12 mars 2021, par Andreas Rheinhardt
    avformat/mxfdec : Don't use wrong type of pointer
    

    If one of the two results of a ternary conditional is a pointer to void,
    the type of the whole conditional operator is a pointer to void, even
    when the other possible result is not a pointer to void. This loophole
    in the type system has allowed mxf_read_local_tags to have a pointer of
    type pointer to MXFMetadataSet that actually points to an MXFContext.

    Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/mxfdec.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
  • Icecast : always send a content-type

    11 novembre 2014, par Marvin Scholz
    Icecast : always send a content-type
    

    use a default (audio/mpeg for historical reason) if none. Required since Icecast 2.4.1
    Not using AVOption default because this breaks content-type warnings (needs to
    detect if no type was set by the user)

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

    • [DH] libavformat/icecast.c