Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (51)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

Sur d’autres sites (6341)

  • lavc/libkvazaar : fix incompatible pointer type.

    20 août 2018, par Jun Zhao
    lavc/libkvazaar : fix incompatible pointer type.
    

    fix the waring : libavcodec/libkvazaar.c:210:27 : warning : passing argument 3 of ‘av_image_copy’ from incompatible pointer type [-Wincompatible-pointer-types]
    frame->data, frame->linesize,

    In file included from libavcodec/libkvazaar.c:31:0 :
    ./libavutil/imgutils.h:119:6 : note : expected ‘const uint8_t ** aka const unsigned char **’ but argument is of type ‘uint8_t * const* aka unsigned char * const*
    void av_image_copy(uint8_t *dst_data[4], int dst_linesizes[4],

    Signed-off-by : Jun Zhao <mypopydev@gmail.com>

    • [DH] libavcodec/libkvazaar.c
  • avformat/hls : Remove redundant resetting of pointer

    19 mai 2020, par Andreas Rheinhardt
    avformat/hls : Remove redundant resetting of pointer
    

    ff_id3v2_free_extra_meta() takes a ID3V2ExtraMeta ** so that it can
    already reset the pointer.

    Reviewed-by : Jun Zhao <mypopy@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/hls.c
  • tcp : Explicitly convert a pointer to a boolean integer

    9 septembre 2013, par Martin Storsjö
    tcp : Explicitly convert a pointer to a boolean integer
    

    This fixes warnings about making integers from pointers without
    a cast, and avoids the theoretical case where the lower 32 bits of
    the pointer would all be zero where the implicit cast wouldn’t give
    the right result.

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

    • [DH] libavformat/tcp.c