Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

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

Autres articles (83)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (8161)

  • Revision 10aa23f751 : ctrl_get_reference does not need user_priv. The relationship of the user privat

    3 juillet 2014, par hkuang

    Changed Paths :
     Modify /test/user_priv_test.cc


     Modify /vp9/vp9_dx_iface.c



    ctrl_get_reference does not need user_priv.

    The relationship of the user private data at runtime
    is not preserved from decode() to this call which may
    occur at an unknown point in the future

    Change-Id : Ia7eb25365c805147614574c3af87aedbe0305fc6

  • doc/developer : Document relationship between git accounts and MAINTAINERS

    16 novembre 2024, par Michael Niedermayer
    doc/developer : Document relationship between git accounts and MAINTAINERS
    

    This should have been documented long ago and i thought it was

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/developer.texi
  • What's the relationship between AVPacket in FFMpeg and H.264 NAL Uint ?

    8 juin 2016, par Ello

    I use FFMpeg’s api to encode images to H.264 stream, the code is like this encode code. When I called the function avcodec_encode_video2 I got one AVPacket’s data, then I saved it to file. I use several images to get several files for test.
    Based on the startcode 00 00 00 01 or 00 00 01, I found that the 1st and 2nd files’ data both contain several H.264 NAL Uints. But start from the third file, I can’t found the startcode. Like followed image.
    Picture

    I feel confused. Base on the FFMpeg’s code I think one AVPacket’s data should contain at least one NAL Uint, but the result is unexpected. Is that means one NAL Uint may be divided to two AVPackets’ data ? What’s the relationship between AVPacket and H.264 NAL Uint ?