
Recherche avancée
Autres articles (58)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Contribute to a better visual interface
13 avril 2011MediaSPIP 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. -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.
Sur d’autres sites (9937)
-
avcodec/pthread_frame, decode : allow errors to happen on draining
28 avril 2017, par Muhammad Faizavcodec/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> -
avcodec : do not use init_static_data on some codecs
2 février 2018, par Muhammad Faizavcodec : do not use init_static_data on some codecs
They don't modify AVCodec, no needs to call it at register. They will be
wasteful if these codecs are unused. Instead, call static data initialization
at codecs' init.Benchmark :
old : 51281340 decicycles in avcodec_register_all, 1 runs, 0 skips
new : 6738960 decicycles in avcodec_register_all, 1 runs, 0 skipsReviewed-by : wm4 <nfxjfg@googlemail.com>
Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by : Muhammad Faiz <mfcc64@gmail.com> -
swresample/x86 : add support for exact_rational
15 juin 2016, par Muhammad Faizswresample/x86 : add support for exact_rational
phase_shift and phase_mask is removed
generally exact_rational=on is faster than exact_rational=offSigned-off-by : Muhammad Faiz <mfcc64@gmail.com>