Recherche avancée

Médias (91)

Autres articles (39)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • 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

Sur d’autres sites (3056)

  • avcodec/cfhddata : Avoid code tables

    3 septembre 2022, par Andreas Rheinhardt
    avcodec/cfhddata : Avoid code tables
    

    cfhddata.c initializes a RL VLC table via code tables and
    corresponding tables for length, run and level. code and length
    tables are used to initialize a VLC, no symbol table is used.
    Afterwards the symbols of said VLC are just the indices of
    the corresponding entries in the code and length table that
    were used for initialization ; they can therefore be used
    to get the matching level and run entry and they are not used
    for anything else. Therefore one can just permute these tables
    without changing the resulting RL VLC tables.

    This commit does just this. It permutes these tables so that
    the code tables are ordered from left to right in the resulting
    tree and then switches to ff_init_vlc_from_lengths(), which
    allows to remove the codes table altogether.

    Given that these tables are constructed on the stack, this
    also reduces stack usage, potentially fixing part of #9399.
    (The size of the tables on the stack decreases from 4752 to
    2640.)

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/cfhddata.c
  • Revision 88ba08818e : Fix bug in error handling that causes segfault See : https://code.google.com/p/c

    19 juin 2014, par Jim Bankoski

    Changed Paths :
     Modify /test/invalid_file_test.cc


     Modify /vp9/decoder/vp9_decodeframe.c


     Modify /vp9/decoder/vp9_decoder.c



    Fix bug in error handling that causes segfault

    See : https://code.google.com/p/chromium/issues/detail?id=362697

    The code properly catches an invalid stream but seg faults instead of
    returning an error due to a buffer not having been initialized. This
    code fixes that.

    Change-Id : I695595e742cb08807e1dfb2f00bc097b3eae3a9b

  • avutil/av_pix_fmt_swap_endianness : simplify and fix code

    7 mai 2013, par Michael Niedermayer
    avutil/av_pix_fmt_swap_endianness : simplify and fix code
    

    This makes the code also more robust, not having a hard-coded
    table that can become (and was) incomplete.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/pixdesc.c