Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (70)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • lcl : Disentangle pointers to input data and decompression buffer

    2 août 2014, par Diego Biurrun
    lcl : Disentangle pointers to input data and decompression buffer
    

    This is cleaner and avoids a cast plus a related const qualifier warning.

    • [DH] libavcodec/lcldec.c
  • Revision ba5c7efd4e : Merge changes I4e2aeaef,Ie3e478ef * changes : vpxdec warning errors addressed

    5 août 2014, par Jim Bankoski

    Merge changes I4e2aeaef,Ie3e478ef

    * changes :
    vpxdec warning errors addressed
    cast enums to int to avoid gcc warning in pred_common

  • Revision 73edeb03ea : Removing alg_priv from vpx_codec_priv struct. In order to understand memory lay

    21 août 2014, par Dmitry Kovalev

    Changed Paths :
     Modify /vp8/vp8_cx_iface.c


     Modify /vp8/vp8_dx_iface.c


     Modify /vp9/vp9_cx_iface.c


     Modify /vp9/vp9_dx_iface.c


     Modify /vpx/internal/vpx_codec_internal.h


     Modify /vpx/src/vpx_codec.c


     Modify /vpx/src/vpx_decoder.c


     Modify /vpx/src/vpx_encoder.c



    Removing alg_priv from vpx_codec_priv struct.

    In order to understand memory layout consider the declaration of the
    following structs. The first one is a part of our API :

    struct vpx_codec_ctx
    // ...
    struct vpx_codec_priv *priv ;
     ;

    The second one is defined in vpx_codec_internal.h :

    struct vpx_codec_priv
    // ...
     ;

    The following struct is defined 4 times for encoder/decoder VP8/VP9 :

    struct vpx_codec_alg_priv
    struct vpx_codec_priv base ;
    // ...
     ;

    Private data allocation for the given ctx :

    struct vpx_codec_ctx *ctx =
    struct vpx_codec_alg_priv *alg_priv =
    ctx->priv = (struct vpx_codec_priv *)alg_priv ;

    The cast works because vpx_codec_alg_priv has a
    vpx_codec_priv instance as a first member ’base’.

    Change-Id : I10d1afc8c9a7dfda50baade8c7b0296678bdb0d0