Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (88)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (8348)

  • Revision 4f660cc018 : Modified mode skip functionality. A previous speed feature skipped modes not us

    5 septembre 2013, par Paul Wilkins

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_onyx_int.h


     Modify /vp9/encoder/vp9_rdopt.c



    Modified mode skip functionality.

    A previous speed feature skipped modes not used in earlier
    partitions but this not longer worked as intended following
    changes to the partition coding order and in conjunction
    with some other speed features (Especially speed 2 and above).

    This modified mode skip feature sets a mask after the first X
    modes have been tested in each partition depending on the
    reference frame of the current best case.

    This patch also makes some changes to the order modes are
    tested to fit better with this skip functionality.

    Initial testing suggests speed and rd hit count improvements
    of up to 20% at speed 1. Quality results. (derf -1.9%, std hd +0.23%).

    Change-Id : Idd8efa656cbc0c28f06d09690984c1f18b1115e1

  • x86inc : remove misaligned cpu flag

    11 septembre 2013, par Henrik Gramner
    x86inc : remove misaligned cpu flag
    

    Prevents a crash if the misaligned exception mask bit is
    cleared for some reason.

    Misaligned SSE functions are only used on AMD Phenom CPUs
    and the benefit is miniscule. They also require modifying
    the MXCSR control register and by removing those functions
    we can get rid of that complexity altogether.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DBH] libavutil/x86/x86inc.asm
  • How to set "ch_layout" in ffmpeg 6.1 ?

    9 juillet 2024, par Steven porite

    In 6.1 Ffmpeg, it use "ch_layout" to replace the "channel_layout" and "number". The "ch_layout" is "AVChannelLayout *" type. This type is defined in channel_layout.h, some kind of "ch_layout" is defined in this file too.&#xA;If I want to use the "av_dict_set_int()" set the "ch_layout" to "AV_CHANNEL_LAYOUT_STEREO", what should I fill to the "value" ?

    &#xA;

    /**&#xA; * Macro to define native channel layouts&#xA; *&#xA; * @note This doesn&#x27;t use designated initializers for compatibility with C&#x2B;&#x2B; 17 and older.&#xA; */&#xA;#define AV_CHANNEL_LAYOUT_MASK(nb, m) \&#xA;    { /* .order */ AV_CHANNEL_ORDER_NATIVE, \&#xA;      /* .nb_channels */  (nb), \&#xA;      /* .u.mask */ { m }, \&#xA;      /* .opaque */ NULL }&#xA;&#xA;/**&#xA; * @name Common pre-defined channel layouts&#xA; * @{&#xA; */&#xA;#define AV_CHANNEL_LAYOUT_MONO              AV_CHANNEL_LAYOUT_MASK(1,  AV_CH_LAYOUT_MONO)&#xA;#define AV_CHANNEL_LAYOUT_STEREO            AV_CHANNEL_LAYOUT_MASK(2,  AV_CH_LAYOUT_STEREO)&#xA;#define AV_CHANNEL_LAYOUT_2POINT1           AV_CHANNEL_LAYOUT_MASK(3,  AV_CH_LAYOUT_2POINT1)&#xA;#define AV_CHANNEL_LAYOUT_2_1               AV_CHANNEL_LAYOUT_MASK(3,  AV_CH_LAYOUT_2_1)&#xA;

    &#xA;

    /**&#xA; * Convenience wrapper for av_dict_set() that converts the value to a string&#xA; * and stores it.&#xA; *&#xA; * Note: If ::AV_DICT_DONT_STRDUP_KEY is set, key will be freed on error.&#xA; */&#xA;int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, int flags);&#xA;

    &#xA;