
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (21)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (3303)
-
avcodec/hevc : Update the USE_SAO_SMALL_BUFFER case for the alignment requirements...
2 février 2015, par Christophe Gisquetavcodec/hevc : Update the USE_SAO_SMALL_BUFFER case for the alignment requirements in FFmpeg
Use edge emu buffers
And enable the code unconditionallySpeed difference without USE_SAO_SMALL_BUFFER and with the new code :
Decicycles : 26772->26220 (BO32), 83803->80942 (BO64)Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
avcodec/hevc : reduce memory for SAO
12 janvier 2015, par Fabrice Bellardavcodec/hevc : reduce memory for SAO
cherry picked from commit 5d9f79edef2c11b915bdac3a025b59a32082f409
SAO edge filter uses pre-SAO pixel data on the left and top of the ctb, so
this data must be kept available. This was done previously by having 2
copies of the frame, one before and one after SAO.This commit reduces the storage to just that, instead of the previous whole
frame.Commit message taken from patch by Christophe Gisquet <christophe.gisquet@gmail.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
aarch64 : vp9mc : Load only 12 pixels in the 4 pixel wide horizontal filter
3 janvier, par Janne Grunauaarch64 : vp9mc : Load only 12 pixels in the 4 pixel wide horizontal filter
This reduces the amount the horizontal filters read beyond the filter
width to a consistent 1 pixel. The data is not used so this is usually
not noticeable. It becomes a problem when the application allocates
frame buffers only for the aligned picture size and the end of it is at
a page boundary. This happens for picture sizes which are a multiple of
the page size like 1280x640. The frame buffer allocation is based on
its most likely done via mmap + MAP_ANONYMOUS so start and end of the
buffer are page aligned and the previous and next page are not
necessarily mapped.
Under these conditions like seen by Firefox a read beyond the end of the
buffer results in a segfault.
After the over-read is reduced to a single pixel it's reasonable to use
VP9's emulated edge motion compensation for this.Fixes : https://bugzilla.mozilla.org/show_bug.cgi?id=1881185
Signed-off-by : Janne Grunau <janne-ffmpeg@jannau.net>
Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>