Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (55)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (7159)

  • flac : Fix padding for —replay-gain option.

    28 juin 2014, par Erik de Castro Lopo
    flac : Fix padding for —replay-gain option.
    

    Patches ported from the flac 1.2.1 maintenance branch.

    http://flac.cvs.sourceforge.net/viewvc/flac/flac/src/flac/encode.c ?
    r1=1.194&r2=1.194.2.1&pathrev=FLAC_RELEASE_1_2_1_MAINTENANCE_BRANCH

    http://flac.cvs.sourceforge.net/viewvc/flac/flac/src/flac/main.c ?
    r1=1.169&r2=1.169.2.1&pathrev=FLAC_RELEASE_1_2_1_MAINTENANCE_BRANCH

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/flac/encode.c
    • [DH] src/flac/main.c
  • avcodec/hevcdec : Don't allocate redundant HEVCContexts

    30 juin 2022, par Andreas Rheinhardt
    avcodec/hevcdec : Don't allocate redundant HEVCContexts
    

    The HEVC decoder has both HEVCContext and HEVCLocalContext
    structures. The latter is supposed to be the structure
    containing the per-slicethread state.

    Yet up until now that is not how it is handled in practice :
    Each HEVCLocalContext has a unique HEVCContext allocated for it
    and each of these coincides except in exactly one field : The
    corresponding HEVCLocalContext. This makes it possible to pass
    the HEVCContext everywhere where logically a HEVCLocalContext
    should be used. And up until recently, this is how it has been done.

    Yet the preceding patches changed this, making it possible
    to avoid allocating redundant HEVCContexts.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/hevcdec.c
    • [DH] libavcodec/hevcdec.h
  • avformat/mov : Rework the AVIF parser to handle multiple items

    28 juillet 2022, par Vignesh Venkatasubramanian
    avformat/mov : Rework the AVIF parser to handle multiple items
    

    Stores the item ids of all the items found in the file and
    processes the primary item at the end of the meta box. This patch
    does not change any behavior. It sets up the code for parsing
    alpha channel (and possibly images with 'grid') in follow up
    patches.

    Reviewed-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    Signed-off-by : Vignesh Venkatasubramanian <vigneshv@google.com>
    Signed-off-by : James Zern <jzern@google.com>

    • [DH] libavformat/isom.h
    • [DH] libavformat/mov.c