Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (74)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • 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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (11985)

  • Added `ZeroClipboard.state()` for diagnostics.

    15 avril 2014, par JamesMGreene
    Added `ZeroClipboard.state()` for diagnostics.
    

    Fixes #372.

  • avcodec/decode : Reset MMX state for receive_frame decoders, too

    14 mars 2023, par Andreas Rheinhardt
    avcodec/decode : Reset MMX state for receive_frame decoders, too
    

    FFmpeg's assembly code currently does not abide by the
    plattform-specific ABIs wrt its handling of the X86 MMX flag :
    Resetting the MMX state is deferred to avoid doing it multiple times
    instead of ensuring that the CPU is in floating point state
    upon return from any function.

    Furthermore, resetting said state is sometimes done generically,
    namely for all the decoders using the ordinary decode callback ;
    yet this is not done for the decoders using the receive_frame API.

    This led to problems when MJPEG (and the MJPEG-based decoders)
    were switched to the receive_frame API in commit
    e9a2a8777317d91af658f774c68442ac4aa726ec, because ff_mjpeg_decode_sos()
    only resets the MMX state on success, not on failure.
    Such issues are probably still possible with SMVJPEG, which still
    uses the receive_frame API. See issue #10210.

    This commit therefore also resets the MMX state for
    the receive_frame API to avoid any more surprises of this sort.

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/decode.c
  • I ues FFMPEG to convert bitmap to yuv,and try to save it,but failed

    20 avril 2013, par liaoyuandeyehuo

    I use this way to convert bitmap to yuv
    Save bitmap to video (libavcodec ffmpeg)
    and then save the buffer like this :

    FILE* fp=fopen("aha.yuv","w");
    if(!fp) return NULL;
    fwrite(outPic->data[0],nbytes,1,fp);
    fwrite(outBuffer,nbytes,1,fp);
    fclose(fp);

    but it has only several lines. All most all of the .yuv file is gray.
    I am sure the inbuffer points to the input BGR32 data. So where is wrong ?
    Is The way to save the outBuffer right ?