Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (103)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (9912)

  • 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(&pkt, 1000);

       av_init_packet(&pkt);

       av_free_packet(&pkt);
    }

    Is something wrong in here ?

  • lavc : add avcodec_free_context().

    5 avril 2014, par Anton Khirnov
    lavc : add avcodec_free_context().
    

    Right now, the caller has to manually manage some allocated
    AVCodecContext fields, like extradata or subtitle_header. This is
    fragile and prone to leaks, especially if we want to add more such
    fields in the future.

    The only reason for this behaviour is so that the AVStream codec context
    can be reused for decoding. Such reuse is discouraged anyway, so this
    commit is the first step to deprecating it.

    • [DBH] doc/APIchanges
    • [DBH] libavcodec/avcodec.h
    • [DBH] libavcodec/options.c
    • [DBH] libavcodec/version.h
  • Merge commit ’abb5e37f64c48bba8bd0fde2bada0f7544defa24’

    10 janvier 2014, par Michael Niedermayer
    Merge commit ’abb5e37f64c48bba8bd0fde2bada0f7544defa24’
    

    * commit ’abb5e37f64c48bba8bd0fde2bada0f7544defa24’ :
    avfilter : fix leaks on error in ff_filter_frame

    Conflicts :
    libavfilter/avfilter.c

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

    • [DH] libavfilter/avfilter.c