Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (97)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (11406)

  • checkasm : aacpsdsp : Tolerate extra intermediate precision in stereo_interpolate

    4 décembre 2019, par Martin Storsjö
    checkasm : aacpsdsp : Tolerate extra intermediate precision in stereo_interpolate
    

    The stereo_interpolate functions add h_step to the values h
    BUF_SIZE times. Within the stereo_interpolate C functions, the
    values h (h0-h3, h00-h13) are declared as local float variables,
    but the compiler is free to keep them in a register with extra
    precision.

    If the accumulation is rounded to 32 bit float precision after
    each step, the less significant bits of h_step end up ignored
    and the sum can deviate, affecting the end result more than
    the currently set EPS.

    By clearing the log2(BUF_SIZE) lower bits of h_step, we make sure
    that the accumulation shouldn't differ significantly, regardless
    of any extra precision in the accmulating register/variable.

    This fixes the aacpsdsp checkasm test when built with clang for
    mingw/x86_32.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] tests/checkasm/aacpsdsp.c
  • lavu/tx : add support for double precision FFT and MDCT

    27 juillet 2019, par Lynne
    lavu/tx : add support for double precision FFT and MDCT
    

    Simply moves and templates the actual transforms to support an
    additional data type.
    Unlike the float version, which is equal or better than libfftw3f,
    double precision output is bit identical with libfftw3.

    • [DH] doc/APIchanges
    • [DH] libavutil/Makefile
    • [DH] libavutil/tx.c
    • [DH] libavutil/tx.h
    • [DH] libavutil/tx_double.c
    • [DH] libavutil/tx_float.c
    • [DH] libavutil/tx_priv.h
    • [DH] libavutil/tx_template.c
    • [DH] libavutil/version.h
  • avcodec/ffv1enc : replace 3 double precision log2() by 1 single precision log2()

    30 mars, par Michael Niedermayer
    avcodec/ffv1enc : replace 3 double precision log2() by 1 single precision log2()
    

    This makes the remap finding heuristic much faster

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ffv1enc.c