
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (89)
-
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 (5699)
-
Merge commit 'fc322d6a70189da24dbd445c710bb214eb031ce7'
3 mai 2017, par Clément BœschMerge commit 'fc322d6a70189da24dbd445c710bb214eb031ce7'
* commit 'fc322d6a70189da24dbd445c710bb214eb031ce7' :
tta : Convert to the new bitstream reader
mlp : Convert to the new bitstream reader
unary : Convert to the new bitstream readerThis merge is a noop, see
http://ffmpeg.org/pipermail/ffmpeg-devel/2017-April/209609.htmlMerged-by : Clément Bœsch <u@pkh.me>
-
vp9dsp : Deduplicate the subpel filters
14 novembre 2016, par Martin Storsjövp9dsp : Deduplicate the subpel filters
Make them aligned, to allow efficient access to them from simd.
This is an adapted cherry-pick from libav commit
a4cfcddcb0f76e837d5abc06840c2b26c0e8aefc.Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>
-
aarch64 : vp9 : Add NEON itxfm routines
14 novembre 2016, par Martin Storsjöaarch64 : vp9 : Add NEON itxfm routines
This work is sponsored by, and copyright, Google.
These are ported from the ARM version ; thanks to the larger
amount of registers available, we can do the 16x16 and 32x32
transforms in slices 8 pixels wide instead of 4. This gives
a speedup of around 1.4x compared to the 32 bit version.The fact that aarch64 doesn’t have the same d/q register
aliasing makes some of the macros quite a bit simpler as well.Examples of runtimes vs the 32 bit version, on a Cortex A53 :
ARM AArch64
vp9_inv_adst_adst_4x4_add_neon : 90.0 87.7
vp9_inv_adst_adst_8x8_add_neon : 400.0 354.7
vp9_inv_adst_adst_16x16_add_neon : 2526.5 1827.2
vp9_inv_dct_dct_4x4_add_neon : 74.0 72.7
vp9_inv_dct_dct_8x8_add_neon : 271.0 256.7
vp9_inv_dct_dct_16x16_add_neon : 1960.7 1372.7
vp9_inv_dct_dct_32x32_add_neon : 11988.9 8088.3
vp9_inv_wht_wht_4x4_add_neon : 63.0 57.7The speedup vs C code (2-4x) is smaller than in the 32 bit case,
mostly because the C code ends up significantly faster (around
1.6x faster, with GCC 5.4) when built for aarch64.Examples of runtimes vs C on a Cortex A57 (for a slightly older version
of the patch) :
A57 gcc-5.3 neon
vp9_inv_adst_adst_4x4_add_neon : 152.2 60.0
vp9_inv_adst_adst_8x8_add_neon : 948.2 288.0
vp9_inv_adst_adst_16x16_add_neon : 4830.4 1380.5
vp9_inv_dct_dct_4x4_add_neon : 153.0 58.6
vp9_inv_dct_dct_8x8_add_neon : 789.2 180.2
vp9_inv_dct_dct_16x16_add_neon : 3639.6 917.1
vp9_inv_dct_dct_32x32_add_neon : 20462.1 4985.0
vp9_inv_wht_wht_4x4_add_neon : 91.0 49.8The asm is around factor 3-4 faster than C on the cortex-a57 and the asm
is around 30-50% faster on the a57 compared to the a53.This is an adapted cherry-pick from libav commit
3c9546dfafcdfe8e7860aff9ebbf609318220f29.Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>