
Recherche avancée
Autres articles (103)
-
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. -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (19217)
-
Revision 276a1106e6 : Merge changes I54acef34,I72d42971 into experimental * changes : Make some sb_t
24 avril 2013, par Ronald S. BultjeChanged Paths : Modify /vp9/decoder/vp9_decodemv.c Modify /vp9/decoder/vp9_decodframe.c Merge changes I54acef34,I72d42971 into experimental * changes : Make some sb_type comparisons independent of literal enum values. Make loopfilter aware of rectangular (...)
-
Revision 39a74e19fb : Ensure the error-concealment code is available When it's configured, make sure
19 décembre 2014, par JohannChanged Paths :
Modify /test/decode_api_test.cc
Ensure the error-concealment code is availableWhen it’s configured, make sure it can be configured. When it’s not,
make sure it fails.Change-Id : I857d4b8014547ddbad70395f17e58d5838bd142f
-
avcodec/aac* : Make initializing ff_aac_pow*sf_tab thread-safe
19 novembre 2020, par Andreas Rheinhardtavcodec/aac* : Make initializing ff_aac_pow*sf_tab thread-safe
This table is currently initialized up to three times : Once by the
encoder and twice by the decoders (once by the fixed and once by the
floating-point decoder) ; each of these initializations is guarded by an
AVOnce, yet the fact that there are three of them implies that there
might be data races (the fact that each entry is only written to once
(to its final value) when initializing means that this is safe in
practice, yet it is still undefined behaviour). Fix this by only
initializing the table from one place that is guarded by a single AVOnce.
This also avoids unnecessary duplications of the init code.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>