Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (59)

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

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

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

  • configure : Include the armcc build number in the compiler identification

    28 juillet 2014, par Martin Storsjö
    configure : Include the armcc build number in the compiler identification
    

    This tries to find the most expressive part of the output of
    armcc —vsn to include, giving a compiler identification of
    "ARM Compiler 5.04 update 2 (build 82)" instead of just
    "ARM Compiler 5.04" for armcc 5.0.

    4.x versions of armcc output the following, for "armcc —vsn" :
    ARM C/C++ Compiler, RVCT4.0 [Build 925]
    For evaluation purposes only
    Software supplied by : ARM Limited

    ARM C/C++ Compiler, 4.1 [Build 894]
    For evaluation purposes only
    Software supplied by : ARM Limited

    5.0 versions output this :
    Product : ARM Compiler 5.04
    Component : ARM Compiler 5.04 update 2 (build 82)
    Tool : armcc [5040081]
    For evaluation purposes only
    Software supplied by : ARM Limited

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] configure
  • configure : Include the armcc build number in the compiler identification

    28 juillet 2014, par Martin Storsjö
    configure : Include the armcc build number in the compiler identification
    

    This tries to find the most expressive part of the output of
    armcc —vsn to include, giving a compiler identification of
    "ARM Compiler 5.04 update 2 (build 82)" instead of just
    "ARM Compiler 5.04" for armcc 5.0.

    4.x versions of armcc output the following, for "armcc —vsn" :
    ARM C/C++ Compiler, RVCT4.0 [Build 925]
    For evaluation purposes only
    Software supplied by : ARM Limited

    ARM C/C++ Compiler, 4.1 [Build 894]
    For evaluation purposes only
    Software supplied by : ARM Limited

    5.0 versions output this :
    Product : ARM Compiler 5.04
    Component : ARM Compiler 5.04 update 2 (build 82)
    Tool : armcc [5040081]
    For evaluation purposes only
    Software supplied by : ARM Limited

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] configure
  • 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