
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (42)
-
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 (...) -
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 -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (7665)
-
Revision 1ebf52df2c : Common encode/decode function to get reference frame Replaced encoder and decod
8 août 2014, par Adrian GrangeChanged Paths :
Modify /vp9/common/vp9_onyxc_int.h
Modify /vp9/decoder/vp9_decoder.c
Modify /vp9/decoder/vp9_decoder.h
Modify /vp9/encoder/vp9_encoder.c
Modify /vp9/encoder/vp9_encoder.h
Modify /vp9/vp9_cx_iface.c
Modify /vp9/vp9_dx_iface.c
Common encode/decode function to get reference frameReplaced encoder and decoder functions to get a pointer
to a reference frame with a common function, vp9_get_ref_frame,
and simplified it.Change-Id : Icb206fcce8caace3bfd1db3dbfa318dde79043ee
-
ffmpeg : fix streamcopy with side data
13 août 2014, par Christophe Gisquetffmpeg : fix streamcopy with side data
The issue is that, when the main packet data buffer is changed, streamcopy
uses a temporary new packet to store that buffer, frees the old packet, and
replace it with the new packet.However, in doing so, it forgets about the side data, which gets freed, but
is still needed and referenced. Then, when the packet gets freed again in
the normal code path, it attempts to free its side data which has already
been freed.Therefore, simply avoid the first free on side data by removing that side
data from the packet.Fixes ticket #3773.
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
Revision 3cffa0c74e : Move vp9_thread.* to common. Prepare for frame parallel decoding, the reference
7 juillet 2014, par hkuangChanged Paths :
Modify /test/vp9_thread_test.cc
Add /vp9/common/vp9_thread.c
(from /vp9/decoder/vp9_thread.c
:10aa23f751069fe464fbc3c0e35dcf9294f055f7)
Add /vp9/common/vp9_thread.h
(from /vp9/decoder/vp9_thread.h
:10aa23f751069fe464fbc3c0e35dcf9294f055f7)
Modify /vp9/decoder/vp9_decodeframe.c
Modify /vp9/decoder/vp9_decoder.h
Modify /vp9/decoder/vp9_dthread.h
Delete /vp9/decoder/vp9_thread.c
Delete /vp9/decoder/vp9_thread.h
Modify /vp9/vp9_common.mk
Modify /vp9/vp9dx.mk
Move vp9_thread.* to common.Prepare for frame parallel decoding, the reference count buffers
need to be protected by mutex. Move vp9_thread.* to common
folder so that those buffers could use cross-platform mutex
from vp9_thread.*.(cherry picked from commit 337e8015c9deaf8ab7e8d0c3c132160a77dd1590)
Change-Id : I0587a08447925f4554d7788686a31483c2ae3f37