Recherche avancée

Médias (91)

Autres articles (89)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (7777)

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