Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (93)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

  • Revision 2117d4ee96 : Move get_sb_index to vp9_blockd.h Use common function to fetch/assign sb_index

    11 mai 2013, par Jingning Han

    Changed Paths :
     Modify /vp9/common/vp9_blockd.h


     Modify /vp9/decoder/vp9_decodframe.c


     Modify /vp9/encoder/vp9_bitstream.c


     Modify /vp9/encoder/vp9_encodeframe.c



    Move get_sb_index to vp9_blockd.h

    Use common function to fetch/assign sb_index in rd loop, bit-stream
    writing and reading.

    Change-Id : I1d8a214a57ed9cbcd026040436ef33e5e39d65b7

  • configure : Enable -fno-common for Darwin targets, avoid linker warnings

    29 avril, par Martin Storsjö
    configure : Enable -fno-common for Darwin targets, avoid linker warnings
    

    Since GCC 10 and llvm.org Clang 11, -fno-common is the default.
    However Apple's Xcode Clang hasn't followed suit yet, and still
    defaults to -fcommon.

    Compiling with -fcommon causes uninitialized global variables to
    be treated as "common" (which allows multiple object files to have
    similar definitions).

    Common variables seem to have the issue that their intended alignment
    isn't signaled, so the linker assumes that they may need alignment
    according to their full size.

    With large global tables, this can lead to linker warnings like
    this, with Xcode 16.3 :

    ld : warning : reducing alignment of section __DATA,__common from 0x8000 to 0x4000 because it exceeds segment maximum alignment

    This can be reproduced with a small snippet like this :

    char table[16385] ;
    int main(int argc, char* argv[]) return 0 ;

    Compiling with -fno-common avoids this issue and warning, and
    matches the default behaviour of other compilers. (Compiling with
    - fno-common also avoids the risk of accidentally accepting
    duplicate definitions of global variables, as long as they are
    uninitialized.)

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

    • [DH] configure
  • Revision 1ebf52df2c : Common encode/decode function to get reference frame Replaced encoder and decod

    8 août 2014, par Adrian Grange

    Changed Paths :
     Modify /vp9/common/vp9_onyxc_int.h


     Modify /vp9/decoder/vp9_decoder.c


     Modify /vp9/decoder/vp9_decoder.h


     Modify /vp9/encoder/vp9_encoder.c


     Modify /vp9/encoder/vp9_encoder.h


     Modify /vp9/vp9_cx_iface.c


     Modify /vp9/vp9_dx_iface.c



    Common encode/decode function to get reference frame

    Replaced encoder and decoder functions to get a pointer
    to a reference frame with a common function, vp9_get_ref_frame,
    and simplified it.

    Change-Id : Icb206fcce8caace3bfd1db3dbfa318dde79043ee