Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (22)

  • 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

  • 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

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (7044)

  • doc/muxers.texi : Don't use confusing variable name

    12 avril 2024, par Andreas Rheinhardt
    doc/muxers.texi : Don't use confusing variable name
    

    reserve_index_space is a size, not an index.
    Also refer to the variable in the description.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] doc/muxers.texi
  • avcodec/vp9 : Replace atomic_store() by atomic_init()

    17 septembre 2023, par Andreas Rheinhardt
    avcodec/vp9 : Replace atomic_store() by atomic_init()
    

    This part of the code is not slice-threaded and they are
    semantically an initialization, so use atomic_init()
    instead of the potentially expensive atomic_store()
    (which uses sequentially consistent memory ordering).

    Also remove the initial initialization directly after
    allocating this array.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/vp9.c
  • avcodec/svq1enc : Don't add to NULL

    17 mars, par Andreas Rheinhardt
    avcodec/svq1enc : Don't add to NULL
    

    It is undefined behavior. Pass a dummy buffer instead.
    Fixes "runtime error : applying non-zero offset 1024 to null pointer".
    affected the SVQ1 vsynth FATE tests.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/svq1enc.c