
Recherche avancée
Autres articles (111)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP 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" (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (8211)
-
avcodec/hevc_sei : parse and export Film Grain Characteristics SEI messages
23 juillet 2021, par James Almer -
ffmpeg : Fix memset size on ctts_data in mov_read_trun() (round 2)
24 février 2018, par Xiaohan Wangffmpeg : Fix memset size on ctts_data in mov_read_trun() (round 2)
The allocated size of sc->ctts_data is
(st->nb_index_entries + entries) * sizeof(*sc->ctts_data).The size to memset at offset sc->ctts_data + sc->ctts_count should be
(st->nb_index_entries + entries - sc->ctts_count) *
sizeof(*sc->ctts_data))The current code missed |entries| I believe, which was introduced in
https://patchwork.ffmpeg.org/patch/5541/.However, after offline discussion, it seems the original code is much
more clear to read (before https://patchwork.ffmpeg.org/patch/5541/).Hence this CL revert the memset logic to it's previous state by
remembering the |old_ctts_allocated_size|, and only memset the newly
allocated entries.BUG=812567
Change-Id : Ibe94c7138e5818bfaae76866bfa6619a9b8a2b6b
Reviewed-on : https://chromium-review.googlesource.com/934925
Reviewed-by : Dale Curtis <dalecurtis@chromium.org>Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
-
avcodec/cbs_av1 : split film grain param fields into their own struct
25 novembre 2020, par James Almer