Recherche avancée

Médias (0)

Mot : - Tags -/organisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (68)

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

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

  • avcodec/diracdec : avoid signed integer overflow in global mv

    21 mars 2022, par Michael Niedermayer
    avcodec/diracdec : avoid signed integer overflow in global mv
    

    Fixes : signed integer overflow : -128275513086 * -76056576 cannot be represented in type 'long'
    Fixes : 45818/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DIRAC_fuzzer-5129799149944832

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/diracdec.c
  • libavcodec : Set hidden visibility on global symbols accessed from AArch64 assembly

    11 juillet 2022, par Martin Storsjö
    libavcodec : Set hidden visibility on global symbols accessed from AArch64 assembly
    

    The AArch64 assembly accesses those symbols directly, without
    indirection via e.g. the GOT on ELF. In order for this not to
    require text relocations, those symbols need to be resolved fully
    at link time, i.e. those symbols can't be interposable.

    Normally, so far, this is achieved when linking shared libraries
    in two ways ; we have a version script (libavcodec/libavcodec.v) which
    marks all symbols that don't start with av* as local. Additionally,
    we try to add -Wl,-Bsymbolic to the linker options if supported,
    making sure that such symbol references are resolved fully at link
    time, instead of making them interposable.

    When the libavcodec static library is linked into another shared
    library, there's no guarantee that it uses similar options (even though
    that would be favourable), which would end up requiring text relocations
    in the AArch64 assembly.

    Explicitly mark the symbols that are accessed from AArch64 assembly
    as hidden, so that they are resolved fully at link time even without
    the version script and -Wl,-Bsymbolic.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/aacsbrdata.h
    • [DH] libavcodec/fft.h
    • [DH] libavcodec/vp9dsp.h
    • [DH] libavutil/attributes_internal.h
  • fftools/ffmpeg : remove the output_streams global

    14 octobre 2022, par Anton Khirnov
    fftools/ffmpeg : remove the output_streams global
    

    Replace it with an array of streams in each OutputFile. This is a more
    accurate reflection of the actual relationship between OutputStream and
    OutputFile. This is easier to handle and will allow further
    simplifications in future commits.

    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_filter.c
    • [DH] fftools/ffmpeg_mux.c
    • [DH] fftools/ffmpeg_mux.h
    • [DH] fftools/ffmpeg_mux_init.c