Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (88)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (10979)

  • avcodec/elbg : Mark ELBGContext as being unaliased by using av_restrict

    20 septembre 2021, par Andreas Rheinhardt
    avcodec/elbg : Mark ELBGContext as being unaliased by using av_restrict
    

    This improves performance : For msvideo1, the performance improved by
    4.8% when encoding the sample from the fate-vsynth1-msvideo1 test ;
    when encoding the sample from fate-vsynth1-cinepak, performance
    improved by 2%. The compiler user was GCC 10 and the calls to encode2
    have been timed.

    Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/elbg.c
  • avcodec/frame_thread_encoder : Mark init and free functions as av_cold

    2 septembre 2021, par Andreas Rheinhardt
    avcodec/frame_thread_encoder : Mark init and free functions as av_cold
    

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

    • [DH] libavcodec/frame_thread_encoder.c
  • avfilter/internal : Mark ff_filter_get_nb_threads() as av_pure

    13 juin 2021, par Andreas Rheinhardt
    avfilter/internal : Mark ff_filter_get_nb_threads() as av_pure
    

    It does not modify anything ; it only returns a value, so it fulfills
    the requirements for av_pure.
    The deeper rationale behind this change is that this function is called
    quite often inside arguments to FFMIN which may lead to two calls to it ;
    declaring this function as av_pure allows the compiler to optimize the
    second call away.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavfilter/internal.h