Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (99)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (10826)

  • 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

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

    • [DBH] libavcodec/lcldec.c
  • src/ : Remove un-needed MSVC6 workaround.

    4 juillet 2014, par Erik de Castro Lopo
    src/ : Remove un-needed MSVC6 workaround.
    

    MSVC6 was not able to cast from a uint64_t to a double and this
    commit removes some #ifdef hackery designed to work around this
    problem.

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/flac/decode.c
    • [DH] src/flac/encode.c
    • [DH] src/libFLAC/fixed.c
    • [DH] src/libFLAC/stream_decoder.c
    • [DH] src/utils/flactimer/main.cpp