Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (47)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (5672)

  • h264 intra4x4 pred mode decoding in ffmpeg

    23 janvier 2016, par firoozg

    I got confused with the following code in libavcodec/h264_cavlc.c
    which is a part of h264 decoder of ffmpeg.

    int ff_h264_decode_mb_cavlc(const H264Context *h, H264SliceContext *sl)
       .
       .
       .
           if(IS_INTRA4x4(mb_type)){
               int i;
               int di = 1;
               if(dct8x8_allowed && get_bits1(&sl->gb)){
                   mb_type |= MB_TYPE_8x8DCT;
                   di = 4;
               }

    //                fill_intra4x4_pred_table(h);
               for(i=0; i<16; i+=di){
                   int mode = pred_intra_mode(h, sl, i);

                   if(!get_bits1(&sl->gb)){
                       const int rem_mode= get_bits(&sl->gb, 3);
                       mode = rem_mode + (rem_mode >= mode);
                   }

                   if(di==4)
                       fill_rectangle(&sl->intra4x4_pred_mode_cache[ scan8[i] ], 2, 2, 8, mode, 1);
                   else
                       sl->intra4x4_pred_mode_cache[scan8[i]] = mode;
               }
               write_back_intra_pred_mode(h, sl);
               if (ff_h264_check_intra4x4_pred_mode(h, sl) < 0)
                   return -1;
           }

    when di == 4 it reads only four prediction modes from
    the bitstream. I expect to extract 16 pred modes since
    we are working on an INTRA4x4 macroblock.

    what is the function fill_rectangle() doing ?

  • Revision 56a8bc54a6 : Properly store the tx_size of selected intra mode Use a temporary variable to s

    17 décembre 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_pickmode.c



    Properly store the tx_size of selected intra mode

    Use a temporary variable to store the transform size associated
    with the best intra mode and restore the mode_info if the overall
    best mode is intra mode.

    Change-Id : I2606e0061ad32f91b095462902b1eb734b128eea

  • Revision b527c4dbb7 : Segment mode coding bug. There are now more than 16 possible modes so 5 bits re

    14 novembre 2012, par Paul Wilkins

    Changed Paths : Modify /vp9/common/seg_common.c Segment mode coding bug. There are now more than 16 possible modes so 5 bits required for segment mode feature. Note that it is likely that the mode feature and how it is coded will change but for now the 4 bits was a bug. Change-Id : (...)