
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (61)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (9225)
-
imgutils : add function to clear an image to black
22 juillet 2017, par wm4imgutils : add function to clear an image to black
Black isn't always just memset(ptr, 0, size). Limited YUV in particular
requires relatively non-obvious values, and filling a frame with
repeating 0 bytes is disallowed in some contexts. With component sizes
larger than 8 or packed YUV, this can become relatively complicated. So
having a generic function for this seems helpful.In order to handle the complex cases in a generic way without destroying
performance, this code attempts to compute a black pixel, and then uses
that value to clear the image data quickly by using a function like
memset.Common cases like yuv410p10 or rgba can't be handled with a simple
memset, so there is some code to fill memory with 2/4/8 byte patterns.
For the remaining cases, a generic slow fallback is used.Signed-off-by : Anton Khirnov <anton@khirnov.net>
Merged from Libav commit 45df7adc1d9b7.
-
Revision 52af8e3ee6 : flv.h, flvmeta.c, flvdump.c : Added support for Screen Video V2, and On2 VP6 with
20 septembre 2007, par Marc NoirotChanged Paths :
Modify /AUTHORS
Modify /ChangeLog
Modify /Makefile.am
Modify /README
Add /THANKS
(from /AUTHORS
:7eef48a76c31888eb3e6267fb8c200419059f1dd)
Add /TODO
Modify /flv.h
Modify /flvdump.c
Modify /flvmeta.c
flv.h, flvmeta.c, flvdump.c : Added support for Screen Video V2, and On2 VP6 with
alpha channel.
flvdump.c (compute_metadata) : Fixed a compilation issue on MacOSX caused by a
misplaced minus sign.
flvmeta.c (main) : Added protection against giving the same file as input and
output.
flv.h, flvmeta.c : Fixed the padding in the flv_tag to better reflect its role.
flvmeta.c : Made error messages more uniform.
flvmeta.c (compute_h263_size) : Added Picture Start Code check.
flvdump.c (main) : Suppressed a compilation warning.
Makefile.am : Added -Wall.
Makefile.am : Removed non-existant directory `doc' from EXTRA_DIST.
Added THANKS, TODO standard files.
AUTHORS, README, Changelog : Standard stuff. -
lavfi/tests : Fix 16-bit vf_blend test to avoid memory not aligned to 2 bytes
23 mai 2018, par Andrey Semashevlavfi/tests : Fix 16-bit vf_blend test to avoid memory not aligned to 2 bytes
Generic C implementation of vf_blend performs reads and writes of 16-bit
elements, which requires the buffers to be aligned to at least 2-byte
boundary.Also, the change fixes source buffer overrun caused by src_offset being
added to to test handling of misaligned buffers.Fixes : #7226
Reviewed-by : Paul B Mahol <onemda@gmail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>