Recherche avancée

Médias (91)

Autres articles (6)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (1803)

  • x86inc : Improve SAVE/LOAD_MM_PERMUTATION macros

    22 avril 2018, par Henrik Gramner
    x86inc : Improve SAVE/LOAD_MM_PERMUTATION macros
    

    Use register numbers instead of copying the full register names. This makes it
    possible to change register widths in the middle of a function and keep the
    mmreg permutations intact which can be useful for code that only needs larger
    vectors for parts of the function in combination with macros etc.

    Also change the LOAD_MM_PERMUTATION macro to use the same default name as the
    SAVE macro. This simplifies swapping from ymm to xmm registers or vice versa :

    SAVE_MM_PERMUTATION
    INIT_XMM <cpuflags>
    LOAD_MM_PERMUTATION

    • [DH] common/x86/x86inc.asm
  • Revision 683b5a3161 : vpx_subpixel_8t_ssse3 : fix reg counts/access fixes build on windows x64 ; previo

    17 septembre 2015, par James Zern

    Changed Paths :
     Modify /vpx_dsp/x86/vpx_subpixel_8t_ssse3.asm



    vpx_subpixel_8t_ssse3 : fix reg counts/access

    fixes build on windows x64 ; previously ’heightq’ i.e., the 64-bit register
    was accessed when only the 32-bit value was needed. given this is from a
    stack variable the upper bits were undefined.

    + bump register/xmm counts ; users of SETUP_LOCAL_VARS touch xmm13 in
    64-bit builds and filter_block1d16_v* uses one extra temp variable

    Change-Id : I9c768c0b2047481d1d3b11c2e16b2f8de6eb0d80

  • x11grab : Check the XQueryPointer return value

    26 septembre 2014, par Antonio Ospite
    x11grab : Check the XQueryPointer return value
    

    The paint_mouse_pointer() code uses XFixes to retrieve the cursor
    coordinates, but XFixes gives no information about which screen the
    pointer is on ; this results in always drawing the cursor on the
    captured screen even if the mouse pointer was on another screen.

    For example, when capturing from screen 1 (i.e. -f x11grab -i ":0.1")
    the cursor was being drawn in the captured image even when the mouse
    pointer was actually on screen 0, which is wrong and visually confusing.

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

    • [DH] libavdevice/x11grab.c