Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (29)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (6200)

  • Rewrite main resampling loop (common and linear).

    27 mai 2014, par Ronald S. Bultje
    Rewrite main resampling loop (common and linear).
    

    This removes a branch at a performance-sensitive point (in the middle
    of the loop). In fate-swr-resample-s32p-8000-2626, this makes the code
    about 10% faster. It also simplifies the loops, allowing us to rewrite
    it in yasm at some later point.

    The compensation_distance != 0 code and index < 0 code are still kind
    of hairy. For compensation_distance != 0, this should likely be handled
    in the caller, so that it calls swri_resample twice (once until the
    dst_incr switch-point, and once with the remainder of the samples). For
    index < 0, the code should probably be rewritten to break out of the
    loop once sample_index >= 0, and then resume (e.g. as a tail-call) to
    the common or linear resampling loops.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libswresample/resample_template.c
  • lavc : add an option to enable side data-only packets during encoding

    29 avril 2014, par Anton Khirnov
    lavc : add an option to enable side data-only packets during encoding
    

    Some encoders (e.g. flac) need to send side data when there is no more
    data to be output. This enables them to output a packet with no data in
    it, only side data.

    • [DH] doc/APIchanges
    • [DH] libavcodec/avcodec.h
    • [DH] libavcodec/options_table.h
    • [DH] libavcodec/version.h
  • flac muxer : support reading updated extradata from side data

    26 mai 2014, par Anton Khirnov
    flac muxer : support reading updated extradata from side data
    
    • [DH] libavformat/flacenc.c
    • [DH] libavformat/flacenc.h
    • [DH] libavformat/flacenc_header.c
    • [DH] libavformat/matroskaenc.c