Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (57)

  • 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.

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

Sur d’autres sites (8779)

  • AAC encoder tests : increase fuzz for pred test

    11 octobre 2015, par Claudio Freire
    AAC encoder tests : increase fuzz for pred test
    

    MIPS needs more fuzz

    • [DH] tests/fate/aac.mak
  • avcodec/wmalosslessdec : fix overflow with pred in revert_cdlms

    28 juin 2020, par Michael Niedermayer
    avcodec/wmalosslessdec : fix overflow with pred in revert_cdlms
    

    Fixes : signed integer overflow : 2048 + 2147483646 cannot be represented in type 'int'
    Fixes : 23538/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMALOSSLESS_fuzzer-5227567073460224

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/wmalosslessdec.c
  • 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 &amp;&amp; get_bits1(&amp;sl->gb)){
                   mb_type |= MB_TYPE_8x8DCT;
                   di = 4;
               }

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

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

                   if(di==4)
                       fill_rectangle(&amp;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) &lt; 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 ?