Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (90)

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

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

Sur d’autres sites (5909)

  • Merge remote-tracking branch ’qatar/master’

    25 octobre 2013, par Michael Niedermayer
    Merge remote-tracking branch ’qatar/master’
    

    * qatar/master :
    fft-test : Remove possibility of returning restricted exit code
    dct-test : Remove possibility of returning a restricted exit code
    base64-test : Remove posibility of returning restricted exit codes
    tree-test : Don’t return restricted exit codes

    Conflicts :
    libavutil/base64.c

    See : b2fdf3fc35b6dca8ac7f6d46bd73ea5eb1339193
    See : f80ca1cb002c53927fa3edaff5082bfba24d6193
    See : cbbd0ac764b43df081898a2c3548a2fee1faca53
    See : 5dfdffeb6fe9c43a496a4c1949cf9162474c7418
    Merged-by : Michael Niedermayer <michaelni@gmx.at>

  • avcodec/flac_parser : Use native endianness when possible

    6 octobre 2019, par Andreas Rheinhardt
    avcodec/flac_parser : Use native endianness when possible
    

    FLAC sync codes contain a byte equal to 0xFF and so the function that
    searches for sync codes first searched for this byte. It did this by
    checking four bytes at once ; these bytes have been read via AV_RB32, but
    the test works just as well with native endianness.

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

    • [DH] libavcodec/flac_parser.c
  • avcodec/utvideodec : Avoid qsort when creating Huffman tables

    24 septembre 2020, par Andreas Rheinhardt
    avcodec/utvideodec : Avoid qsort when creating Huffman tables
    

    The Ut video format uses Huffman trees which are only implicitly coded
    in the bitstream : Only the lengths of the codes are coded, the rest has
    to be inferred by the decoder according to the rule that the longer
    codes are to the left of shorter codes in the tree and on each level the
    symbols are descending from left to right.

    Because longer codes are to the left of shorter codes, one needs to know
    how many non-leaf nodes there are on each level in order to know the
    code of the next left-most leaf (which belongs to the highest symbol on
    that level). The current code does this by sorting the entries to be
    ascending according to length and (for entries with the same length)
    ascending according to their symbols. This array is then traversed in
    reverse order, so that the lowest level is dealt with first, so that the
    number of non-leaf nodes of the next higher level is known when
    processing said level.

    But this can also be calculated without sorting : Simply count how many
    leaf nodes there are on each level. Then one can calculate the number of
    non-leaf nodes on each level iteratively from the lowest level upwards :
    It is just half the number of nodes of the level below.

    This improves performance : For the sample from ticket #4044 the amount
    of decicycles for one call to build_huff() decreased from 1055489 to
    446310 for Clang 10 and from 1080306 to 535155 for GCC 9.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/utvideo.c
    • [DH] libavcodec/utvideo.h
    • [DH] libavcodec/utvideodec.c