Recherche avancée

Médias (91)

Autres articles (52)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (8031)

  • avcodec/ppc/mpegvideo_altivec : Don't process coeffs as scalars

    22 mars, par Andreas Rheinhardt
    avcodec/ppc/mpegvideo_altivec : Don't process coeffs as scalars
    

    block_last_index and nCoeffs is an optimization designed
    to avoid processing unnecessarily many coefficients ; yet
    it would be legal to always process all coefficients
    (all coefficients beyond nCoeffs are zero anyway and
    zeros are always unquantized to zeros). Therefore
    one does not need a scalar tail.

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

    • [DH] libavcodec/ppc/mpegvideo_altivec.c
  • avcodec/hevc_sei : Fix check for SEI end

    22 juin 2022, par Andreas Rheinhardt
    avcodec/hevc_sei : Fix check for SEI end
    

    The intention behind the current check seems to be to check for
    the rbsp_trailing_bits() syntax structure which is always 0x80
    for valid SEI messages. Yet this is wrong : These trailing bits
    are not part of the GetBitContext — they have already been
    stripped in ff_h2645_packet_split(). And it is harmful, as
    0x80 is a legal SEI message payload type (namely for
    Structure of pictures information SEI messages). We ignore this
    type of SEI, but because of this bug we also ignored every
    SEI message in the same NALU following it.

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

    • [DH] libavcodec/hevc_sei.c
  • lavc/vvc : Validate temporal MVP references

    26 mai 2024, par Frank Plowman
    lavc/vvc : Validate temporal MVP references
    

    Per VVCv3 p. 157, the collocated reference picture used in temporal
    motion vector prediction must have RprConstraintsActiveFlag equal to
    zero and the same CTU size as the current picture. Add these checks,
    fixing crashes decoding some fuzzed bitstreams.

    Additionally, only set up the collocated reference picture if it is
    actually going to be used (i.e. if ph_temporal_mvp_enabled_flag is 1),
    else legal RPR bitstreams will fail the new checks.

    Co-authored-by : Nuo Mi <nuomi2021@gmail.com>
    Signed-off-by : Frank Plowman <post@frankplowman.com>

    • [DH] libavcodec/vvc/refs.c