Recherche avancée

Médias (91)

Autres articles (40)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (6300)

  • avutil/hwcontext_dxva2 : Don't improperly free IDirect3DSurface9 objects

    16 mai 2017, par Aaron Levinson
    avutil/hwcontext_dxva2 : Don't improperly free IDirect3DSurface9 objects
    

    Add dxva2_pool_release_dummy() and use it in call to
    av_buffer_create() in dxva2_pool_alloc().

    Prior to this change, av_buffer_create() was called with NULL for the
    third argument, which indicates that av_buffer_default_free() should
    be used to free the buffer's data. Eventually, it gets to
    buffer_pool_free() and calls buf->free() on a surface object (which is
    av_buffer_default_free()).

    This can result in a crash when the debug version of the C-runtime is
    used on Windows. While it doesn't appear to result in a crash when
    the release version of the C-runtime is used on Windows, it likely
    results in memory corruption, since av_free() is being called on
    memory that was allocated using
    IDirectXVideoAccelerationService::CreateSurface().

    Signed-off-by : Aaron Levinson <alevinsn@aracnet.com>
    Reviewed-by : wm4 <nfxjfg@googlemail.com>
    Reviewed-by : Steven Liu <lingjiujianke@gmail.com>
    Reviewed-by : Mark Thompson <sw@jkqxz.net>

    • [DH] libavutil/hwcontext_dxva2.c
  • avcodec/ljpegenc : Don't free buffer known to be NULL

    15 septembre 2020, par Andreas Rheinhardt
    avcodec/ljpegenc : Don't free buffer known to be NULL
    

    The lossless JPEG encoder allocates one buffer in its init function
    and freeing said buffer is the only thing done in its close function.
    Despite this the init function called the close function if allocating
    said buffer fails, although there is nothing to free in this case.
    This commit stops doing this.

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

    • [DH] libavcodec/ljpegenc.c
  • avcodec/mfenc : fix double-free on init failure

    21 janvier 2023, par Cameron Gutman
    avcodec/mfenc : fix double-free on init failure
    

    mfenc sets FF_CODEC_CAP_INIT_CLEANUP, so calling mf_close() on
    failure inside mf_init() results in a double-free.

    Signed-off-by : Cameron Gutman <aicommander@gmail.com>
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/mfenc.c