Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (63)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

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

  • 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 (9787)

  • Revision 78bf1029f1 : Remove duplicate or unused code in common/invtrans.c. Also make some minor styl

    13 octobre 2012, par Ronald S. Bultje

    Changed Paths : Modify /vp8/common/invtrans.c Modify /vp8/common/invtrans.h Remove duplicate or unused code in common/invtrans.c. Also make some minor stylistic changes to bring the code closer to the style guide. Change-Id : (...)

  • Revision a93992e725 : Adding get_entropy_context function. Moving common code from encoder and decode

    27 août 2013, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/common/vp9_blockd.h


     Modify /vp9/common/vp9_entropy.h


     Modify /vp9/decoder/vp9_detokenize.c


     Modify /vp9/encoder/vp9_tokenize.c



    Adding get_entropy_context function.

    Moving common code from encoder and decoder to this function.

    Change-Id : I60fa643fb1ddf7ebbff5e83b6c4710137b0195ef

  • ffbuild/common : Fix CPPFLAGS applied for compiling C++ files

    12 mai 2022, par Andreas Rheinhardt
    ffbuild/common : Fix CPPFLAGS applied for compiling C++ files
    

    Currently, $(CPPFLAGS) and $(CFLAGS) are prepended to CXXFLAGS
    (the flags for compiling C++) like this :
    CXXFLAGS := $(CPPFLAGS) $(CFLAGS) $(CXXFLAGS)
    Using " :=" creates a simply expanded variable, i.e. the values
    of the variable at the time of assignment are used and later
    modifications to them are ignored (using a recursively expanding
    variable (i.e. "=" instead of " :=") is not really possible here,
    as there would be an infinite loop when evaluating CXXFLAGS).

    Yet we perform later additions to CPPFLAGS : HAVE_AV_CONFIG_H and
    BUILDING_libfoo are defined. These do not reach C++ compilations.

    To fix this a trick is employed to prepend to a recursively
    expanded variable while keeping it recursively expanded.

    There are two practical consequences of this : C++ files now no longer
    include the version.h header, but only the version_major.h header
    of their library, saving some recompilations. Furthermore, they
    now get some optimized math functions (namely the ones from
    lavu/intmath.h instead of the ones from lavu/common.h).
    (av_parity() is the only one for which it makes a difference.)

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

    • [DH] ffbuild/common.mak