Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (112)

  • 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 ;

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (13145)

  • 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
  • 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
  • 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