
Recherche avancée
Autres articles (111)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (12049)
-
hevc : only write to max_ra and pocTid0 in the first slice.
3 avril 2017, par Ronald S. Bultjehevc : only write to max_ra and pocTid0 in the first slice.
Values from subsequent values are guaranteed to be identical (since
poc and nal_unit_type are checked to be the same between slices), so
this doesn’t affect output in any way, but does resolve the remaining
reported race conditions (by tsan) in fate-hevc.In practice, this fixes tsan warnings like this :
WARNING : ThreadSanitizer : data race (pid=25334)
Read of size 4 at 0x7d9c0001adcc by main thread (mutexes : write M1386) :
#0 hevc_update_thread_context src/libavcodec/hevcdec.c:3310 (ffmpeg+0x000000b41c7c)
[..]
Previous write of size 4 at 0x7d9c0001adcc by thread T1 (mutexes : write M1383) :
#0 hls_slice_header src/libavcodec/hevcdec.c:596 (ffmpeg+0x000000b43a22) -
h264 : don’t sync pic_id between threads.
3 avril 2017, par Ronald S. Bultjeh264 : don’t sync pic_id between threads.
This is how the ref list manager links bitstream IDs to H264Picture/Ref
objects, and is local to the producer thread. There is no need for the
consumer thread to know the bitstream IDs of its references in their
respective producer threads.In practice, this fixes tsan warnings when running fate-h264 :
WARNING : ThreadSanitizer : data race (pid=19295)
Read of size 4 at 0x7dbc0000e614 by main thread (mutexes : write M1914) :
#0 ff_h264_ref_picture src/libavcodec/h264_picture.c:112 (ffmpeg+0x0000013b3709)
[..]
Previous write of size 4 at 0x7dbc0000e614 by thread T2 (mutexes : write M1917) :
#0 build_def_list src/libavcodec/h264_refs.c:91 (ffmpeg+0x0000013b46cf) -
dnxhd : initialize DNXHDContext::avctx to each thread’s respective one.
28 mars 2017, par Ronald S. Bultjednxhd : initialize DNXHDContext::avctx to each thread’s respective one.
Otherwise all thread’s private contexts have the avctx pointer set to
the AVCodecContext of the first thread, which means all writes to
ctx->avctx->* (in e.g. read_header) are effectively race conditions.Fixes fate-dnxhd under tsan.