Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (74)

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

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

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

Sur d’autres sites (10013)

  • vf_colorspace : Add support for film primaries

    1er novembre 2016, par Vittorio Giovara
    vf_colorspace : Add support for film primaries
    

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>
    Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>

    • [DH] libavfilter/vf_colorspace.c
  • avcodec/h264dec : apply H.274 film grain

    17 août 2021, par Niklas Haas
    avcodec/h264dec : apply H.274 film grain
    

    Because we need access to ref frames without film grain applied, we have
    to add an extra AVFrame to H264Picture to avoid messing with the
    original. This requires some amount of overhead to make the reference
    moves work out, but it allows us to benefit from frame multithreading
    for film grain application "for free".

    Unfortunately, this approach requires twice as much RAM to be constantly
    allocated for ref frames, due to the need for an extra buffer per
    H264Picture. In theory, we could get away with freeing up this memory as
    soon as it's no longer needed (since ref frames do not need film grain
    buffers any longer), but trying to call ff_thread_release_buffer() from
    output_frame() conflicts with possible later accesses to that same frame
    and I'm not sure how to synchronize that well.

    Tested on all three cases of (no fg), (fg present but exported) and (fg
    present and not exported), with and without threading.

    Co-authored-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Niklas Haas <git@haasn.dev>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/h264_picture.c
    • [DH] libavcodec/h264_slice.c
    • [DH] libavcodec/h264dec.c
    • [DH] libavcodec/h264dec.h
  • avcodec/h264_picture : don't assume Film Grain Params side data will be present

    17 octobre 2021, par James Almer
    avcodec/h264_picture : don't assume Film Grain Params side data will be present
    

    If a decoding error happens before frame side data is allocated, this assert may be
    triggered. And since applying film grain is not enforced (we just warn it wasn't
    applied and move on), we can just do that in such scenarios.

    Fixes : Assertion failure
    Fixes : clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_H264_fuzzer-5528650032742400

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/h264_picture.c