
Recherche avancée
Autres articles (97)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (9292)
-
Revision 44e039b4f5 : Further clean up of speed 4 Speed 4 still does not give a big gain over speed 3
3 octobre 2013, par Paul WilkinsChanged Paths :
Modify /vp9/encoder/vp9_onyx_if.c
Further clean up of speed 4Speed 4 still does not give a big gain over speed 3.
This just cleans it up a little from the last patch and comments
out features that do not seem to be giving much benefit.Change-Id : I5f366e6160e1dbe5dc45cf5eb90cc02712baa1b6
-
How to export ffurl_register_protocol() ?
18 juin 2015, par user1764961I have some legacy code that requires
ffurl_register_protocol()
exported. I found this patch :diff --git a/libavformat/Makefile b/libavformat/Makefile
index 0d6cb91..802edd7 100644
--- a/libavformat/Makefile
+++ b/libavformat/Makefile
@@ -1,7 +1,7 @@
NAME = avformat
FFLIBS = avcodec avutil
-HEADERS = avformat.h avio.h version.h
+HEADERS = avformat.h avio.h url.h version.h
OBJS = allformats.o \
cutils.o \
diff --git a/libavformat/libavformat.v b/libavformat/libavformat.v
index 6f11d60..e605135 100644
--- a/libavformat/libavformat.v
+++ b/libavformat/libavformat.v
@@ -1,4 +1,5 @@
LIBAVFORMAT_$MAJOR {
global: av*;
+ ffurl_register_protocol;
local: *;
};But, it doesn’t help. Any idea how to do it ?
-
Revision 198fa6d0a0 : Add Neon horizontal and vertical vp9_mbloop_filter - The vp9 mbfilter C code wi
1er juillet 2013, par Frank GalliganChanged Paths :
Modify /vp9/common/arm/neon/vp9_loopfilter_neon.asm
Modify /vp9/common/vp9_rtcd_defs.sh
Add Neon horizontal and vertical vp9_mbloop_filterThe vp9 mbfilter C code will branch on flat and mask. This CL
will perform both branches and combine the data. A later CL will
perform a check to see if all patch will take one branch.These functions are about 1.75 times faster than the C code on
Nexus 7.PS #3
Changed all functions to dub limit, blimit, and thresh from
vld dx[], freeing up r4-r6.Changed code to use vbif to reduce one instruction and free
up a d register.Change-Id : I028dae0e434dc9891c3677bdb182e201ffb04777