Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (79)

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

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Liste des distributions compatibles

    26 avril 2011, par

    Le tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)

Sur d’autres sites (8787)

  • libavfilter/signature_lookup : fix jaccard distance

    2 juin 2024, par Gerion Entrup
    libavfilter/signature_lookup : fix jaccard distance
    

    Actually, the jaccard distance is defined as D = 1 - intersect / union.
    Additionally, the distance value is compared against a constant that
    must be between 0 and 1, which is not the case here. Both facts together
    has led to the fact, that the function always returned a matching course
    signature. To leave the constant intact and to avoid floating point
    computation, this commit multiplies with 1 << 16 making the constant
    effectively 9000 / (1<<16) = 0.14.

    Reported-by : Sachin Tilloo <sachin.tilloo@gmail.com>
    Reviewed-by : Sachin Tilloo <sachin.tilloo@gmail.com>
    Tested-by : Sachin Tilloo <sachin.tilloo@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/signature_lookup.c
  • avcodec/ac3enc_template : Don't free uninitialized pointers on error

    14 septembre 2020, par Andreas Rheinhardt
    avcodec/ac3enc_template : Don't free uninitialized pointers on error
    

    The ac3 encoders (fixed- and floating-point AC-3 as well as the EAC-3
    encoder) all allocate an array whose elements are pointers to other
    buffers. The array is not zeroed initially so that if an allocation of
    one of the subbuffers fails, the other pointers are uninitialized.
    This causes problems when cleaning, so zero the array initially.

    (Only the fixed-point AC-3 encoder was affected by this, because
    the other two don't clean up at all in case of errors during init.)

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

    • [DH] libavcodec/ac3enc_template.c
  • lpc : add ff_lpc_calc_ref_coefs_f() function

    1er septembre 2015, par Rostislav Pehlivanov
    lpc : add ff_lpc_calc_ref_coefs_f() function
    

    This commit adds a function to get the reflection coefficients on
    floating point samples. It’s functionally identical to
    ff_lpc_calc_ref_coefs() except it works on float samples and will
    return the global prediction gain. The Welch window implementation
    which is more optimized works only on int32_t samples so a slower
    generic expression was used.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/lpc.c
    • [DH] libavcodec/lpc.h