
Advanced search
Other articles (98)
-
MediaSPIP 0.1 Beta version
25 April 2011, byMediaSPIP 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 February 2011, byMultilang 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. -
Websites made with MediaSPIP
2 May 2011, byThis page lists some websites based on MediaSPIP.
On other websites (10079)
-
Revision 0e23048303: BITSTREAM - "update_map" SEMANTICS BROKEN IN 398ddafb629b7f49cf255bf09d3e38b4abd
3 October 2013, by Dmitry KovalevChanged Paths:
Modify /vp9/decoder/vp9_decodemv.c
Modify /vp9/decoder/vp9_decodframe.c
BITSTREAM - "update_map" SEMANTICS BROKEN IN
398ddafb629b7f49cf255bf09d3e38b4abd0bb95This patch reverts old commit 398ddafb629b7f49cf255bf09d3e38b4abd0bb95
"New way of updating last frame segmentation map.".Change-Id: Iba730f433c30ed7f5e5449d6768049cbf9a2b2c5
-
Revision 44e039b4f5: Further clean up of speed 4 Speed 4 still does not give a big gain over speed 3
3 October 2013, by 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 June 2015, by 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?