Recherche avancée

Médias (91)

Autres articles (41)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (7319)

  • avcodec/ac3enc : Deduplicate allocating buffers

    7 avril 2024, par Andreas Rheinhardt
    avcodec/ac3enc : Deduplicate allocating buffers
    

    These allocations only depend upon sizeof(SampleType)
    (and this size is actually the same for both the fixed-point
    and the floating-point encoders for most (all supported ?)
    systems).

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

    • [DH] libavcodec/ac3enc.c
    • [DH] libavcodec/ac3enc.h
    • [DH] libavcodec/ac3enc_fixed.c
    • [DH] libavcodec/ac3enc_float.c
    • [DH] libavcodec/ac3enc_template.c
  • lavc/audiodsp : RISC-V F vector_clipf

    26 septembre 2022, par Rémi Denis-Courmont
    lavc/audiodsp : RISC-V F vector_clipf
    

    RV64G supports MIN & MAX instructions natively only on floating point
    registers, not general purpose ones. The later would require the Zbb
    extension. Due to that, it is actually faster to perform the clipping
    "properly" in FPU.

    Benchmarks on SiFive U74-MC (courtesy of Shanghai StarFive Tech) :
    audiodsp.vector_clipf_c : 29551.5
    audiodsp.vector_clipf_rvf : 17871.0

    Also tried unrolling with 2 or 8 elements but it gets worse either way.

    • [DH] libavcodec/audiodsp.c
    • [DH] libavcodec/audiodsp.h
    • [DH] libavcodec/riscv/Makefile
    • [DH] libavcodec/riscv/audiodsp_init.c
    • [DH] libavcodec/riscv/audiodsp_rvf.S
  • x86 : checkasm : check for or handle missing cleanup after MMX instructions

    11 décembre 2015, par Janne Grunau
    x86 : checkasm : check for or handle missing cleanup after MMX instructions
    

    Not every asm routine is expected clear the MMX state after returning.
    It is however a requisite for testing floating point code in checkasm.
    Annotate functions requiring cleanup with declare_func_emms() and issue
    emms after the call. The remaining functions are checked for having a
    cleared MMX state after return.

    • [DBH] tests/checkasm/checkasm.h
    • [DBH] tests/checkasm/h264pred.c
    • [DBH] tests/checkasm/h264qpel.c
    • [DBH] tests/checkasm/x86/checkasm.asm