Recherche avancée

Médias (91)

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • 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 (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (9398)

  • avcodec/mpeg4videoenc : Fix data race when using AC prediction

    14 juin, par Andreas Rheinhardt
    avcodec/mpeg4videoenc : Fix data race when using AC prediction
    

    The check for whether we can use the fast path to process
    AC coefficients used the qscale value belonging to a different
    slice ; this worked in practice, because the predicted AC values
    are zero in this case, so it does not matter whether we use
    the fast or the slow path.

    Fix this by checking for first_slice_line instead. This fixes all
    the races in the encoding part of the vsynth*-mpeg4-thread tests
    (and fixes them if no frame threading is in use for the decoding part).

    (The left prediction check may use data from a different slice, too,
    but said slice is always processed by the same thread, so that no race
    can happen. Given that out-of-slice AC values are zero, it does not
    matter whether we use the fast path or the slow path either.)

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

    • [DH] libavcodec/mpeg4videoenc.c
  • fftools/resources/resman : Don't alloc ResourceManager, fix race

    1er juin, par Andreas Rheinhardt
    fftools/resources/resman : Don't alloc ResourceManager, fix race
    

    The resman_ctx pointer was accessed outside of its guarding
    mutex.

    Also make the ResourceManager static.

    Reviewed-by : softworkz . <softworkz-at-hotmail.com@ffmpeg.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/resources/resman.c
  • lavc/vvc : Fix race condition for MVs cropped to subpic

    30 décembre 2024, par Frank Plowman
    lavc/vvc : Fix race condition for MVs cropped to subpic
    

    When the current subpicture has sps_subpic_treated_as_pic_flag equal to
    1, motion vectors are cropped such that they cannot point to other
    subpictures. This was accounted for in the prediction logic, but not
    in pred_get_y, which is used by the scheduling logic to determine which
    parts of the reference pictures must have been reconstructed before
    inter prediction of a subsequent frame may begin. Consequently, where a
    motion vector pointed to a location significantly above the current
    subpicture, there was the possibility of a race condition. Patch fixes
    this by cropping the motion vector to the current subpicture in
    pred_get_y.

    Signed-off-by : Frank Plowman <post@frankplowman.com>

    • [DH] libavcodec/vvc/ctu.c