Recherche avancée

Médias (91)

Autres articles (91)

  • 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

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

Sur d’autres sites (13586)

  • What does the left_block_options array represent in the fill_decode_neighbors function of FFmpeg?

    28 décembre 2024, par mike xu

    I am studying the source code of FFmpeg, specifically the fill_decode_neighbors function. I am trying to understand how the decoding process works, especially the usage of the left_block_options array.
Here is the relevant code snippet :

    


    static const uint8_t left_block_options[4][32] = {
        { 0, 1, 2, 3, 7, 10, 8, 11, 3 + 0 * 4, 3 + 1 * 4, 3 + 2 * 4, 3 + 3 * 4, 1 + 4 * 4, 1 + 8 * 4, 1 + 5 * 4, 1 + 9 * 4 },
        { 2, 2, 3, 3, 8, 11, 8, 11, 3 + 2 * 4, 3 + 2 * 4, 3 + 3 * 4, 3 + 3 * 4, 1 + 5 * 4, 1 + 9 * 4, 1 + 5 * 4, 1 + 9 * 4 },
        { 0, 0, 1, 1, 7, 10, 7, 10, 3 + 0 * 4, 3 + 0 * 4, 3 + 1 * 4, 3 + 1 * 4, 1 + 4 * 4, 1 + 8 * 4, 1 + 4 * 4, 1 + 8 * 4 },
        { 0, 2, 0, 2, 7, 10, 7, 10, 3 + 0 * 4, 3 + 2 * 4, 3 + 0 * 4, 3 + 2 * 4, 1 + 4 * 4, 1 + 8 * 4, 1 + 4 * 4, 1 + 8 * 4 }
    };


    


    While I understand that this array plays a role in determining neighboring blocks for decoding, I am unclear about :

    


    The specific meaning of the array values.
How this array interacts with the decoding process, especially in relation to intra-prediction or block positioning.
Instead of a detailed explanation, I would greatly appreciate :

    


    Any keywords I can look up to understand this topic better (e.g., terms from the H.264 standard or FFmpeg documentation).
Links to related documentation, articles, or sections in the H.264 specification.
Suggestions on where I might find similar examples or detailed discussions about intra-block neighbor handling in FFmpeg.
Thank you for any resources or pointers you can provide !

    


  • avcodec/vp8 : Move codec-specific init code out of common init

    6 mars, par Andreas Rheinhardt
    avcodec/vp8 : Move codec-specific init code out of common init
    

    While just at it, also move the init functions inside
    the #if CONFIG_VP ?_DECODER (to avoid linking failures).
    While just at it, also declare these init functions
    as av_cold and uninline the remaining common init function.

    Reviewed-by : Peter Ross <pross@xvid.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/vp8.c
  • fftools/textformat : Introduce common header and deduplicate code

    28 avril, par softworkz
    fftools/textformat : Introduce common header and deduplicate code
    

    Also change writer_printf signature in AVTextWriter to use va_list,
    so that it can be called by the new function writer_printf()
    in tf_internal.h.

    Reviewed-by : Stefano Sabatini <stefasab@gmail.com>
    Signed-off-by : softworkz <softworkz@hotmail.com>

    • [DH] fftools/textformat/avtextwriters.h
    • [DH] fftools/textformat/tf_compact.c
    • [DH] fftools/textformat/tf_default.c
    • [DH] fftools/textformat/tf_flat.c
    • [DH] fftools/textformat/tf_ini.c
    • [DH] fftools/textformat/tf_internal.h
    • [DH] fftools/textformat/tf_json.c
    • [DH] fftools/textformat/tf_xml.c
    • [DH] fftools/textformat/tw_avio.c
    • [DH] fftools/textformat/tw_buffer.c
    • [DH] fftools/textformat/tw_stdout.c