Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (51)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

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

  • 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 (5167)

  • avcodec/mjpeg_parser : skip markers after EOI, not by size

    25 novembre 2021, par Alex Xu (Hello71)
    avcodec/mjpeg_parser : skip markers after EOI, not by size
    

    The check for m->size >= 0xF000 is intended to avoid skipping too much
    garbage data between JPEG frames in test_roman (thus missing next SOI),
    but it erroneously also skips valid markers between SOI and SOS. Instead
    of this, we should simply skip parsing markers other than SOI after EOI.
    That way, we will not accidentally skip over SOI due to some garbage
    between frames. There is still a small risk of encountering FFD8 in the
    garbage data, but the chance of this is fairly low.

    Fixes : https://trac.ffmpeg.org/ticket/8967
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mjpeg_parser.c
  • avcodec/proresenc_kostya : Factor flushing PutBitContext out

    25 mars 2021, par Andreas Rheinhardt
    avcodec/proresenc_kostya : Factor flushing PutBitContext out
    

    The function to write an ordinary (luma or chroma) plane as well as
    the function for writing an alpha plane have some similarities :
    They record the initial bitposition (despite said position always being
    byte-aligned), flush the PutBitContext themselves and return the amount
    of bytes they wrote.

    This commit factors this out ; it also replaces bitpositions by
    bytepositions and it avoids recording the initial byteposition because
    said information is already available from the position at the end of
    the last plane.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/proresenc_kostya.c
  • mpegts : pass MpegTSContext ptr explicitly

    8 juillet 2014, par Alexander V. Lukyanov
    mpegts : pass MpegTSContext ptr explicitly
    

    AVFormatContext->priv_data is not always a MpegTSContext, it can be
    RTSPState when decoding a RTP stream. So it is necessary to pass
    MpegTSContext pointer explicitly.

    Within libav, the write_section_data function doesn’t actually use
    the MpegTSContext at all, so this doesn’t change anything at the
    moment (no memory was corrupted before), but it reduces the risk of
    anybody trying to touch the MpegTSContext via AVFormatContext->priv_data
    in the future.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/mpegts.c