Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (57)

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

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (4799)

  • x86inc : Clear __SECT__

    26 mai 2015, par Timothy Gu
    x86inc : Clear __SECT__
    

    Silences warning(s) like :

    libavcodec/x86/fft.asm:93 : warning : section flags ignored on
    section redeclaration

    The cause of this warning is that because `struc` and `endstruc`
    attempts to revert to the previous section state [1].

    The section state is stored in the macro __SECT__, defined by
    x86inc.asm to be `.note.GNU-stack ...`, through the `SECTION`
    directive [2].

    Thus, the `.note.GNU-stack` section is defined twice
    (once in x86inc.asm, once during `endstruc`), causing the warning.

    That is the first part of the commit : using the primitive `[section]` format
    for .note.GNU-stack etc., which does not update `__SECT__` [2].

    That fixes only half of the problem. Even without any `SECTION` directives,
    `__SECT__` is predefined as `.text`, which conflicting with the later
    `SECTION_TEXT` (which expands to `.text align=16`).

    [1] : http://www.nasm.us/doc/nasmdoc6.html#section-6.4
    [2] : http://www.nasm.us/doc/nasmdoc6.html#section-6.3

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavutil/x86/x86inc.asm
  • x86inc : Clear __SECT__

    26 mai 2015, par Timothy Gu
    x86inc : Clear __SECT__
    

    This commit silences warning(s) like :

    libavcodec/x86/fft.asm:93 : warning : section flags ignored on section
    redeclaration

    The cause of this warning is that because `struc` and `endstruc` attempts to
    revert to the previous section state [1]. The section state is stored in the
    macro __SECT__, defined by x86inc.asm to be `.note.GNU-stack ...`, through the
    `SECTION` directive [2]. Thus, the `.note.GNU-stack` section is defined twice
    (once in x86inc.asm, once during `endstruc`), causing the warning.

    That is the first part of the commit : using the primitive `[section]` format
    for .note.GNU-stack etc., which does not update `__SECT__` [2].

    That fixes only half of the problem. Even without any `SECTION` directives,
    `__SECT__` is predefined as `.text`, which conflicting with the later
    `SECTION_TEXT` (which expands to `.text align=16`).

    [1] : http://www.nasm.us/doc/nasmdoc6.html#section-6.4
    [2] : http://www.nasm.us/doc/nasmdoc6.html#section-6.3

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

    • [DH] libavutil/x86/x86inc.asm
  • dca_parser : Extend DTS core sync word and fix existing check

    29 avril 2015, par foo86
    dca_parser : Extend DTS core sync word and fix existing check
    

    The previous version checked for 14-bit streams and did not properly
    work across buffer boundaries.

    Use the 64-bit parser state to make extended sync word detection work
    across buffer boundary and check the extended sync word for 16-bit LE
    and BE core streams to reduce probability of alias sync detection.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DH] libavcodec/dca_parser.c