Recherche avancée

Médias (0)

Mot : - Tags -/latitude

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

Autres articles (100)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (10058)

  • Merge commit ’5a2645cafeca1c2207ac55cc831c3349572a82ed’

    12 mars 2015, par Michael Niedermayer
    Merge commit ’5a2645cafeca1c2207ac55cc831c3349572a82ed’
    

    * commit ’5a2645cafeca1c2207ac55cc831c3349572a82ed’ :
    nutdec : Prevent leaks on memory error

    Conflicts :
    libavformat/nutdec.c

    See : 269845db86d994c7d43c3ad6eabd4fde5bb391ea
    Merged-by : Michael Niedermayer <michaelni@gmx.at>

  • Revision 21a0371836 : vpx_temporal_svc_encoder : fix memory leak on success more work would be necessa

    22 mai 2014, par James Zern

    Changed Paths :
     Modify /examples/vpx_temporal_svc_encoder.c



    vpx_temporal_svc_encoder : fix memory leak on success

    more work would be necessary to avoid leaks in all failure cases

    Change-Id : I9c92ae1c34e120b17109bc832b6b2789b909761d

  • How to new & delete AVPacket ?

    22 août 2014, par PatrickSCLin

    I’m working with a FFmpeg project right now, I have to store the data of AVPacket which from av_read_frame, and fill data to new AVPacket for following decoding.

    here is my problem, when I try to new & free an AVPacket, memory leaks
    always happen.

    I just doing a simple testing :

    for(;;)
    {
       AVPacket pkt;

       av_new_packet(&amp;pkt, 1000);

       av_init_packet(&amp;pkt);

       av_free_packet(&amp;pkt);
    }

    Is something wrong in here ?