Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (57)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (11080)

  • aacenc_tns : use 4 bits for short windows

    8 décembre 2015, par Rostislav Pehlivanov
    aacenc_tns : use 4 bits for short windows
    

    With only 7 coefficients per short window at most the extra precision
    makes a difference and seems to reduce crackling and stddev even
    further.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/aacenc_tns.c
    • [DH] tests/fate/aac.mak
  • avfilter/af_afade : improve accuracy and speed of gain computation

    25 novembre 2015, par Ganesh Ajjanagadde
    avfilter/af_afade : improve accuracy and speed of gain computation
    

    Gain computation for various curves was being done in a needlessly
    inaccurate fashion. Of course these are all subjective curves, but when
    a curve is advertised to the user, it should be matched as closely as
    possible within the limitations of libm. In particular, the constants
    kept here were pretty inaccurate for double precision.

    Speed improvements are mainly due to the avoidance of pow, the most
    notorious of the libm functions in terms of performance. To be fair, it
    is the GNU libm that is among the worst, but it is not really GNU libm’s fault
    since others simply yield a higher error as measured in ULP.

    "Magic" constants are also accordingly documented, since they take at
    least a minute of thought for a casual reader.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavfilter/af_afade.c
  • avfilter/vsrc_mandelbrot : change sin to sinf for color computation

    24 novembre 2015, par Ganesh Ajjanagadde
    avfilter/vsrc_mandelbrot : change sin to sinf for color computation
    

    lrintf is anyway used, suggesting we only care up to floating precision.
    Rurthermore, there is a compat hack in avutil/libm for this function,
    and it is used in avcodec/aacps_tablegen.h.

    This yields a non-negligible speedup. Sample benchmark :
    x86-64, Haswell, GNU/Linux :

    old (draw_mandelbrot) :
    274635709 decicycles in draw_mandelbrot, 256 runs, 0 skips
    300287046 decicycles in draw_mandelbrot, 512 runs, 0 skips
    371819935 decicycles in draw_mandelbrot, 1024 runs, 0 skips
    336663765 decicycles in draw_mandelbrot, 2048 runs, 0 skips
    581851016 decicycles in draw_mandelbrot, 4096 runs, 0 skips

    new (draw_mandelbrot) :
    269882717 decicycles in draw_mandelbrot, 256 runs, 0 skips
    296359285 decicycles in draw_mandelbrot, 512 runs, 0 skips
    370076599 decicycles in draw_mandelbrot, 1024 runs, 0 skips
    331478354 decicycles in draw_mandelbrot, 2048 runs, 0 skips
    571904318 decicycles in draw_mandelbrot, 4096 runs, 0 skips

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavfilter/vsrc_mandelbrot.c