Recherche avancée

Médias (91)

Autres articles (37)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (5853)

  • fftools/ffmpeg_enc : Remove always-true checks

    16 juillet 2023, par Andreas Rheinhardt
    fftools/ffmpeg_enc : Remove always-true checks
    

    frame is always != NULL for audio and video here
    (this is checked by an assert and the frame is already dereferenced
    before it reaches this code here).
    Fixes Coverity issue #1538858.

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/ffmpeg_enc.c
  • avcodec/nvenc : Remove always-true check

    31 juillet 2023, par Andreas Rheinhardt
    avcodec/nvenc : Remove always-true check
    

    nvenc_store_frame_data() is always called with frame != NULL
    (checked at the beginning of nvenc_send_frame()) ;
    in fact, frame is dereferenced unconditionally after the block
    guarded by the check for frame. Therefore Coverity complains
    about this in issue #1538295.

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

    • [DH] libavcodec/nvenc.c
  • avcodec/error_resilience, mpeg12dec : Remove always-true checks

    1er août 2023, par Andreas Rheinhardt
    avcodec/error_resilience, mpeg12dec : Remove always-true checks
    

    Having a decode_slice callback is mandatory for HWAccels ;
    the only exception to this (and the reason why these checks
    were added) was XvMC, but it is no more since commit
    be95df12bb06b183c8d2aea3b0831fdf05466cf3.

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

    • [DH] libavcodec/error_resilience.c
    • [DH] libavcodec/mpeg12dec.c