
Recherche avancée
Autres articles (39)
-
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 -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (7090)
-
Revision 8abd92f12f : Remove mode_skip_start and mask code for sub 8x8 This code serves no purpose in
4 octobre 2013, par Paul WilkinsChanged Paths :
Modify /vp9/encoder/vp9_rdopt.c
Remove mode_skip_start and mask code for sub 8x8This code serves no purpose in the re-factored sub 8x8 code.
Change-Id : I5364986224d1a28b71bcb046ec8557a3d14aaa47
-
avcodec/imgconvert : Fix loss mask bug in avcodec_find_best_pix_fmt_of_list()
31 mars 2018, par heimdallravcodec/imgconvert : Fix loss mask bug in avcodec_find_best_pix_fmt_of_list()
example :
AVPixelFormat pixFmts[] = AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA ;
int loss = 0 ;
AVPixelFormat best = avcodec_find_best_pix_fmt_of_list(pixFmts, AV_PIX_FMT_BGRA, 1, &loss) ;best is AV_PIX_FMT_RGB24. But AV_PIX_FMT_RGBA is better.
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
-
avcodec/ac3dec : Fix shift signedness in mask creation
21 septembre 2018, par Michael Niedermayeravcodec/ac3dec : Fix shift signedness in mask creation
Fixes : 9924/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EAC3_fuzzer-5473421772193792
Fixes : left shift of 1 by 63 places cannot be represented in type 'long long'Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>