Recherche avancée

Médias (0)

Mot : - Tags -/latitude

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

Autres articles (92)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (13702)

  • lavc/internal : document the precise meaning of AVCodecInternal.draining

    3 avril 2024, par Anton Khirnov
    lavc/internal : document the precise meaning of AVCodecInternal.draining
    

    Also, set draining=1 in case a bitstream filter returns an
    internally-triggered EOF. While no bitstream filters currently inserted
    by decoders will do that, that may change in the future and it is better
    to cover this case.

    • [DH] libavcodec/decode.c
    • [DH] libavcodec/internal.h
  • Revision e4aac6bb61 : Modify block transform skipping check Block transform skipping was implemented

    1er octobre 2014, par Yunqing Wang

    Changed Paths :
     Modify /vp9/encoder/vp9_quantize.c


     Modify /vp9/encoder/vp9_rdopt.c



    Modify block transform skipping check

    Block transform skipping was implemented based on DCT’s energy
    conservation property. Modified the thresholds using zero bin
    parameters. AC and DC coefficients were checked separately to
    allow better identifying of skippable blocks.

    Borg test at speed 3 showed :
    stdhd set : psnr gain : 0.153%, ssim gain : 0.051% ;
    derf set : psnr gain : 0.023%, ssim gain : 0.036%

    For most test clips, the encoding speedup is 1% - 2%.
    parkrun(720p) : 7.5% speedup, park_joy(1080p) : 3.5% speedup.

    Change-Id : If28eb81113a077414f5ca7b021c14f9069b373bb

  • opusdsp : adjust and optimize C function to match assembly

    15 août 2019, par Lynne
    opusdsp : adjust and optimize C function to match assembly
    

    The C and asm versions behaved differently _outside_ of the codec.

    The C version returned pre-multiplied 'state' for the next execution
    to use right away, while the assembly version outputted non-multiplied
    'state' for the next execution to multiply to save instructions.
    Since the initial state when initialized or seeking is always 0,
    and since C and asm versions were never mixed, there was no issue.

    However, comparing outputs directly in checkasm doesn't work without
    dividing the initial state by CELT_EMPH_COEFF and multiplying the
    returned state by CELT_EMPH_COEFF for the assembly function.

    Since its actually faster to do this in C as well, copy the behavior the
    asm versions use. As a reminder, the initial state 0 is divided by
    CELT_EMPH_COEFF on seek and init (just in case in the future this is
    changed, its technically more correct to init with CELT_EMPH_COEFF than 0,
    however when seeking this will result in more audiable pops, unlike with 0
    where the output gets in sync over a few samples).

    • [DH] libavcodec/opus_celt.c
    • [DH] libavcodec/opusdsp.c