Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (96)

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

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

  • lavu : Drop FF_API_GET_CHANNEL_LAYOUT_COMPAT cruft

    5 septembre 2015, par Hendrik Leppkes
    lavu : Drop FF_API_GET_CHANNEL_LAYOUT_COMPAT cruft
    

    FATE refs changed to accomodate for the new default behavior of the function.
    Numbers are now interpreted as a channel layout, instead of a number of channels.

    • [DH] libavutil/channel_layout.c
    • [DH] libavutil/internal.h
    • [DH] libavutil/opt.c
    • [DH] libavutil/version.h
    • [DH] tests/ref/fate/filter-formats
  • x86 : Add asm for mbtree fixed point conversion

    4 mars 2016, par Henrik Gramner
    x86 : Add asm for mbtree fixed point conversion
    

    The QP offsets of each macroblock are stored as floats internally and
    converted to big-endian Q8.8 fixed point numbers when written to the 2-pass
    stats file, and converted back to floats when read from the stats file.

    Add SSSE3 and AVX2 implementations for conversions in both directions.

    About 8x faster than C on Haswell.

    • [DH] common/mc.c
    • [DH] common/mc.h
    • [DH] common/x86/mc-a2.asm
    • [DH] common/x86/mc-c.c
    • [DH] encoder/ratecontrol.c
    • [DH] tools/checkasm.c
  • avformat/matroskadec : Improve invalid length error handling

    17 mai 2019, par Andreas Rheinhardt
    avformat/matroskadec : Improve invalid length error handling
    

    1. Up until now, the error message for EBML numbers whose length exceeds
    the limits imposed upon them because of the element's type did not
    distinguish between known-length and unknown-length elements. As a
    consequence, the numerical value of the define constant
    EBML_UNKNOWN_LENGTH was emitted as part of the error message which is
    of course not appropriate. This commit changes this by adding error
    messages designed for unknown-length elements.

    2. We impose some (arbitrary) sanity checks on the lengths of certain
    element types ; these checks were conducted before the checks depending
    on whether the element exceeds its containing master element. Now the
    order has been reversed, because a failure at the (formerly) latter
    check implies that the file is truly erroneous and not only fails our
    arbitrary length limit. Moreover, this increases the informativeness of
    the error messages.

    3. Furthermore, the error message in general has been changed by replacing
    the type of the element (something internal to this demuxer and
    therefore suitable as debug output at best, not as an error message
    intended for ordinary users) with the element ID. The element's position
    has been added, too.

    4. Finally, the length limit for EBML_NONE elements has been changed so
    that all unknown-length elements of EBML_NONE-type trigger an error.
    This is done because unknown-length elements can't be skipped and need
    to be parsed, but there is no syntax to parse available for EBML_NONE
    elements. This is done in preparation for a further patch which allows
    more unknown-length elements than just clusters and segments.

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

    • [DH] libavformat/matroskadec.c