Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (97)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

Sur d’autres sites (13177)

  • avcodec/get_bits : Avoid reading multiple times in get_bits_long

    22 juin 2022, par Andreas Rheinhardt
    avcodec/get_bits : Avoid reading multiple times in get_bits_long
    

    Due to non-byte-alignment a read of 32 bits guarantees only
    25 usable bits ; therefore get_bits_long() (which is used to
    potentially read more than 25 bits) performs two reads in case
    it needs to read more than 25 bits and combines the result.

    Yet this is not necessary : One can just read 64 bits at a time
    to get 32 usable bits (57 would be possible). This commit does so.

    This reduced the size of .text by 30144B for GCC 11.4 and 5648B
    for Clang 14 (both with -O3).

    (get_bits_long() is a building block of show_bits_long()
    and get_ue_golomb_long(), so this patch affects these, too.)

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

    • [DH] libavcodec/get_bits.h
  • Revision 9596a4cc54 : vpxdec : add —loops option Allows vpxdec to operate multiple times on the same

    13 juin 2013, par John Koleszar

    Changed Paths :
     Modify /vpxdec.c



    vpxdec : add —loops option

    Allows vpxdec to operate multiple times on the same input. Mostly
    useful for debugging/development.

    Change-Id : Icf25ece22e387052eade4438971eee5ff4f798ba

  • avformat/utils : Don't initialize AVStreamInternal.info multiple times

    26 août 2021, par Andreas Rheinhardt
    avformat/utils : Don't initialize AVStreamInternal.info multiple times
    

    It has been allocated and initialized in avformat_find_stream_info()
    until fd0368e7ca35e2feaf7960564e61a76655c4d1f6 when the structure
    was moved to AVStreamInternal and its allocation to avformat_new_stream.
    In order to also initialize the struct for new streams that only get
    created during avformat_find_stream_info() said the initialization has
    been added to avformat_new_stream() later. Due to the Libav-FFmpeg split
    this has been done twice : In 4cda8aa1c5bc58f8a7f53a21a19b03e7379bbcdc
    and in 30c26c2442e4e44ac5a763c23c4b0fdd9921a7f5. The initialization in
    avformat_find_stream_info() has not been removed at all despite being
    redundant. This commit removes it and the duplicated initialization in
    avformat_new_stream().

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

    • [DH] libavformat/utils.c