Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (36)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6537)

  • avcodec/j2kenc : Fix undefined shifts of negative numbers

    21 janvier 2020, par Andreas Rheinhardt
    avcodec/j2kenc : Fix undefined shifts of negative numbers
    

    Also add parentheses to some lines to make the operator precedence
    clearer.

    This affected the FATE-tests vsynth*-jpeg2000 and vsynth*-jpeg2000-97
    (where * ranges over 1, 2, 3, _lena ) as well as ticket #7983.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/j2kenc.c
  • avcodec/adpcm : Fix undefined left shifts of negative numbers

    20 janvier 2020, par Andreas Rheinhardt
    avcodec/adpcm : Fix undefined left shifts of negative numbers
    

    Affected the adpcm-afc, adpcm-ea-1, adpcm-ea-2, adpcm-ea-maxis-xa,
    adpcm-thp and ea-cdata FATE-tests. Also fixes ticket #8487.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/adpcm.c
  • avcodec/adxenc : Avoid undefined left shift of negative numbers

    20 janvier 2020, par Andreas Rheinhardt
    avcodec/adxenc : Avoid undefined left shift of negative numbers
    

    Replace "((a << shift) + b) >> shift" by "a + (b >> shift)". This avoids
    a left shift which also happens to trigger undefined behaviour in case "a"
    is negative. This affected the FATE-tests acodec-adpcm-adx and
    acodec-adpcm-adx-trellis ; it also fixes ticket #8008.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/adxenc.c