Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (68)

  • 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" (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (10391)

  • av_freep SIGSEGV in ffmpeg

    13 mars 2020, par Daniel

    In ffmpeg there is a function for freeing resources :

    void av_freep(void *arg)
    {
       void *val;

       memcpy(&val, arg, sizeof(val));
       memcpy(arg, &(void *){ NULL }, sizeof(val));
       av_free(val);
    }

    Now I’m getting a SIGSEGV in the first memcpy line.

    arg seems a valid pointer (at least it is not NULL).

    I’m calling this as av_freep(&mOutputFormatCtx->pb);

    This pb was created by avio_alloc_context, however I’m calling av_freep after an RTSP stream source became invalid (camera turned off).

    How can I avoid this SIGSEGV ?
    Although arg’s address seems good, debugger tells me : "Cannot access memory at address 0xabcdef" if I try watching mOutputFormatCtx->pb.

  • Revision 74ded4863e : Enable conditional skip path in rd_pick_intra_sby_mode These speed-up features

    4 décembre 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/encoder/vp9_speed_features.c



    Enable conditional skip path in rd_pick_intra_sby_mode

    These speed-up features for key frame coding are only turned on
    in the settings of hybrid non-RD and RD mode decision. It provides
    about 20% speed-up to the hybrid key frame coding at the expense
    of certain compression performance loss. For vidyo1, the key frame
    coding statistics are changed
    9838F, 35.020 dB, 61677 us -> 9920F, 34.834 dB, 47556 us

    Overall rtc set compression performance is down by -0.257%.

    Change-Id : I0025447fda26bb7855e982955642b5f55d71b51f

  • hwcontext_vulkan : forward debug_mode to check_extensions() for devices

    22 septembre 2024, par Lynne
    hwcontext_vulkan : forward debug_mode to check_extensions() for devices
    

    This allows disabling of certain extensions when debug mode is turned on.

    • [DH] libavutil/hwcontext_vulkan.c