
Recherche avancée
Autres articles (49)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (8131)
-
avcodec/svq1enc : Use unsigned for parameter >= 0 to workaround GCC bug
10 juillet 2022, par Andreas Rheinhardtavcodec/svq1enc : Use unsigned for parameter >= 0 to workaround GCC bug
encode_block() in svq1enc.c looks like the following :
static int encode_block(int block[7][256], int level)
int best_score = 0 ;for (unsigned x = 0 ; x < level ; x++)
int v = block[1][x] ;
block[level][x] = 0 ;
best_score += v * v ;
if (level > 0 && best_score > 64)
int score = 0 ;score += encode_block(block, level - 1) ;
score += encode_block(block, level - 1) ;if (score < best_score)
best_score = score ;
return best_score ;
When called from outside of encode_block(), it is always called with
level == 5.This triggers a bug [1] in GCC : On -O3, it creates eight clones of
encode_block with different values of level inlined into it. The clones
with negative values are of course useless*, but they also lead toWarray-bounds warnings, because they access block[-1].
This has been mitigated in GCC 12 : It no longer creates clones
for parameters that it knows are impossible. Somehow switching levels
to unsigned makes GCC know this. Therefore this commit does this.
(For GCC 11, this changes the warning to "array subscript 4294967295 is
above array bounds" from "array subscript -1 is below array bounds".)[1] : https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102513
* : These clones can actually be discarded when compiling with
ffunction-sections.
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
Anomalie #2542 : forum interne
8 mars 2012, par christophe ulmeravec sqlite3 , cela fonctionne
-
Revision 33206 : encore quelques listes non classées / le forum n’est pas un menu
24 novembre 2009, par shnoulle@… — Logencore quelques listes non classées / le forum n’est pas un menu