Recherche avancée

Médias (91)

Autres articles (56)

  • 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

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

Sur d’autres sites (10929)

  • examples/demuxing_decoding : abort decoding when width, height or pix_fmt change

    31 janvier 2015, par Andreas Cadhalpun
    examples/demuxing_decoding : abort decoding when width, height or pix_fmt change
    

    This is necessary, because avcodec_decode_video2 can change
    width, height and/or pixel format of the AVCodecContext. Since
    video_dst_data and video_dst_linesize are not updated by calling
    av_image_alloc again, av_image_copy[_plane] asserts, because the
    destination buffer is too small.

    In this case, creating a useable rawvideo is not possible anyway, since
    it has fixed width/height/pix_fmt.

    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/examples/demuxing_decoding.c
  • qsv : align surface width/height to 16.

    6 mars 2018, par Ruiling Song
    qsv : align surface width/height to 16.
    

    Per MediaSDK documentation, it requires width/height to 16 alignment.
    Without this patch, hwupload pipeline may fail if 16 alignment is
    not met. Although this patch also apply 16 alignment to qsv encoder/decoder,
    it will not bring any side-effect to them as they are already aligned.

    Signed-off-by : Ruiling Song <ruiling.song@intel.com>
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavutil/hwcontext_qsv.c
  • h264_ps : export actual height in MBs as SPS.mb_height

    2 juillet 2016, par Anton Khirnov
    h264_ps : export actual height in MBs as SPS.mb_height
    

    Currently, SPS.mb_height is actually what the spec calls
    PicHeightInMapUnits, which is half the frame height when interlacing is
    allowed. Calling this ’mb_height’ is quite confusing, and there are at
    least two associated bugs where this field is treated as the actual
    frame height - in the h264 parser and in the code computing maximum
    reordering buffer size for a given level.

    Fix those issues (and avoid possible future ones) by exporting the real
    frame height in this field.

    • [DBH] libavcodec/h264_ps.c
    • [DBH] libavcodec/h264_ps.h
    • [DBH] libavcodec/h264_slice.c