
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (60)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (6927)
-
doc/demuxers : restore alphabetical order
13 octobre 2016, par Stefano Sabatini -
Revision 73edeb03ea : Removing alg_priv from vpx_codec_priv struct. In order to understand memory lay
21 août 2014, par Dmitry KovalevChanged Paths :
Modify /vp8/vp8_cx_iface.c
Modify /vp8/vp8_dx_iface.c
Modify /vp9/vp9_cx_iface.c
Modify /vp9/vp9_dx_iface.c
Modify /vpx/internal/vpx_codec_internal.h
Modify /vpx/src/vpx_codec.c
Modify /vpx/src/vpx_decoder.c
Modify /vpx/src/vpx_encoder.c
Removing alg_priv from vpx_codec_priv struct.In order to understand memory layout consider the declaration of the
following structs. The first one is a part of our API :struct vpx_codec_ctx
// ...
struct vpx_codec_priv *priv ;
;The second one is defined in vpx_codec_internal.h :
struct vpx_codec_priv
// ...
;The following struct is defined 4 times for encoder/decoder VP8/VP9 :
struct vpx_codec_alg_priv
struct vpx_codec_priv base ;
// ...
;Private data allocation for the given ctx :
struct vpx_codec_ctx *ctx =
struct vpx_codec_alg_priv *alg_priv =
ctx->priv = (struct vpx_codec_priv *)alg_priv ;The cast works because vpx_codec_alg_priv has a
vpx_codec_priv instance as a first member ’base’.Change-Id : I10d1afc8c9a7dfda50baade8c7b0296678bdb0d0
-
avformat : bump minor version after the Matroska field order enum fix
13 octobre 2016, par James Almer