Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (99)

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

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (11240)

  • pthread_frame : merge the functionality for normal decoder init and init_thread_copy

    9 janvier 2017, par Anton Khirnov
    pthread_frame : merge the functionality for normal decoder init and init_thread_copy
    

    The current design, where
    - proper init is called for the first per-thread context
    - first thread's private data is copied into private data for all the
    other threads
    - a "fixup" function is called for all the other threads to e.g.
    allocate dynamically allocated data
    is very fragile and hard to follow, so it is abandoned. Instead, the
    same init function is used to init each per-thread context. Where
    necessary, AVCodecInternal.is_copy can be used to differentiate between
    the first thread and the other ones (e.g. for decoding the extradata
    just once).

    • [DH] doc/multithreading.txt
    • [DH] libavcodec/aic.c
    • [DH] libavcodec/alac.c
    • [DH] libavcodec/avcodec.h
    • [DH] libavcodec/cfhd.c
    • [DH] libavcodec/cllc.c
    • [DH] libavcodec/dnxhddec.c
    • [DH] libavcodec/exr.c
    • [DH] libavcodec/ffv1dec.c
    • [DH] libavcodec/flacdec.c
    • [DH] libavcodec/h264dec.c
    • [DH] libavcodec/hevcdec.c
    • [DH] libavcodec/hqx.c
    • [DH] libavcodec/huffyuvdec.c
    • [DH] libavcodec/lagarith.c
    • [DH] libavcodec/lcldec.c
    • [DH] libavcodec/magicyuv.c
    • [DH] libavcodec/mdec.c
    • [DH] libavcodec/mimic.c
    • [DH] libavcodec/mpeg4videodec.c
    • [DH] libavcodec/pixlet.c
    • [DH] libavcodec/pngdec.c
    • [DH] libavcodec/proresdec2.c
    • [DH] libavcodec/pthread_frame.c
    • [DH] libavcodec/rv30.c
    • [DH] libavcodec/rv34.c
    • [DH] libavcodec/rv34.h
    • [DH] libavcodec/rv40.c
    • [DH] libavcodec/sheervideo.c
    • [DH] libavcodec/takdec.c
    • [DH] libavcodec/tiff.c
    • [DH] libavcodec/tta.c
    • [DH] libavcodec/vble.c
    • [DH] libavcodec/vp3.c
    • [DH] libavcodec/vp8.c
    • [DH] libavcodec/vp9.c
    • [DH] libavcodec/wavpack.c
    • [DH] libavcodec/ylc.c
  • Revision 8c5670bb6f : Merge "Use SATD based mode decision for block sizes below 16x16"

    31 mars 2015, par Jingning Han

    Merge "Use SATD based mode decision for block sizes below 16x16"

  • avcodec/av1dec : Check tiles sizes, fix assert, don't read bytes bitwise

    17 septembre 2020, par Andreas Rheinhardt
    avcodec/av1dec : Check tiles sizes, fix assert, don't read bytes bitwise
    

    Tiles have a size field with a length from one to four bytes. As such it
    is not possible to read it all at once with a call to get_bits() as this
    only allows to read up to 25 bits ; this is guarded by an av_assert2. Yet
    this is done by the AV1 decoder in get_tiles_info(). It has been done
    despite said size fields being byte-aligned. This commit fixes this by
    using the bytestream2 API instead.

    Furthermore, it is now explicitly checked whether the data is
    consistent, i.e. whether the data that is supposed to be there extends
    beyond the end of the data actually present.

    Reviewed-by : Wang, Fei W <fei.w.wang@intel.com>
    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/av1dec.c