Recherche avancée

Médias (91)

Autres articles (112)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (11226)

  • Bump after 7.0 branch point

    26 mars 2024, par Michael Niedermayer
    Bump after 7.0 branch point
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/version.h
    • [DH] libavdevice/version.h
    • [DH] libavfilter/version.h
    • [DH] libavformat/version.h
    • [DH] libavutil/version.h
    • [DH] libpostproc/version.h
    • [DH] libswresample/version.h
    • [DH] libswscale/version.h
  • avcodec/av1dec : add an option to select an operating point

    15 novembre 2020, par James Almer
    avcodec/av1dec : add an option to select an operating point
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] doc/decoders.texi
    • [DH] libavcodec/av1dec.c
    • [DH] libavcodec/av1dec.h
  • avcodec/aacdec_fixed : Move fixed-point sinewin tables to its only user

    30 décembre 2020, par Andreas Rheinhardt
    avcodec/aacdec_fixed : Move fixed-point sinewin tables to its only user
    

    The fixed-point AAC decoder is the only user of the fixed-point sinewin
    tables from sinewin ; and it only uses a few of them (about 10% when
    counting by size). This means that guarding initializing these tables by
    an AVOnce (as done in 3719122065863f701026632f610175980d42b05a) is
    unnecessary for them. Furthermore the array of pointers to the
    individual arrays is also unneeded.

    Therefore this commit moves these tables directly into aacdec_fixed.c ;
    this is done by ridding the original sinewin.h and sinewin_tablegen.h
    headers completely of any fixed-point code at the cost of a bit of
    duplicated code (the alternative is an ugly ifdef-mess).

    This saves about 58KB from the binary when using hardcoded tables (as
    these tables are hardcoded in this scenario) ; when not using hardcoded
    tables, most of these savings only affect the .bss segment, but the rest
    (< 1KB) contains relocations (i.e. savings in .data.rel.ro).

    Reviewed-by : Lynne <dev@lynne.ee>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] configure
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/aac_defines.h
    • [DH] libavcodec/aacdec_fixed.c
    • [DH] libavcodec/aacdec_template.c
    • [DH] libavcodec/sinewin.c
    • [DH] libavcodec/sinewin.h
    • [DH] libavcodec/sinewin_fixed.c
    • [DH] libavcodec/sinewin_fixed_tablegen.c
    • [DH] libavcodec/sinewin_fixed_tablegen.h
    • [DH] libavcodec/sinewin_tablegen.c
    • [DH] libavcodec/sinewin_tablegen.h
    • [DH] libavcodec/sinewin_tablegen_template.c