Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (66)

  • 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

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (8013)

  • avcodec/mjpegdec : Use correct number of codes for VLC tables

    8 octobre 2020, par Andreas Rheinhardt
    avcodec/mjpegdec : Use correct number of codes for VLC tables
    

    Commit 1249698e1b424cff8e77e6a83cfdbc9d11e01aa7 made
    ff_mjpeg_decode_dht() call build_vlc() with a wrong (too hight)
    number of codes. The reason it worked is that the lengths of the extraneous
    entries is initialized to zero and ff_init_vlc_sparse() ignores codes
    with a length of zero. But using a too high number of codes was
    nevertheless bad, because a) the assert in build_vlc() could have been
    triggered (namely if the real amount of codes is 256) and b) the loop in
    build_vlc() uses initialized data (leading to Valgrind errors [1]).
    Furthermore, the old code spend CPU cycles in said loop although the
    result won't be used anyway.

    [1] : http://fate.ffmpeg.org/report.cgi?slot=x86_64-archlinux-gcc-valgrind&time=20201008025137

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

    • [DH] libavcodec/mjpegdec.c
  • Removed number stripping from stripHtml. Fixes #2

    28 avril 2012, par Max Lynch

    m additional-methods.js m test/methods.js Removed number stripping from stripHtml. Fixes #2

  • tests/checkasm : increase number of runs in between measurements

    31 mars, par Niklas Haas
    tests/checkasm : increase number of runs in between measurements
    

    Sometimes, when measuring very small functions, rdtsc is not accurate enough
    to get a reliable measurement. This increases the number of runs inside the
    inner loop from 4 to 32, which should help a lot. Less important when using
    the more precise linux-perf API, but still useful.

    There should be no user-visible change since the number of runs is adjusted
    to keep the total time spent measuring the same.

    • [DH] tests/checkasm/checkasm.c
    • [DH] tests/checkasm/checkasm.h