
Recherche avancée
Autres articles (83)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (6779)
-
lavfi/vf_colorchannelmixer : replace round by lrint
16 décembre 2015, par Ganesh Ajjanagaddelavfi/vf_colorchannelmixer : replace round by lrint
lrint is faster here on -ftree-vectorize with GCC. This is likely simply
an artifact of GCC’s rather terrible auto-vectorizer, since as per the
instruction set manuals cvtsd2si and cvttsd2si (or their vector equivalents)
have identical cycle timings.Anyway, regardless of above, lrint is superior to round accuracy wise.
Safety guaranteed as long int has at least 32 bits.
Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>
-
doc/developer.texi : drop a misplaced sentence from code formatting section
15 novembre 2022, par Anton Khirnov -
Merge commit ’74d98d1b0e0e7af444c933ea3c472494de3ce6f2’
21 juin 2016, par Clément BœschMerge commit ’74d98d1b0e0e7af444c933ea3c472494de3ce6f2’
* commit ’74d98d1b0e0e7af444c933ea3c472494de3ce6f2’ :
mpegts : Validate the SL Packet Header ConfigurationSee e630ca5111077fa8adc972fe8a3d7e2b3e8dc91f
Our local timestamp_len > 64 is adjusted to > 63 to match the Libav
check and the actual specifications (14496-1, 10.2.2).There is no need to request a sample as it violates the specifications
and such a file would likely be the result of a crafted/fuzzed sample.On the other hand, the clipping of the value is kept for extra safety.
Merged-by : Clément Bœsch <clement@stupeflix.com>