Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (97)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (10077)

  • avutil/opt : Don't cast when the result might be misaligned

    25 mars 2024, par Andreas Rheinhardt
    avutil/opt : Don't cast when the result might be misaligned
    

    A pointer conversion is UB if the resulting pointer is not
    correctly aligned for the resultant type, even if no
    load/store is ever performed through that pointer (C11 6.3.2.3 (7)).

    This may happen in opt_copy_elem(), because the pointers are
    converted even when they belong to a type that does not guarantee
    sufficient alignment.

    Fix this by deferring the cast after having checked the type.
    Also make the casts -Wcast-qual safe and avoid an indirection
    for src.

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

    • [DH] libavutil/opt.c
  • avcodec/aac/aacdec_usac : remove unnecessary cast

    2 juin 2024, par James Almer
    avcodec/aac/aacdec_usac : remove unnecessary cast
    

    Fixes "libavcodec/aac/aacdec_usac.c(543) : error C2440 : 'type cast' : cannot convert from 'GetBitContext' to 'GetBitContext'"
    from msvc.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/aac/aacdec_usac.c
  • avutil/wchar_filename : re-introduce explicit cast of void* to char*

    22 octobre 2024, par Marton Balint
    avutil/wchar_filename : re-introduce explicit cast of void* to char*
    

    Fixes compile error on windows with decklink :

    In file included from ./libavformat/os_support.h:175,
    from ./libavformat/internal.h:30,
    from libavdevice/decklink_common.cpp:25 :
    ./libavutil/wchar_filename.h : In function 'int wchartocp(unsigned int, const wchar_t*, char**)' :
    ./libavutil/wchar_filename.h:59:32 : error : invalid conversion from 'void*' to 'char*' [-fpermissive]
    59 | *filename = av_malloc_array(num_chars, sizeof **filename) ;
    | ^ 
    | |
    | void*

    Regression since e9e8bea2e79bc3c481a6f81f75f6c871e3e0f367.

    Fixes ticket #11103.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavutil/wchar_filename.h