Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (57)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Submit bugs and patches

    13 avril 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 (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (3310)

  • tests/checkasm/sw_rgb : Be more strict about clobbering MMX state

    5 juin 2024, par Andreas Rheinhardt
    tests/checkasm/sw_rgb : Be more strict about clobbering MMX state
    

    The MMXEXT versions of the rgb2rgb functions tested here
    always emit emms on their own. Therefore one can use
    a stricter test to ensure that it stays that way.

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

    • [DH] tests/checkasm/sw_rgb.c
  • avcodec/hevcdec : Avoid allocation of common CABAC state

    22 juillet 2022, par Andreas Rheinhardt
    avcodec/hevcdec : Avoid allocation of common CABAC state
    

    It used to be allocated separately, so that the pointer to it
    is copied to all HEVCContexts, so that all slice-threads
    use the same. This is completely unnecessary now that there
    is only one HEVCContext any more. There is just one minor
    complication left : The slice-threads only get a pointer to
    const HEVCContext, but they need to modify the common CABAC
    state. Fix this by adding a pointer to the common CABAC state
    to HEVCLocalContext and document why it exists.

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

    • [DH] libavcodec/hevc_cabac.c
    • [DH] libavcodec/hevcdec.c
    • [DH] libavcodec/hevcdec.h
  • avcodec/adpcm_zork : reset state in flush callback

    23 mars 2021, par Zane van Iperen
    avcodec/adpcm_zork : reset state in flush callback
    

    Signed-off-by : Zane van Iperen <zane@zanevaniperen.com>

    • [DH] libavcodec/adpcm.c