Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (98)

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

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

Sur d’autres sites (9794)

  • wma lossless : reuse scalarproduct_and_madd_int16

    24 novembre 2012, par Christophe Gisquet
    wma lossless : reuse scalarproduct_and_madd_int16
    

    This is done by padding the coefficient buffer with 0s, because the order
    may be only a multiple of 4, and the DSP function requires batches of 8.

    However, no sample with such a case was found, so request one if it uses
    that kind of order.

    Approximate relative speedup depending on instruction set :
    plain C : -6%
    mmxext : 51%
    sse2 : 54%

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

    • [DH] libavcodec/wmalosslessdec.c
  • adpcm : Write the proper predictor in trellis mode in IMA QT

    6 juin 2014, par Martin Storsjö
    adpcm : Write the proper predictor in trellis mode in IMA QT
    

    The actual predictor value, set by the trellis code, never
    was written back into the variable that was written into
    the block header. This was accidentally removed in b304244b.

    This significantly improves the audio quality of the trellis
    case, which was plain broken since b304244b.

    Encoding IMA QT with trellis still actually gives a slightly
    worse quality than without trellis, since the trellis encoder
    doesn’t use the exact same way of rounding as in
    adpcm_ima_qt_compress_sample and adpcm_ima_qt_expand_nibble.

    Fixes part of Ticket3701

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

    • [DH] libavcodec/adpcmenc.c
    • [DH] tests/ref/acodec/adpcm-ima_qt-trellis
  • avutil/libm : Replace macro based fminf() by function

    6 juin 2014, par Michael Niedermayer
    avutil/libm : Replace macro based fminf() by function
    

    This avoids issues when the FFMIN parameter evaluation has side effects

    Reviewed-by : Clément Bœsch <u@pkh.me>
    Reviewed-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/libm.h