
Recherche avancée
Autres articles (33)
-
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 -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)
Sur d’autres sites (9267)
-
avcodec/mips/aaccoder_mips : Sync with generic aaccoder file.
11 septembre 2015, par Nedeljko Babicavcodec/mips/aaccoder_mips : Sync with generic aaccoder file.
Code in aaccoder_mips.c was not synced with changes in aaccoder.c for
some time.That was cause for some fate-aac tests failing.
This patch fixes the problems.
Optimizations disabled in 933309a are enabled again.
Signed-off-by : Nedeljko Babic <nedeljko.babic@imgtec.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
avcodec/mips/ac3dsp_mips : Add missing includes
28 mars 2024, par Andreas Rheinhardt -
AAC encoder : refactor to resynchronize MIPS port
15 septembre 2015, par Claudio FreireAAC encoder : refactor to resynchronize MIPS port
This patch refactors the AAC coders to reuse code
between the MIPS port and the regular, portable C code.
There were two main functions that had to use
hand-optimized versions of quantization code :
- search_for_quantizers_twoloop
- codebook_trellis_rateThose two were split into their own template header
files so they can be inlined inside both the MIPS port
and the generic code. In each context, they’ll link
to their specialized implementations, and thus be
optimized by the compiler.This approach I believe is better than maintaining
several copies of each function. As past experience has
proven, having to keep those in sync was error prone.
In this way, they will remain in sync by default.Also, an implementation of the dequantized output
argument for the optimized quantize_and_encode
functions is included in the patch. While the current
implementation of search_for_pred still isn’t using
it, future iterations of main prediction probably will.
It should not imply any measurable performance hit while
not being used.