Recherche avancée

Médias (91)

Autres articles (39)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

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