Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (103)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (7313)

  • avformat/internal : Don't auto-include os_support.h

    31 août 2023, par Andreas Rheinhardt
    avformat/internal : Don't auto-include os_support.h
    

    It includes various Windows-specific headers when compiling
    for Windows and these sometimes cause issues : E.g. winbase.h
    defines IGNORE, which clashes with a macro used in the Matroska
    muxer (since 884653ee5be03ed38db957c14fad51b300611c8c) and demuxer.

    This header provides fallback defines for various stuff that is
    mostly not used directly by (de)muxers at all :
    mkdir, rename, rmdir, unlink, access, poll, pollfd, nfds_t,
    closesocket, socklen_t, fstat, stat, lseek, SHUT_(RD|WR|RDWR)
    and various POLL* constants.

    Ergo fix this issue by not auto-including this header in lots
    of places via an inclusion in internal.h and instead include
    it everywhere where the above stuff is used (most of these
    translation units already included os_support.h).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/img2dec.c
    • [DH] libavformat/internal.h
    • [DH] libavformat/rtsp.h
    • [DH] libavformat/utils.c
  • avcodec/libjxldec : use internal AVFrame as buffered space

    10 juillet 2023, par Leo Izen
    avcodec/libjxldec : use internal AVFrame as buffered space
    

    Before this commit, the decoder erroneously assumes that the AVFrame
    passed to the receive_frame is the same one each time. Now it keeps an
    internal AVFrame to write into, and copies it over when it's done.

    Signed-off-by : Leo Izen <leo.izen@gmail.com>

    • [DH] libavcodec/libjxldec.c
  • avformat/internal : Use forward declaration for AVCodecDescriptor

    2 août 2023, par Andreas Rheinhardt
    avformat/internal : Use forward declaration for AVCodecDescriptor
    

    This avoids including lavc/codec_desc.h everywhere and thereby
    forces users to include it directly instead of lazily and potentially
    unknowingly relying on indirect inclusions.

    Also add the proper inclusion to libavformat/demux.c, one of the
    two files that actually use the new field.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/demux.c
    • [DH] libavformat/internal.h