Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (40)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (8797)

  • hwcontext_vulkan : hide Linux-only header after 571756bf2fe2

    15 juillet 2023, par Jan Beich
    hwcontext_vulkan : hide Linux-only header after 571756bf2fe2
    

    major/minor are in <sys/types.h> on BSDs and <sys/mkdev.h> on Solaris-like.

    libavutil/hwcontext_vulkan.c:55:10 : fatal error : 'sys/sysmacros.h' file not found
    #include <sys/sysmacros.h>

    • [DH] libavutil/hwcontext_vulkan.c
  • How to export ffurl_register_protocol() ?

    18 juin 2015, par user1764961

    I have some legacy code that requires ffurl_register_protocol() exported. I found this patch :

    diff --git a/libavformat/Makefile b/libavformat/Makefile
    index 0d6cb91..802edd7 100644
    --- a/libavformat/Makefile
    +++ b/libavformat/Makefile
    @@ -1,7 +1,7 @@
    NAME = avformat
    FFLIBS = avcodec avutil
    -HEADERS = avformat.h avio.h version.h
    +HEADERS = avformat.h avio.h url.h version.h
    OBJS = allformats.o         \
           cutils.o             \
    diff --git a/libavformat/libavformat.v b/libavformat/libavformat.v
    index 6f11d60..e605135 100644
    --- a/libavformat/libavformat.v
    +++ b/libavformat/libavformat.v
    @@ -1,4 +1,5 @@
    LIBAVFORMAT_$MAJOR {
                    global: av*;
    +                ffurl_register_protocol;
              local: *;
    };

    But, it doesn’t help. Any idea how to do it ?

  • vulkan_decode : add STORAGE flag to output images

    18 avril, par Lynne
    vulkan_decode : add STORAGE flag to output images
    

    In filtering, and SDR encoding, we use storage images.
    This fixes using Vulkan filters on Intel.
    Tested not to break anything on the three major vendors.

    • [DH] libavcodec/vulkan_decode.c