Recherche avancée

Médias (91)

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • x86inc : Avoid using eax/rax for storing the stack pointer

    8 octobre 2016, par Henrik Gramner
    x86inc : Avoid using eax/rax for storing the stack pointer
    

    When allocating stack space with an alignment requirement that is larger
    than the current stack alignment we need to store a copy of the original
    stack pointer in order to be able to restore it later.

    If we chose to use another register for this purpose we should not pick
    eax/rax since it can be overwritten as a return value.

    • [DH] common/x86/x86inc.asm
  • avfilter/vf_v360 : Fix NULL pointer use

    8 janvier, par Michael Niedermayer
    avfilter/vf_v360 : Fix NULL pointer use
    

    Fixes : applying zero offset to null pointer
    partly Fixes : verysmall.flv

    Found-by : Elias Myllymäki <elias.myllymaki04p@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_v360.c
  • lavc/libkvazaar : fix incompatible pointer type.

    20 août 2018, par Jun Zhao
    lavc/libkvazaar : fix incompatible pointer type.
    

    fix the waring : libavcodec/libkvazaar.c:210:27 : warning : passing argument 3 of ‘av_image_copy’ from incompatible pointer type [-Wincompatible-pointer-types]
    frame->data, frame->linesize,

    In file included from libavcodec/libkvazaar.c:31:0 :
    ./libavutil/imgutils.h:119:6 : note : expected ‘const uint8_t ** aka const unsigned char **’ but argument is of type ‘uint8_t * const* aka unsigned char * const*
    void av_image_copy(uint8_t *dst_data[4], int dst_linesizes[4],

    Signed-off-by : Jun Zhao <mypopydev@gmail.com>

    • [DH] libavcodec/libkvazaar.c