Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (54)

  • 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

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8668)

  • avcodec/utils : Remove always-true check

    24 septembre 2020, par Andreas Rheinhardt
    avcodec/utils : Remove always-true check
    

    The first thing avcodec_open2() allocates is the AVCodecInternal. If
    allocating it fails, a jump to end occurs ; but if an error happens after
    its allocation, a jump to free_and_end happens which frees all
    allocations performed so far and then jumps to end. Yet free_and_end
    contained a check for AVCodecInternal (after having already dereferenced
    it to check whether ff_thread_free() needs to be called) which is of
    course always true. So remove it.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/utils.c
  • avcodec/opusdec : Remove always-true check

    26 décembre 2020, par Andreas Rheinhardt
    avcodec/opusdec : Remove always-true check
    

    The celt_delay AVAudioFifo is always allocated during init, so checking
    for its existence in .flush is unnecessary.

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

    • [DH] libavcodec/opusdec.c
  • avcodec/options : Remove always-true check

    16 mars 2021, par Andreas Rheinhardt
    avcodec/options : Remove always-true check
    

    Added in dc51a72ba45fbefb9f1c6c3ca5a5b2388d69b2da, yet even back then
    the check was always true as the AVCodecContext has already been memset
    to zero before that.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/options.c