
Recherche avancée
Autres articles (95)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (7624)
-
avcodec/get_bits : Avoid reading multiple times in get_bits_long
22 juin 2022, par Andreas Rheinhardtavcodec/get_bits : Avoid reading multiple times in get_bits_long
Due to non-byte-alignment a read of 32 bits guarantees only
25 usable bits ; therefore get_bits_long() (which is used to
potentially read more than 25 bits) performs two reads in case
it needs to read more than 25 bits and combines the result.Yet this is not necessary : One can just read 64 bits at a time
to get 32 usable bits (57 would be possible). This commit does so.This reduced the size of .text by 30144B for GCC 11.4 and 5648B
for Clang 14 (both with -O3).(get_bits_long() is a building block of show_bits_long()
and get_ue_golomb_long(), so this patch affects these, too.)Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
Revision 9596a4cc54 : vpxdec : add —loops option Allows vpxdec to operate multiple times on the same
13 juin 2013, par John KoleszarChanged Paths :
Modify /vpxdec.c
vpxdec : add —loops optionAllows vpxdec to operate multiple times on the same input. Mostly
useful for debugging/development.Change-Id : Icf25ece22e387052eade4438971eee5ff4f798ba
-
avformat/utils : Don't initialize AVStreamInternal.info multiple times
26 août 2021, par Andreas Rheinhardtavformat/utils : Don't initialize AVStreamInternal.info multiple times
It has been allocated and initialized in avformat_find_stream_info()
until fd0368e7ca35e2feaf7960564e61a76655c4d1f6 when the structure
was moved to AVStreamInternal and its allocation to avformat_new_stream.
In order to also initialize the struct for new streams that only get
created during avformat_find_stream_info() said the initialization has
been added to avformat_new_stream() later. Due to the Libav-FFmpeg split
this has been done twice : In 4cda8aa1c5bc58f8a7f53a21a19b03e7379bbcdc
and in 30c26c2442e4e44ac5a763c23c4b0fdd9921a7f5. The initialization in
avformat_find_stream_info() has not been removed at all despite being
redundant. This commit removes it and the duplicated initialization in
avformat_new_stream().Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>