Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (77)

  • 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

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (6578)

  • checkasm : Serialize read_time() calls on x86

    8 octobre 2014, par Henrik Gramner
    checkasm : Serialize read_time() calls on x86
    

    Improves the accuracy of benchmarks, especially in short functions.

    To quote the Intel 64 and IA-32 Architectures Software Developer’s Manual :
    "The RDTSC instruction is not a serializing instruction. It does not necessarily
    wait until all previous instructions have been executed before reading the counter.
    Similarly, subsequent instructions may begin execution before the read operation
    is performed. If software requires RDTSC to be executed only after all previous
    instructions have completed locally, it can either use RDTSCP (if the processor
    supports that instruction) or execute the sequence LFENCE ;RDTSC."

    RDTSCP would accomplish the same task, but it’s only available since Nehalem.

    This change makes SSE2 a requirement to run checkasm.

    • [DH] tools/checkasm.c
  • avcodec/ffv1 : Fix segfaults on allocation error

    14 septembre 2020, par Andreas Rheinhardt
    avcodec/ffv1 : Fix segfaults on allocation error
    

    When allocating FFV1 slice contexts fails, ff_ffv1_init_slice_contexts()
    frees everything that it has allocated, yet it does not reset the
    counter for the number of allocated slice contexts. This inconsistent
    state leads to segfaults lateron in ff_ffv1_close(), because said
    function presumes that the slice contexts have been allocated.
    Fix this by making sure that the number of slice contexts on error is
    consistent (namely zero).

    (This issue only affected the FFV1 decoder, because the encoder does not
    clean up after itself on init failure.)

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

    • [DH] libavcodec/ffv1.c
  • fftools/ffmpeg : stop using AVStream.nb_frames in do_video_stats()

    16 décembre 2021, par Anton Khirnov
    fftools/ffmpeg : stop using AVStream.nb_frames in do_video_stats()
    

    Its use for muxing is not documented, in practice it is incremented per
    each packet successfully passed to the muxer's write_packet(). Since
    there is a lot of indirection between ffmpeg receiving a packet from the
    encoder and it actually being written (e.g. bitstream filters, the
    interleaving queue), using nb_frames here is incorrect.

    Add a new counter for packets received from encoder instead.

    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg.h