Advanced search

Medias (91)

Other articles (23)

  • Keeping control of your media in your hands

    13 April 2011, by

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Submit bugs and patches

    13 April 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information: the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • List of compatible distributions

    26 April 2011, by

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

On other websites (6060)

  • Revision cd6d9846b0: Replacing NOT_IMPLMENTED with NULL. We don’t need to introduce new macro for th

    21 August 2014, by Dmitry Kovalev

    Changed Paths:
     Modify /vp8/vp8_cx_iface.c


     Modify /vp8/vp8_dx_iface.c


     Modify /vp9/vp9_cx_iface.c


     Modify /vp9/vp9_dx_iface.c


     Modify /vpx/internal/vpx_codec_internal.h



    Replacing NOT_IMPLMENTED with NULL.

    We don’t need to introduce new macro for the null value.

    Change-Id: I59dbae25feeebb4e8359095801aecc8bb17d7764

  • avformat/matroskaenc: Don't use NULL for %s format string

    14 June 2020, by Andreas Rheinhardt
    avformat/matroskaenc: Don't use NULL for %s format string
    

    The argument pertaining to a printf %s conversion specifier must not
    be NULL, even if the precision (i.e. the number of characters to write)
    is zero. If it is NULL, it is undefined behaviour.

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

    • [DH] libavformat/matroskaenc.c
  • lavc/vvc: Set fc->ref to NULL at top of decode_nal_units

    8 February, by Frank Plowman
    lavc/vvc: Set fc->ref to NULL at top of decode_nal_units
    

    In the fail: block of decode_nal_units, a check as to whether fc->ref is
    nonzero is used. Before this patch, fc->ref was set to NULL in
    frame_context_setup. The issue is that, by the time frame_context_setup
    is called, falliable functions (namely slices_realloc and
    ff_vvc_decode_frame_ps) have already been called. Therefore, there
    could arise a situation in which the fc->ref test of decode_nal_units'
    fail: block is performed while fc->ref has an invalid value. This seems
    to be particularly prevalent in situations where the FrameContexts are
    being reused. The patch resolves the issue by moving the assignment of
    fc->ref to NULL to the very top of decode_nal_units, before any falliable
    functions are called.

    Signed-off-by: Frank Plowman <post@frankplowman.com>

    • [DH] libavcodec/vvc/dec.c