Recherche avancée

Médias (1)

Mot : - Tags -/net art

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 ;

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (12970)

  • avcodec/hevc_ps : fix the problem of memcmp losing effectiveness

    29 mars 2024, par Tong Wu
    avcodec/hevc_ps : fix the problem of memcmp losing effectiveness
    

    HEVCHdrParams* receives a pointer which points to a dynamically
    allocated memory block. It causes the memcmp always returning 1.
    Add a function to do the comparision. A condition is also added to
    avoid malloc(0).

    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Tong Wu <tong1.wu@intel.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/hevc_ps.c
    • [DH] libavcodec/hevc_ps.h
  • avcodec/d3d12va_vc1 : add support for D3D12_VIDEO_DECODE_PROFILE_VC1_D2010 guid.

    31 janvier 2024, par Aleksoid
    avcodec/d3d12va_vc1 : add support for D3D12_VIDEO_DECODE_PROFILE_VC1_D2010 guid.
    

    The VC1_D2010 profile, also known as VC1_VLD2010, has the same functionality
    and specification as the VC1_D profile. Support for this profile serves only
    as a positive indication that the accelerator has been designed with awareness
    of the modifications specified in the August 2010 version of this specification.

    Hardware accelerator drivers that expose support for this profile must not
    also expose the previously specified VC1_D GUID, unless the accelerator works
    properly with existing software decoders that use VC1_D and that do not incorporate
    the corrections added to the August 2010 version of this specification.

    As a result, we could give VC1_VLD2010 a higher priority and initialize
    it first.

    Signed-off-by : Aleksoid <Aleksoid1978@mail.ru>
    Signed-off-by : Tong Wu <tong1.wu@intel.com>

    • [DH] libavcodec/d3d12va_vc1.c
  • avcodec/d3d12va_decode : check existance before assigning a new index

    11 janvier 2024, par Tong Wu
    avcodec/d3d12va_decode : check existance before assigning a new index
    

    Fixes #10759.

    It can happen in H.264, MPEG2, VC1 that the current frame resource
    memory is already in ref_resource. For example, for a interlaced frame,
    the same curr memory is passed twice. For the second time it could possibly
    reference itself. When this happens the curr is already given an index and
    in ref_resources. When the reference frame index is required, we should check
    the existance in the ref_resources first before assigning a new index for it.

    Signed-off-by : Tong Wu <tong1.wu@intel.com>

    • [DH] libavcodec/d3d12va_decode.c