Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (48)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

  • avcodec/pthread_frame, decode : allow errors to happen on draining

    28 avril 2017, par Muhammad Faiz
    avcodec/pthread_frame, decode : allow errors to happen on draining
    

    So, all frames and errors are correctly reported in order.
    Also limit the numbers of error during draining to prevent infinite loop.

    This fix fate failure with THREADS>=4 :
    make fate-h264-attachment-631 THREADS=4
    This also reverts a755b725ec1d657609c8bd726ce37e7cf193d03f.

    Suggested-by : wm4, Ronald S. Bultje, Marton Balint
    Reviewed-by : w4 <nfxjfg@googlemail.com>
    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] libavcodec/decode.c
    • [DH] libavcodec/internal.h
    • [DH] libavcodec/pthread_frame.c
  • avcodec/rdft : remove sintable

    7 juillet 2017, par Muhammad Faiz
    avcodec/rdft : remove sintable
    

    It is redundant with costable. The first half of sintable is
    identical with the second half of costable. The second half
    of sintable is negative value of the first half of sintable.

    The computation is changed to handle sign of sin values, in
    C code and ARM assembly code.

    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] libavcodec/Makefile
    • [DH] libavcodec/arm/rdft_neon.S
    • [DH] libavcodec/rdft.c
    • [DH] libavcodec/rdft.h
  • avutil : merge slice threading implementation from avcodec and avfilter

    11 juillet 2017, par Muhammad Faiz
    avutil : merge slice threading implementation from avcodec and avfilter
    

    Rework it to improve performance. Now mutex is not shared by workers,
    instead each worker has its own mutex and condition variable. This
    reduces lock contention between workers. Also use atomic variable for
    counter.

    The interface also allows execute to run special function on main
    thread, requested by Ronald.

    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] libavutil/Makefile
    • [DH] libavutil/slicethread.c
    • [DH] libavutil/slicethread.h
    • [DH] libavutil/version.h