
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (100)
-
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. -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (9432)
-
avfilter/graphparser : Fix leaks when parsing inputs fails
22 août 2020, par Andreas Rheinhardtavfilter/graphparser : Fix leaks when parsing inputs fails
parse_inputs() uses a temporary linked list to parse the labeled inputs
of a filter ; said linked list owns its elements (and their names). On
success, the list of unlabeled inputs is appened to the end of the list
of labeled inputs and the new list is returned ; yet on failures, nothing
frees the already existing elements of the temporary linked list, leading
to a leak.This can be triggered by e.g. using '-vf [v][' in the FFmpeg
command-line tool.This leak seems to exist since 4e781c25b7b1955d1a9a0b0771c3ce1acb0957bd.
Reviewed-by : Nicolas George <george@nsup.org>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com> -
Revision e1d582d9f5 : Refactored the file dumping process so memory leaks are easier to avoid. Fixed a
30 avril 2012, par Marc NoirotChanged Paths :
Modify /src/dump.c
Modify /src/dump_json.c
Modify /src/dump_json.h
Modify /src/dump_raw.c
Modify /src/dump_raw.h
Modify /src/dump_xml.c
Modify /src/dump_xml.h
Modify /src/dump_yaml.c
Modify /src/dump_yaml.h
Refactored the file dumping process so memory leaks are easier to avoid.
Fixed a few function definitions. -
avcodec/ffv1 : flip half of float16 and Compactify floats
18 janvier, par Michael Niedermayeravcodec/ffv1 : flip half of float16 and Compactify floats
float16 (and more so float32) have many odd values
half the values are negative, many are larger than "1.0"
and many values are very close to 0.Storing the 16bits as is, looses compression because of the mixture
of dense and sparse regions and also many completely unused ones.This simply remaps the 65536 values so no unused values remain
This improves compression by about 1.5% for the ACES_OT_VWG_SampleFrames testset
(this testset contains all kind of funny values including many images
with negative rgb values)The space needed for the map is insignificant compared to the
compression gainedThis patch also flips half the float range as it can be done
using the same table.Sponsored-by : Sovereign Tech Fund
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>