Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (17)

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

Sur d’autres sites (1886)

  • lavu/tx : clip when converting table values to fixed-point

    9 janvier 2021, par Lynne
    lavu/tx : clip when converting table values to fixed-point
    

    INT32_MAX (2147483647) isn't exactly representable by a floating point
    value, with the closest being 2147483648.0. So when rescaling a value
    of 1.0, this could overflow when casting the 64-bit value returned from
    lrintf() into 32 bits.
    Unfortunately the properties of integer overflows don't match up well
    with how a Fourier Transform operates. So clip the value before
    casting to a 32-bit int.

    Should be noted we don't have overflows with the table values we're
    currently using. However, converting a Kaiser-Bessel window function
    with a length of 256 and a parameter of 5.0 to fixed point did create
    overflows. So this is more of insurance to save debugging time
    in case something changes in the future.
    The macro is only used during init, so it being a little slower is
    not a problem.

    • [DH] libavutil/tx_priv.h
  • doc : correct table end for metadata filter

    15 février 2017, par Mulvya
    doc : correct table end for metadata filter
    

    Signed-off-by : Mulvya <mulvya@gmail.com>

    • [DH] doc/filters.texi
  • avfilter/vf_hqx : optimize table init

    24 juin 2014, par Michael Niedermayer
    avfilter/vf_hqx : optimize table init
    

    5389024880 -> 1389386610 dezicycles

    This surely can be optimized more, i just didnt want to cause a slowdown
    when trying to make the fate test bitexact.
    Further optimization left to ubitux

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

    • [DH] libavfilter/vf_hqx.c