Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (62)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (8970)

  • avplay : Statically allocate the player state

    2 janvier 2016, par Luca Barbato
    avplay : Statically allocate the player state
    

    And move the resource deallocation in stream_open failure path.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] avplay.c
  • ffplay : remove flushed state from decoder context

    30 octobre 2014, par Marton Balint
    ffplay : remove flushed state from decoder context
    

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] ffplay.c
  • avcodec/x86/simple_idct : Empty MMX state in ff_simple_idct_mmx

    13 février 2024, par Andreas Rheinhardt
    avcodec/x86/simple_idct : Empty MMX state in ff_simple_idct_mmx
    

    We currently mostly do not empty the MMX state in our MMX
    DSP functions ; instead we only do so before code that might
    be using x87 code. This is a violation of the System V i386 ABI
    (and maybe of other ABIs, too) :
    "The CPU shall be in x87 mode upon entry to a function. Therefore,
    every function that uses the MMX registers is required to issue an
    emms or femms instruction after using MMX registers, before returning
    or calling another function." (See 2.2.1 in [1])
    This patch does not intend to change all these functions to abide
    by the ABI ; it only does so for ff_simple_idct_mmx, as this
    function can by called by external users, because it is exported
    via the avdct API. Without this, the following fragment will
    assert (on x86_32, as ff_simple_idct_mmx is not used on x64) :
    int16_t __attribute__ ((aligned (16))) block[64] ;
    AVDCT *dct = avcodec_dct_alloc() ;
    dct->idct_algo = FF_IDCT_AUTO ;
    avcodec_dct_init(dct) ;
    dct->idct(block) ;
    av_assert0_fpu() ;

    [1] : https://raw.githubusercontent.com/wiki/hjl-tools/x86-psABI/intel386-psABI-1.1.pdf

    Reviewed-by : Kieran Kunhya <kierank@obe.tv>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/x86/simple_idct.asm