Recherche avancée

Médias (0)

Mot : - Tags -/images

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (63)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7766)

  • Revision cdffeaaae0 : Add mode info arrays and mode info index. In non frame-parallel decoding, this

    10 juin 2014, par hkuang

    Changed Paths :
     Modify /vp9/common/vp9_alloccommon.c


     Modify /vp9/common/vp9_onyxc_int.h



    Add mode info arrays and mode info index.

    In non frame-parallel decoding, this works the same way as
    current decoding scheme. Every time after decoder finish
    decoding a frame, it will swap the current mode info pointer
    and previous mode info pointer if the decoded frame needs
    to be shown. Both mode info pointer and previous mode info
    pointer are from mode info arrays.

    In frame-parallel decoding, this will become more complicated
    as current frame’s mode info pointer will be shared with next
    frame as previous mode info pointer. But when one decoder
    thread finishes decoding one frame and starts to work on next
    available frame, it needs to retain the decoded frame’s mode
    info pointers until next frame finishes decoding. The mode info
    index will serve this purpose. The decoder will use different
    buffer in the mode info arrays and use the other buffer to save
    previous decoded frame’s mode info.

    Change-Id : If11d57d8eb0ee38c8876158e5482177fcb229428

  • Revision e4c5f7e2b6 : Delay decreasing reference count in frame-parallel decoding. The current decodi

    10 juin 2014, par hkuang

    Changed Paths :
     Modify /vp9/decoder/vp9_decoder.c


     Modify /vp9/vp9_dx_iface.c



    Delay decreasing reference count in frame-parallel decoding.

    The current decoding scheme will decrease the reference count
    of the output frame when finish decoding. Then the application
    could copy the frame from the decoder buffer to application buffer.
    In frame-parallel decoding, a decoded frame will not be outputted
    until several frames later which depends on thread numbers. So
    the decoded frame’s reference count should be decreased only
    after application finish copying the frame out. But due to the
    limitation of vpx_codec_get_frame, decoder could not know when
    application finish decoding. So use a index last_show_frame to
    release the last output frame’s reference count.

    Change-Id : I403ee0d01148ac1182e5a2d87cf7dcc302b51e63

  • Revision 0261fb4c4f : vp9 : fix segfault w/corrupt data post frame-parallel merge cm->frame_bufs[].idx

    4 février 2015, par James Zern

    Changed Paths :
     Modify /test/invalid_file_test.cc


     Modify /test/test-data.mk


     Modify /test/test-data.sha1


     Modify /vp9/decoder/vp9_decoder.c



    vp9 : fix segfault w/corrupt data post frame-parallel merge

    cm->frame_bufs[].idx values were made consistent in :
    61c5e94 Use -1 consistently as invalid buffer idx
    update the initialization in swap_frame_buffers() to match.
    additionally :
    - remove some shadowed variables in the former and marked them volatile

    Change-Id : Ie3f9636c405bd822112bb56bd22d28024ae98909