Recherche avancée

Médias (0)

Mot : - Tags -/xmp

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

Autres articles (105)

Sur d’autres sites (14376)

  • h264 : move initialising the explicit pred weight table for MBAFF

    15 avril 2016, par Anton Khirnov
    h264 : move initialising the explicit pred weight table for MBAFF
    

    Currently it’s done in the code that initialises the ref list for
    MBAFF, which is not a logical place for it. Move it to the function that
    parses the pred table from the bitstream, which is analogous to what is
    done for the implicit weight table as well.

    • [DBH] libavcodec/h264_parse.c
    • [DBH] libavcodec/h264_refs.c
  • Révision 23678 : Bugfix dans recup_date() quand on lui passe une chaîne du type 2017-07

    20 juillet 2017, par brunobergot@gmail.com

    Sous PHP 5.5.38-1 le test `substr($jour, 0, 1) == ’0’` renvoie true quand `$jour = ’’` ce qui fait renvoyer un valeur false pour le jour au lieu d’une chaîne vide.
    r23409 ayant modifié affdate_base(), ce cas ne passait plus par `strtotime($numdate)` mais par `mktime($heures, $minutes, $secondes, $mois, $jour, $annee)` qui génère un timestamp décalé d’un jour en arrière.
    On obtenait donc 06 au lieu de 07 pour `[(#VAL2017-07|affdatem)]`

    pfiou :p

  • h264 : move initialising the implicit pred weight table for MBAFF

    15 avril 2016, par Anton Khirnov
    h264 : move initialising the implicit pred weight table for MBAFF
    

    Do it where the normal implicit table is initialised.

    • [DBH] libavcodec/h264_slice.c