Recherche avancée

Médias (91)

Autres articles (73)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (8855)

  • avio : Add an internal function for reading without copying

    1er août 2013, par Ben Avison
    avio : Add an internal function for reading without copying
    

    As long as there is enough contiguous data in the avio buffer,
    just return a pointer to it instead of copying it to the caller
    provided buffer.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/avio_internal.h
    • [DBH] libavformat/aviobuf.c
  • Overriding internal C functions in ffmpeg

    2 août 2013, par ronag

    I have a C++ application which uses ffmpeg.

    What I want to do is to replace the thread based filter execution with my own task-scheduler based execution.

    However, as soon as I try to call a function pointer in my "custom" function I get an access violation, even if the "custom" function is exactly the same as what is in ffmpeg.

    What could cause this ? Some kind of calling convention thing ?

    e.g.

    struct AVFilterInternal {
       int (*execute)(AVFilterContext *ctx, int (*func)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs), void *arg,
                      int *ret, int nb_jobs);
    };

    static int custom_execute(AVFilterContext *ctx, int (*func)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs), void *arg,
                              int *ret, int nb_jobs)
    {
       int i;

       for (i = 0; i &lt; nb_jobs; i++) { // MY goal is to have this as tbb::parallel_for
           int r = func(ctx, arg, i, nb_jobs); // Access Violation. If I replace "func" with an inline implementation everything works fine.
           if (ret)
               ret[i] = r;
       }
       return 0;
    }

    void init()
    {
        /* Create filter graph */

        // For each filter in filtergraph
        reinterpret_cast(filter->internal)->execute = custom_execute;
    }
  • avcodec/internal : Add () to argument of FF_SIGNBIT() to ensure correct order or opera...

    18 novembre 2014, par Michael Niedermayer
    avcodec/internal : Add () to argument of FF_SIGNBIT() to ensure correct order or operations
    

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

    • [DH] libavcodec/internal.h